@forge/cli-shared 2.3.0 → 2.3.1-next.2
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.
|
@@ -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';
|
|
@@ -1001,6 +1002,7 @@ export declare type BasicBoardFeatureView = Node & {
|
|
|
1001
1002
|
status?: Maybe<Scalars['String']>;
|
|
1002
1003
|
canEnable?: Maybe<Scalars['Boolean']>;
|
|
1003
1004
|
learnMoreLink?: Maybe<Scalars['String']>;
|
|
1005
|
+
learnMoreArticleId?: Maybe<Scalars['String']>;
|
|
1004
1006
|
imageUri?: Maybe<Scalars['String']>;
|
|
1005
1007
|
};
|
|
1006
1008
|
export declare enum BitbucketPermission {
|
|
@@ -2819,22 +2821,14 @@ export declare type ConfigurePolarisRefreshPayload = Payload & {
|
|
|
2819
2821
|
errors?: Maybe<Array<MutationError>>;
|
|
2820
2822
|
node?: Maybe<Scalars['Int']>;
|
|
2821
2823
|
};
|
|
2822
|
-
export declare type
|
|
2823
|
-
id: Scalars['ID'];
|
|
2824
|
-
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
2825
|
-
space?: Maybe<ConfluenceSpace>;
|
|
2826
|
-
status?: Maybe<ConfluenceContentStatus>;
|
|
2827
|
-
title?: Maybe<Scalars['String']>;
|
|
2828
|
-
type?: Maybe<ConfluenceContentType>;
|
|
2829
|
-
};
|
|
2830
|
-
export declare type ConfluenceBlogPost = ConfluenceAbstractPage & {
|
|
2824
|
+
export declare type ConfluenceBlogPost = {
|
|
2831
2825
|
__typename?: 'ConfluenceBlogPost';
|
|
2832
2826
|
blogPostId: Scalars['ID'];
|
|
2833
2827
|
id: Scalars['ID'];
|
|
2834
2828
|
links?: Maybe<ConfluenceBlogPostLinks>;
|
|
2835
2829
|
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
2836
2830
|
space?: Maybe<ConfluenceSpace>;
|
|
2837
|
-
status?: Maybe<
|
|
2831
|
+
status?: Maybe<ConfluenceBlogPostStatus>;
|
|
2838
2832
|
title?: Maybe<Scalars['String']>;
|
|
2839
2833
|
type?: Maybe<ConfluenceContentType>;
|
|
2840
2834
|
};
|
|
@@ -2843,20 +2837,34 @@ export declare type ConfluenceBlogPostLinks = {
|
|
|
2843
2837
|
base?: Maybe<Scalars['String']>;
|
|
2844
2838
|
webUi?: Maybe<Scalars['String']>;
|
|
2845
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
|
+
}
|
|
2846
2848
|
export declare type ConfluenceComment = {
|
|
2847
2849
|
__typename?: 'ConfluenceComment';
|
|
2848
2850
|
author?: Maybe<ConfluenceUserInfo>;
|
|
2849
2851
|
commentId?: Maybe<Scalars['ID']>;
|
|
2850
|
-
container?: Maybe<
|
|
2852
|
+
container?: Maybe<ConfluenceCommentContainer>;
|
|
2851
2853
|
id: Scalars['ID'];
|
|
2852
2854
|
links?: Maybe<ConfluenceCommentLinks>;
|
|
2853
2855
|
name?: Maybe<Scalars['String']>;
|
|
2856
|
+
status?: Maybe<ConfluenceCommentStatus>;
|
|
2854
2857
|
};
|
|
2858
|
+
export declare type ConfluenceCommentContainer = ConfluenceBlogPost | ConfluencePage;
|
|
2855
2859
|
export declare type ConfluenceCommentLinks = {
|
|
2856
2860
|
__typename?: 'ConfluenceCommentLinks';
|
|
2857
2861
|
base?: Maybe<Scalars['String']>;
|
|
2858
2862
|
webUi?: Maybe<Scalars['String']>;
|
|
2859
2863
|
};
|
|
2864
|
+
export declare enum ConfluenceCommentStatus {
|
|
2865
|
+
Current = "CURRENT",
|
|
2866
|
+
Draft = "DRAFT"
|
|
2867
|
+
}
|
|
2860
2868
|
export declare type ConfluenceContentBody = {
|
|
2861
2869
|
__typename?: 'ConfluenceContentBody';
|
|
2862
2870
|
adf?: Maybe<Scalars['String']>;
|
|
@@ -2888,14 +2896,6 @@ export declare enum ConfluenceContentRepresentation {
|
|
|
2888
2896
|
View = "VIEW",
|
|
2889
2897
|
Wiki = "WIKI"
|
|
2890
2898
|
}
|
|
2891
|
-
export declare enum ConfluenceContentStatus {
|
|
2892
|
-
Archived = "ARCHIVED",
|
|
2893
|
-
Current = "CURRENT",
|
|
2894
|
-
Deleted = "DELETED",
|
|
2895
|
-
Draft = "DRAFT",
|
|
2896
|
-
Historical = "HISTORICAL",
|
|
2897
|
-
Trashed = "TRASHED"
|
|
2898
|
-
}
|
|
2899
2899
|
export declare type ConfluenceContentTitleEmoji = {
|
|
2900
2900
|
__typename?: 'ConfluenceContentTitleEmoji';
|
|
2901
2901
|
id?: Maybe<Scalars['String']>;
|
|
@@ -2910,7 +2910,7 @@ export declare enum ConfluenceContentType {
|
|
|
2910
2910
|
}
|
|
2911
2911
|
export declare type ConfluenceCreateBlogPostInput = {
|
|
2912
2912
|
body?: Maybe<ConfluenceContentBodyInput>;
|
|
2913
|
-
|
|
2913
|
+
spaceId: Scalars['ID'];
|
|
2914
2914
|
status?: Maybe<ConfluenceMutationContentStatus>;
|
|
2915
2915
|
title?: Maybe<Scalars['String']>;
|
|
2916
2916
|
};
|
|
@@ -2922,7 +2922,7 @@ export declare type ConfluenceCreateBlogPostPayload = Payload & {
|
|
|
2922
2922
|
};
|
|
2923
2923
|
export declare type ConfluenceCreatePageInput = {
|
|
2924
2924
|
body?: Maybe<ConfluenceContentBodyInput>;
|
|
2925
|
-
|
|
2925
|
+
spaceId: Scalars['ID'];
|
|
2926
2926
|
status?: Maybe<ConfluenceMutationContentStatus>;
|
|
2927
2927
|
title?: Maybe<Scalars['String']>;
|
|
2928
2928
|
};
|
|
@@ -2954,21 +2954,19 @@ export declare type ConfluenceCreateUserPropertyPayload = Payload & {
|
|
|
2954
2954
|
errors?: Maybe<Array<MutationError>>;
|
|
2955
2955
|
success: Scalars['Boolean'];
|
|
2956
2956
|
};
|
|
2957
|
-
export declare type
|
|
2957
|
+
export declare type ConfluenceDeleteDraftBlogPostInput = {
|
|
2958
2958
|
id: Scalars['ID'];
|
|
2959
|
-
status: ConfluenceMutationContentStatus;
|
|
2960
2959
|
};
|
|
2961
|
-
export declare type
|
|
2962
|
-
__typename?: '
|
|
2960
|
+
export declare type ConfluenceDeleteDraftBlogPostPayload = Payload & {
|
|
2961
|
+
__typename?: 'ConfluenceDeleteDraftBlogPostPayload';
|
|
2963
2962
|
errors?: Maybe<Array<MutationError>>;
|
|
2964
2963
|
success: Scalars['Boolean'];
|
|
2965
2964
|
};
|
|
2966
|
-
export declare type
|
|
2965
|
+
export declare type ConfluenceDeleteDraftPageInput = {
|
|
2967
2966
|
id: Scalars['ID'];
|
|
2968
|
-
status: ConfluenceMutationContentStatus;
|
|
2969
2967
|
};
|
|
2970
|
-
export declare type
|
|
2971
|
-
__typename?: '
|
|
2968
|
+
export declare type ConfluenceDeleteDraftPagePayload = Payload & {
|
|
2969
|
+
__typename?: 'ConfluenceDeleteDraftPagePayload';
|
|
2972
2970
|
errors?: Maybe<Array<MutationError>>;
|
|
2973
2971
|
success: Scalars['Boolean'];
|
|
2974
2972
|
};
|
|
@@ -3011,12 +3009,14 @@ export declare type ConfluenceMutationApi = {
|
|
|
3011
3009
|
confluenceCreateBlogPost?: Maybe<ConfluenceCreateBlogPostPayload>;
|
|
3012
3010
|
confluenceCreatePage?: Maybe<ConfluenceCreatePagePayload>;
|
|
3013
3011
|
confluenceCreateSpace?: Maybe<ConfluenceCreateSpacePayload>;
|
|
3014
|
-
|
|
3015
|
-
|
|
3012
|
+
confluenceDeleteDraftBlogPost?: Maybe<ConfluenceDeleteDraftBlogPostPayload>;
|
|
3013
|
+
confluenceDeleteDraftPage?: Maybe<ConfluenceDeleteDraftPagePayload>;
|
|
3016
3014
|
confluencePublishBlogPost?: Maybe<ConfluencePublishBlogPostPayload>;
|
|
3017
3015
|
confluencePublishPage?: Maybe<ConfluencePublishPagePayload>;
|
|
3018
3016
|
confluencePurgeBlogPost?: Maybe<ConfluencePurgeBlogPostPayload>;
|
|
3019
3017
|
confluencePurgePage?: Maybe<ConfluencePurgePagePayload>;
|
|
3018
|
+
confluenceTrashBlogPost?: Maybe<ConfluenceTrashBlogPostPayload>;
|
|
3019
|
+
confluenceTrashPage?: Maybe<ConfluenceTrashPagePayload>;
|
|
3020
3020
|
confluenceUpdateCurrentBlogPost?: Maybe<ConfluenceUpdateCurrentBlogPostPayload>;
|
|
3021
3021
|
confluenceUpdateCurrentPage?: Maybe<ConfluenceUpdateCurrentPagePayload>;
|
|
3022
3022
|
confluenceUpdateDraftBlogPost?: Maybe<ConfluenceUpdateDraftBlogPostPayload>;
|
|
@@ -3027,59 +3027,54 @@ export declare type ConfluenceMutationApi = {
|
|
|
3027
3027
|
confluenceDeleteUserProperty?: Maybe<ConfluenceDeleteUserPropertyPayload>;
|
|
3028
3028
|
};
|
|
3029
3029
|
export declare type ConfluenceMutationApiConfluenceCreateBlogPostArgs = {
|
|
3030
|
-
blogPostInput: ConfluenceCreateBlogPostInput;
|
|
3031
3030
|
cloudId: Scalars['ID'];
|
|
3031
|
+
input: ConfluenceCreateBlogPostInput;
|
|
3032
3032
|
};
|
|
3033
3033
|
export declare type ConfluenceMutationApiConfluenceCreatePageArgs = {
|
|
3034
3034
|
cloudId: Scalars['ID'];
|
|
3035
|
-
|
|
3035
|
+
input: ConfluenceCreatePageInput;
|
|
3036
3036
|
};
|
|
3037
3037
|
export declare type ConfluenceMutationApiConfluenceCreateSpaceArgs = {
|
|
3038
3038
|
cloudId: Scalars['ID'];
|
|
3039
3039
|
input: ConfluenceCreateSpaceInput;
|
|
3040
3040
|
};
|
|
3041
|
-
export declare type
|
|
3042
|
-
|
|
3043
|
-
deletBlogPostInput: ConfluenceDeleteBlogPostInput;
|
|
3041
|
+
export declare type ConfluenceMutationApiConfluenceDeleteDraftBlogPostArgs = {
|
|
3042
|
+
input: ConfluenceDeleteDraftBlogPostInput;
|
|
3044
3043
|
};
|
|
3045
|
-
export declare type
|
|
3046
|
-
|
|
3047
|
-
deletPageInput: ConfluenceDeletePageInput;
|
|
3044
|
+
export declare type ConfluenceMutationApiConfluenceDeleteDraftPageArgs = {
|
|
3045
|
+
input: ConfluenceDeleteDraftPageInput;
|
|
3048
3046
|
};
|
|
3049
3047
|
export declare type ConfluenceMutationApiConfluencePublishBlogPostArgs = {
|
|
3050
|
-
|
|
3051
|
-
publishBlogPostInput: ConfluencePublishBlogPostInput;
|
|
3048
|
+
input: ConfluencePublishBlogPostInput;
|
|
3052
3049
|
};
|
|
3053
3050
|
export declare type ConfluenceMutationApiConfluencePublishPageArgs = {
|
|
3054
|
-
|
|
3055
|
-
publishPageInput: ConfluencePublishPageInput;
|
|
3051
|
+
input: ConfluencePublishPageInput;
|
|
3056
3052
|
};
|
|
3057
3053
|
export declare type ConfluenceMutationApiConfluencePurgeBlogPostArgs = {
|
|
3058
|
-
|
|
3059
|
-
purgeBlogPostInput: ConfluencePurgeBlogPostInput;
|
|
3054
|
+
input: ConfluencePurgeBlogPostInput;
|
|
3060
3055
|
};
|
|
3061
3056
|
export declare type ConfluenceMutationApiConfluencePurgePageArgs = {
|
|
3062
|
-
|
|
3063
|
-
|
|
3057
|
+
input: ConfluencePurgePageInput;
|
|
3058
|
+
};
|
|
3059
|
+
export declare type ConfluenceMutationApiConfluenceTrashBlogPostArgs = {
|
|
3060
|
+
input: ConfluenceTrashBlogPostInput;
|
|
3061
|
+
};
|
|
3062
|
+
export declare type ConfluenceMutationApiConfluenceTrashPageArgs = {
|
|
3063
|
+
input: ConfluenceTrashPageInput;
|
|
3064
3064
|
};
|
|
3065
3065
|
export declare type ConfluenceMutationApiConfluenceUpdateCurrentBlogPostArgs = {
|
|
3066
|
-
|
|
3067
|
-
updateBlogPostInput: ConfluenceUpdateCurrentBlogPostInput;
|
|
3066
|
+
input: ConfluenceUpdateCurrentBlogPostInput;
|
|
3068
3067
|
};
|
|
3069
3068
|
export declare type ConfluenceMutationApiConfluenceUpdateCurrentPageArgs = {
|
|
3070
|
-
|
|
3071
|
-
updatePageInput: ConfluenceUpdateCurrentPageInput;
|
|
3069
|
+
input: ConfluenceUpdateCurrentPageInput;
|
|
3072
3070
|
};
|
|
3073
3071
|
export declare type ConfluenceMutationApiConfluenceUpdateDraftBlogPostArgs = {
|
|
3074
|
-
|
|
3075
|
-
updateBlogPostInput: ConfluenceUpdateDraftBlogPostInput;
|
|
3072
|
+
input: ConfluenceUpdateDraftBlogPostInput;
|
|
3076
3073
|
};
|
|
3077
3074
|
export declare type ConfluenceMutationApiConfluenceUpdateDraftPageArgs = {
|
|
3078
|
-
|
|
3079
|
-
updatePageInput: ConfluenceUpdateDraftPageInput;
|
|
3075
|
+
input: ConfluenceUpdateDraftPageInput;
|
|
3080
3076
|
};
|
|
3081
3077
|
export declare type ConfluenceMutationApiConfluenceUpdateSpaceArgs = {
|
|
3082
|
-
cloudId: Scalars['ID'];
|
|
3083
3078
|
input: ConfluenceUpdateSpaceInput;
|
|
3084
3079
|
};
|
|
3085
3080
|
export declare type ConfluenceMutationApiConfluenceCreateUserPropertyArgs = {
|
|
@@ -3127,14 +3122,14 @@ export declare enum ConfluenceOperationTarget {
|
|
|
3127
3122
|
Space = "SPACE",
|
|
3128
3123
|
UserProfile = "USER_PROFILE"
|
|
3129
3124
|
}
|
|
3130
|
-
export declare type ConfluencePage =
|
|
3125
|
+
export declare type ConfluencePage = {
|
|
3131
3126
|
__typename?: 'ConfluencePage';
|
|
3132
3127
|
id: Scalars['ID'];
|
|
3133
3128
|
links?: Maybe<ConfluencePageLinks>;
|
|
3134
3129
|
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
3135
3130
|
pageId: Scalars['ID'];
|
|
3136
3131
|
space?: Maybe<ConfluenceSpace>;
|
|
3137
|
-
status?: Maybe<
|
|
3132
|
+
status?: Maybe<ConfluencePageStatus>;
|
|
3138
3133
|
title?: Maybe<Scalars['String']>;
|
|
3139
3134
|
type?: Maybe<ConfluenceContentType>;
|
|
3140
3135
|
};
|
|
@@ -3143,8 +3138,16 @@ export declare type ConfluencePageLinks = {
|
|
|
3143
3138
|
base?: Maybe<Scalars['String']>;
|
|
3144
3139
|
webUi?: Maybe<Scalars['String']>;
|
|
3145
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
|
+
}
|
|
3146
3149
|
export declare type ConfluencePublishBlogPostInput = {
|
|
3147
|
-
id: Scalars['
|
|
3150
|
+
id: Scalars['ID'];
|
|
3148
3151
|
publishTitle?: Maybe<Scalars['String']>;
|
|
3149
3152
|
};
|
|
3150
3153
|
export declare type ConfluencePublishBlogPostPayload = Payload & {
|
|
@@ -3154,7 +3157,7 @@ export declare type ConfluencePublishBlogPostPayload = Payload & {
|
|
|
3154
3157
|
success: Scalars['Boolean'];
|
|
3155
3158
|
};
|
|
3156
3159
|
export declare type ConfluencePublishPageInput = {
|
|
3157
|
-
id: Scalars['
|
|
3160
|
+
id: Scalars['ID'];
|
|
3158
3161
|
publishTitle?: Maybe<Scalars['String']>;
|
|
3159
3162
|
};
|
|
3160
3163
|
export declare type ConfluencePublishPagePayload = Payload & {
|
|
@@ -3228,9 +3231,10 @@ export declare type ConfluenceQueryApiConfluenceUserPropertiesArgs = {
|
|
|
3228
3231
|
};
|
|
3229
3232
|
export declare type ConfluenceSpace = {
|
|
3230
3233
|
__typename?: 'ConfluenceSpace';
|
|
3234
|
+
createdBy?: Maybe<ConfluenceUserInfo>;
|
|
3235
|
+
createdDate?: Maybe<Scalars['String']>;
|
|
3231
3236
|
description?: Maybe<ConfluenceSpaceDescription>;
|
|
3232
|
-
|
|
3233
|
-
homepage?: Maybe<ConfluenceAbstractPage>;
|
|
3237
|
+
homepage?: Maybe<ConfluencePage>;
|
|
3234
3238
|
icon?: Maybe<ConfluenceSpaceIcon>;
|
|
3235
3239
|
id: Scalars['ID'];
|
|
3236
3240
|
key?: Maybe<Scalars['String']>;
|
|
@@ -3247,11 +3251,6 @@ export declare type ConfluenceSpaceDescription = {
|
|
|
3247
3251
|
plain?: Maybe<Scalars['String']>;
|
|
3248
3252
|
view?: Maybe<Scalars['String']>;
|
|
3249
3253
|
};
|
|
3250
|
-
export declare type ConfluenceSpaceHistory = {
|
|
3251
|
-
__typename?: 'ConfluenceSpaceHistory';
|
|
3252
|
-
createdBy?: Maybe<ConfluenceUserInfo>;
|
|
3253
|
-
createdDate?: Maybe<Scalars['String']>;
|
|
3254
|
-
};
|
|
3255
3254
|
export declare type ConfluenceSpaceIcon = {
|
|
3256
3255
|
__typename?: 'ConfluenceSpaceIcon';
|
|
3257
3256
|
height?: Maybe<Scalars['Int']>;
|
|
@@ -3281,6 +3280,22 @@ export declare enum ConfluenceSpaceType {
|
|
|
3281
3280
|
Global = "GLOBAL",
|
|
3282
3281
|
Personal = "PERSONAL"
|
|
3283
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
|
+
};
|
|
3284
3299
|
export declare type ConfluenceUpdateCurrentBlogPostInput = {
|
|
3285
3300
|
body?: Maybe<ConfluenceContentBodyInput>;
|
|
3286
3301
|
id: Scalars['ID'];
|
|
@@ -5224,6 +5239,9 @@ export declare type DevOpsToolsToolsArgs = {
|
|
|
5224
5239
|
cloudId: Scalars['ID'];
|
|
5225
5240
|
first?: Maybe<Scalars['Int']>;
|
|
5226
5241
|
after?: Maybe<Scalars['String']>;
|
|
5242
|
+
recommended?: Maybe<Scalars['Boolean']>;
|
|
5243
|
+
categoryId?: Maybe<Scalars['String']>;
|
|
5244
|
+
supportsContainers?: Maybe<Scalars['Boolean']>;
|
|
5227
5245
|
};
|
|
5228
5246
|
export declare type DevOpsToolsToolArgs = {
|
|
5229
5247
|
id: Scalars['ID'];
|
|
@@ -5345,6 +5363,7 @@ export declare type EstimationBoardFeatureView = Node & {
|
|
|
5345
5363
|
status?: Maybe<Scalars['String']>;
|
|
5346
5364
|
canEnable?: Maybe<Scalars['Boolean']>;
|
|
5347
5365
|
learnMoreLink?: Maybe<Scalars['String']>;
|
|
5366
|
+
learnMoreArticleId?: Maybe<Scalars['String']>;
|
|
5348
5367
|
imageUri?: Maybe<Scalars['String']>;
|
|
5349
5368
|
permissibleEstimationTypes?: Maybe<Array<Maybe<PermissibleEstimationType>>>;
|
|
5350
5369
|
selectedEstimationType?: Maybe<PermissibleEstimationType>;
|
|
@@ -5616,6 +5635,134 @@ export declare enum GrantCheckProduct {
|
|
|
5616
5635
|
Compass = "COMPASS",
|
|
5617
5636
|
NoGrantChecks = "NO_GRANT_CHECKS"
|
|
5618
5637
|
}
|
|
5638
|
+
export declare type HelpCenter = {
|
|
5639
|
+
__typename?: 'HelpCenter';
|
|
5640
|
+
helpCenterId: Scalars['ID'];
|
|
5641
|
+
collections?: Maybe<Array<HelpCenterCollection>>;
|
|
5642
|
+
};
|
|
5643
|
+
export declare type HelpCenterBulkCreateCollectionsInput = {
|
|
5644
|
+
helpCenterCreateCollectionInputItem: Array<HelpCenterCreateCollectionInput>;
|
|
5645
|
+
};
|
|
5646
|
+
export declare type HelpCenterBulkDeleteCollectionInput = {
|
|
5647
|
+
helpCenterCollectionDeleteInput: Array<HelpCenterCollectionDeleteInput>;
|
|
5648
|
+
};
|
|
5649
|
+
export declare type HelpCenterBulkUpdateCollectionInput = {
|
|
5650
|
+
helpCenterUpdateCollectionInputItem: Array<HelpCenterUpdateCollectionInput>;
|
|
5651
|
+
};
|
|
5652
|
+
export declare type HelpCenterCollection = {
|
|
5653
|
+
__typename?: 'HelpCenterCollection';
|
|
5654
|
+
collectionId: Scalars['ID'];
|
|
5655
|
+
items?: Maybe<HelpCenterCollectionItemConnection>;
|
|
5656
|
+
name: Scalars['String'];
|
|
5657
|
+
description?: Maybe<Scalars['String']>;
|
|
5658
|
+
properties?: Maybe<Scalars['JSON']>;
|
|
5659
|
+
};
|
|
5660
|
+
export declare type HelpCenterCollectionItemsArgs = {
|
|
5661
|
+
first?: Maybe<Scalars['Int']>;
|
|
5662
|
+
after?: Maybe<Scalars['String']>;
|
|
5663
|
+
last?: Maybe<Scalars['Int']>;
|
|
5664
|
+
before?: Maybe<Scalars['String']>;
|
|
5665
|
+
};
|
|
5666
|
+
export declare type HelpCenterCollectionDeleteInput = {
|
|
5667
|
+
helpCenterId: Scalars['ID'];
|
|
5668
|
+
collectionId: Scalars['ID'];
|
|
5669
|
+
};
|
|
5670
|
+
export declare type HelpCenterCollectionItem = {
|
|
5671
|
+
__typename?: 'HelpCenterCollectionItem';
|
|
5672
|
+
ari: Scalars['ID'];
|
|
5673
|
+
};
|
|
5674
|
+
export declare type HelpCenterCollectionItemConnection = {
|
|
5675
|
+
__typename?: 'HelpCenterCollectionItemConnection';
|
|
5676
|
+
edges?: Maybe<Array<Maybe<HelpCenterCollectionItemEdge>>>;
|
|
5677
|
+
nodes?: Maybe<Array<Maybe<HelpCenterCollectionItem>>>;
|
|
5678
|
+
pageInfo: PageInfo;
|
|
5679
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
5680
|
+
};
|
|
5681
|
+
export declare type HelpCenterCollectionItemEdge = {
|
|
5682
|
+
__typename?: 'HelpCenterCollectionItemEdge';
|
|
5683
|
+
cursor: Scalars['String'];
|
|
5684
|
+
node?: Maybe<HelpCenterCollectionItem>;
|
|
5685
|
+
};
|
|
5686
|
+
export declare type HelpCenterCollectionItemInput = {
|
|
5687
|
+
ari: Scalars['ID'];
|
|
5688
|
+
};
|
|
5689
|
+
export declare type HelpCenterCollectionResult = HelpCenterCollection | HelpCenterQueryErrors;
|
|
5690
|
+
export declare type HelpCenterCreateCollectionInput = {
|
|
5691
|
+
helpCenterId: Scalars['ID'];
|
|
5692
|
+
items: Array<HelpCenterCollectionItemInput>;
|
|
5693
|
+
name: Scalars['String'];
|
|
5694
|
+
description?: Maybe<Scalars['String']>;
|
|
5695
|
+
properties?: Maybe<Scalars['JSON']>;
|
|
5696
|
+
};
|
|
5697
|
+
export declare type HelpCenterCreateCollectionPayload = Payload & {
|
|
5698
|
+
__typename?: 'HelpCenterCreateCollectionPayload';
|
|
5699
|
+
success: Scalars['Boolean'];
|
|
5700
|
+
errors?: Maybe<Array<MutationError>>;
|
|
5701
|
+
successfullyCreatedCollectionIds: Array<Maybe<HelpCenterSuccessfullyCreatedCollectionIds>>;
|
|
5702
|
+
};
|
|
5703
|
+
export declare type HelpCenterDeleteUpdateCollectionPayload = Payload & {
|
|
5704
|
+
__typename?: 'HelpCenterDeleteUpdateCollectionPayload';
|
|
5705
|
+
success: Scalars['Boolean'];
|
|
5706
|
+
errors?: Maybe<Array<MutationError>>;
|
|
5707
|
+
};
|
|
5708
|
+
export declare type HelpCenterMutationApi = {
|
|
5709
|
+
__typename?: 'HelpCenterMutationApi';
|
|
5710
|
+
createCollection: HelpCenterCreateCollectionPayload;
|
|
5711
|
+
updateCollection: HelpCenterDeleteUpdateCollectionPayload;
|
|
5712
|
+
updateCollectionsOrder: HelpCenterUpdateCollectionsOrderPayload;
|
|
5713
|
+
deleteCollection: HelpCenterDeleteUpdateCollectionPayload;
|
|
5714
|
+
};
|
|
5715
|
+
export declare type HelpCenterMutationApiCreateCollectionArgs = {
|
|
5716
|
+
input: HelpCenterBulkCreateCollectionsInput;
|
|
5717
|
+
};
|
|
5718
|
+
export declare type HelpCenterMutationApiUpdateCollectionArgs = {
|
|
5719
|
+
input: HelpCenterBulkUpdateCollectionInput;
|
|
5720
|
+
};
|
|
5721
|
+
export declare type HelpCenterMutationApiUpdateCollectionsOrderArgs = {
|
|
5722
|
+
input: HelpCenterUpdateCollectionsOrderInput;
|
|
5723
|
+
};
|
|
5724
|
+
export declare type HelpCenterMutationApiDeleteCollectionArgs = {
|
|
5725
|
+
input: HelpCenterBulkDeleteCollectionInput;
|
|
5726
|
+
};
|
|
5727
|
+
export declare type HelpCenterQueryApi = {
|
|
5728
|
+
__typename?: 'HelpCenterQueryApi';
|
|
5729
|
+
helpCenter: HelpCenterQueryResult;
|
|
5730
|
+
helpCenterCollection: HelpCenterCollectionResult;
|
|
5731
|
+
};
|
|
5732
|
+
export declare type HelpCenterQueryApiHelpCenterArgs = {
|
|
5733
|
+
helpCenterId: Scalars['ID'];
|
|
5734
|
+
};
|
|
5735
|
+
export declare type HelpCenterQueryApiHelpCenterCollectionArgs = {
|
|
5736
|
+
helpCenterId: Scalars['ID'];
|
|
5737
|
+
collectionId: Scalars['ID'];
|
|
5738
|
+
};
|
|
5739
|
+
export declare type HelpCenterQueryErrors = {
|
|
5740
|
+
__typename?: 'HelpCenterQueryErrors';
|
|
5741
|
+
errors?: Maybe<Array<QueryError>>;
|
|
5742
|
+
};
|
|
5743
|
+
export declare type HelpCenterQueryResult = HelpCenter | HelpCenterQueryErrors;
|
|
5744
|
+
export declare type HelpCenterSuccessfullyCreatedCollectionIds = {
|
|
5745
|
+
__typename?: 'HelpCenterSuccessfullyCreatedCollectionIds';
|
|
5746
|
+
helpCenterId: Scalars['ID'];
|
|
5747
|
+
collectionIds: Scalars['ID'];
|
|
5748
|
+
};
|
|
5749
|
+
export declare type HelpCenterUpdateCollectionInput = {
|
|
5750
|
+
helpCenterId: Scalars['ID'];
|
|
5751
|
+
collectionId: Scalars['ID'];
|
|
5752
|
+
items: Array<HelpCenterCollectionItemInput>;
|
|
5753
|
+
name: Scalars['String'];
|
|
5754
|
+
description?: Maybe<Scalars['String']>;
|
|
5755
|
+
properties?: Maybe<Scalars['JSON']>;
|
|
5756
|
+
};
|
|
5757
|
+
export declare type HelpCenterUpdateCollectionsOrderInput = {
|
|
5758
|
+
helpCenterId: Scalars['ID'];
|
|
5759
|
+
collectionIds: Array<Scalars['ID']>;
|
|
5760
|
+
};
|
|
5761
|
+
export declare type HelpCenterUpdateCollectionsOrderPayload = Payload & {
|
|
5762
|
+
__typename?: 'HelpCenterUpdateCollectionsOrderPayload';
|
|
5763
|
+
success: Scalars['Boolean'];
|
|
5764
|
+
errors?: Maybe<Array<MutationError>>;
|
|
5765
|
+
};
|
|
5619
5766
|
export declare type HostedResourcePreSignedUrl = {
|
|
5620
5767
|
__typename?: 'HostedResourcePreSignedUrl';
|
|
5621
5768
|
uploadUrl: Scalars['String'];
|
|
@@ -6543,6 +6690,7 @@ export declare type JiraColorField = Node & JiraIssueField & JiraIssueFieldConfi
|
|
|
6543
6690
|
};
|
|
6544
6691
|
export declare type JiraComment = {
|
|
6545
6692
|
commentId: Scalars['ID'];
|
|
6693
|
+
issue?: Maybe<JiraIssue>;
|
|
6546
6694
|
webUrl?: Maybe<Scalars['URL']>;
|
|
6547
6695
|
author?: Maybe<User>;
|
|
6548
6696
|
updateAuthor?: Maybe<User>;
|
|
@@ -6551,6 +6699,10 @@ export declare type JiraComment = {
|
|
|
6551
6699
|
updated?: Maybe<Scalars['DateTime']>;
|
|
6552
6700
|
permissionLevel?: Maybe<JiraPermissionLevel>;
|
|
6553
6701
|
};
|
|
6702
|
+
export declare type JiraCommentByIdInput = {
|
|
6703
|
+
issueId: Scalars['ID'];
|
|
6704
|
+
id: Scalars['ID'];
|
|
6705
|
+
};
|
|
6554
6706
|
export declare type JiraCommentConnection = {
|
|
6555
6707
|
__typename?: 'JiraCommentConnection';
|
|
6556
6708
|
indicativeCount?: Maybe<Scalars['Int']>;
|
|
@@ -6748,6 +6900,8 @@ export declare type JiraDevOpsCommitDetails = {
|
|
|
6748
6900
|
name?: Maybe<Scalars['String']>;
|
|
6749
6901
|
created?: Maybe<Scalars['DateTime']>;
|
|
6750
6902
|
author?: Maybe<JiraDevOpsEntityAuthor>;
|
|
6903
|
+
isMergeCommit?: Maybe<Scalars['Boolean']>;
|
|
6904
|
+
scmRepository?: Maybe<JiraScmRepository>;
|
|
6751
6905
|
};
|
|
6752
6906
|
export declare type JiraDevOpsEntityAuthor = {
|
|
6753
6907
|
__typename?: 'JiraDevOpsEntityAuthor';
|
|
@@ -8832,6 +8986,7 @@ export declare type JiraPlatformComment = JiraComment & Node & {
|
|
|
8832
8986
|
__typename?: 'JiraPlatformComment';
|
|
8833
8987
|
id: Scalars['ID'];
|
|
8834
8988
|
commentId: Scalars['ID'];
|
|
8989
|
+
issue?: Maybe<JiraIssue>;
|
|
8835
8990
|
webUrl?: Maybe<Scalars['URL']>;
|
|
8836
8991
|
author?: Maybe<User>;
|
|
8837
8992
|
updateAuthor?: Maybe<User>;
|
|
@@ -9175,8 +9330,10 @@ export declare type JiraQuery = {
|
|
|
9175
9330
|
issueSearchStable?: Maybe<JiraIssueConnection>;
|
|
9176
9331
|
issueByKey?: Maybe<JiraIssue>;
|
|
9177
9332
|
issueById?: Maybe<JiraIssue>;
|
|
9333
|
+
issuesById?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
9178
9334
|
screenIdByIssueId?: Maybe<Scalars['Long']>;
|
|
9179
9335
|
screenIdByIssueKey?: Maybe<Scalars['Long']>;
|
|
9336
|
+
commentsById?: Maybe<Array<Maybe<JiraComment>>>;
|
|
9180
9337
|
epicLinkFieldKey?: Maybe<Scalars['String']>;
|
|
9181
9338
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
9182
9339
|
filter?: Maybe<JiraFilter>;
|
|
@@ -9252,12 +9409,18 @@ export declare type JiraQueryIssueByKeyArgs = {
|
|
|
9252
9409
|
export declare type JiraQueryIssueByIdArgs = {
|
|
9253
9410
|
id: Scalars['ID'];
|
|
9254
9411
|
};
|
|
9412
|
+
export declare type JiraQueryIssuesByIdArgs = {
|
|
9413
|
+
ids: Array<Scalars['ID']>;
|
|
9414
|
+
};
|
|
9255
9415
|
export declare type JiraQueryScreenIdByIssueIdArgs = {
|
|
9256
9416
|
issueId: Scalars['ID'];
|
|
9257
9417
|
};
|
|
9258
9418
|
export declare type JiraQueryScreenIdByIssueKeyArgs = {
|
|
9259
9419
|
issueKey: Scalars['String'];
|
|
9260
9420
|
};
|
|
9421
|
+
export declare type JiraQueryCommentsByIdArgs = {
|
|
9422
|
+
input: Array<JiraCommentByIdInput>;
|
|
9423
|
+
};
|
|
9261
9424
|
export declare type JiraQueryApplicationPropertiesByKeyArgs = {
|
|
9262
9425
|
cloudId: Scalars['ID'];
|
|
9263
9426
|
keys: Array<Scalars['String']>;
|
|
@@ -9568,6 +9731,11 @@ export declare type JiraRoleEdge = {
|
|
|
9568
9731
|
node?: Maybe<JiraRole>;
|
|
9569
9732
|
cursor: Scalars['String'];
|
|
9570
9733
|
};
|
|
9734
|
+
export declare type JiraScmRepository = {
|
|
9735
|
+
__typename?: 'JiraScmRepository';
|
|
9736
|
+
name?: Maybe<Scalars['String']>;
|
|
9737
|
+
entityUrl?: Maybe<Scalars['URL']>;
|
|
9738
|
+
};
|
|
9571
9739
|
export declare type JiraSecurityLevel = Node & {
|
|
9572
9740
|
__typename?: 'JiraSecurityLevel';
|
|
9573
9741
|
id: Scalars['ID'];
|
|
@@ -9738,6 +9906,7 @@ export declare type JiraServiceManagementComment = JiraComment & Node & {
|
|
|
9738
9906
|
__typename?: 'JiraServiceManagementComment';
|
|
9739
9907
|
id: Scalars['ID'];
|
|
9740
9908
|
commentId: Scalars['ID'];
|
|
9909
|
+
issue?: Maybe<JiraIssue>;
|
|
9741
9910
|
webUrl?: Maybe<Scalars['URL']>;
|
|
9742
9911
|
author?: Maybe<User>;
|
|
9743
9912
|
updateAuthor?: Maybe<User>;
|
|
@@ -11223,6 +11392,7 @@ export declare type Mutation = {
|
|
|
11223
11392
|
setAppEnvironmentVariable?: Maybe<SetAppEnvironmentVariablePayload>;
|
|
11224
11393
|
deleteAppEnvironmentVariable?: Maybe<DeleteAppEnvironmentVariablePayload>;
|
|
11225
11394
|
createAppDeployment?: Maybe<CreateAppDeploymentResponse>;
|
|
11395
|
+
helpCenter?: Maybe<HelpCenterMutationApi>;
|
|
11226
11396
|
compass?: Maybe<CompassCatalogMutationApi>;
|
|
11227
11397
|
deleteConfluenceSpaceRelationshipsForJiraProject?: Maybe<JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload>;
|
|
11228
11398
|
};
|
|
@@ -12968,6 +13138,7 @@ export declare type Query = {
|
|
|
12968
13138
|
marketplaceUser?: Maybe<MarketplaceUser>;
|
|
12969
13139
|
jiraOAuthApps?: Maybe<JiraOAuthAppsApps>;
|
|
12970
13140
|
appDeployment?: Maybe<AppDeployment>;
|
|
13141
|
+
helpCenter?: Maybe<HelpCenterQueryApi>;
|
|
12971
13142
|
compass?: Maybe<CompassCatalogQueryApi>;
|
|
12972
13143
|
extensionsEcho?: Maybe<Scalars['String']>;
|
|
12973
13144
|
extensionContexts?: Maybe<Array<ExtensionContext>>;
|
|
@@ -13296,7 +13467,11 @@ export declare type RankingDiffPayload = {
|
|
|
13296
13467
|
};
|
|
13297
13468
|
export declare enum RateLimitingCurrency {
|
|
13298
13469
|
TestingService = "TESTING_SERVICE",
|
|
13470
|
+
DevopsContainerRelationshipsReadCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_READ_CURRENCY",
|
|
13471
|
+
DevopsContainerRelationshipsWriteCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_WRITE_CURRENCY",
|
|
13299
13472
|
ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
|
|
13473
|
+
DevopsServiceReadCurrency = "DEVOPS_SERVICE_READ_CURRENCY",
|
|
13474
|
+
DevopsServiceWriteCurrency = "DEVOPS_SERVICE_WRITE_CURRENCY",
|
|
13300
13475
|
TeamsCurrency = "TEAMS_CURRENCY",
|
|
13301
13476
|
TeamMembersCurrency = "TEAM_MEMBERS_CURRENCY",
|
|
13302
13477
|
CompassInsertMetricValueCurrency = "COMPASS_INSERT_METRIC_VALUE_CURRENCY"
|
|
@@ -14091,7 +14266,7 @@ export declare type SetSwimlaneStrategyResponse = MutationResponse & {
|
|
|
14091
14266
|
};
|
|
14092
14267
|
export declare type ShepherdAlert = {
|
|
14093
14268
|
__typename?: 'ShepherdAlert';
|
|
14094
|
-
|
|
14269
|
+
assignee?: Maybe<ShepherdUser>;
|
|
14095
14270
|
cloudId?: Maybe<Scalars['ID']>;
|
|
14096
14271
|
createdOn: Scalars['DateTime'];
|
|
14097
14272
|
id: Scalars['ID'];
|
|
@@ -14128,6 +14303,7 @@ export declare type ShepherdAppInfo = {
|
|
|
14128
14303
|
loginUrl: Scalars['String'];
|
|
14129
14304
|
};
|
|
14130
14305
|
export declare type ShepherdCreateAlertInput = {
|
|
14306
|
+
assignee?: Maybe<Scalars['ID']>;
|
|
14131
14307
|
cloudId?: Maybe<Scalars['ID']>;
|
|
14132
14308
|
orgId: Scalars['ID'];
|
|
14133
14309
|
status?: Maybe<ShepherdAlertStatus>;
|
|
@@ -14139,6 +14315,10 @@ export declare type ShepherdCreateAlertPayload = Payload & {
|
|
|
14139
14315
|
node?: Maybe<ShepherdAlert>;
|
|
14140
14316
|
success: Scalars['Boolean'];
|
|
14141
14317
|
};
|
|
14318
|
+
export declare type ShepherdCreateEmailInput = {
|
|
14319
|
+
email?: Maybe<Scalars['String']>;
|
|
14320
|
+
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
14321
|
+
};
|
|
14142
14322
|
export declare type ShepherdCreateOrganizationInput = {
|
|
14143
14323
|
enabled?: Maybe<Scalars['Boolean']>;
|
|
14144
14324
|
id: Scalars['ID'];
|
|
@@ -14149,6 +14329,40 @@ export declare type ShepherdCreateOrganizationPayload = Payload & {
|
|
|
14149
14329
|
node?: Maybe<ShepherdOrganization>;
|
|
14150
14330
|
success: Scalars['Boolean'];
|
|
14151
14331
|
};
|
|
14332
|
+
export declare type ShepherdCreateSubscriptionInput = {
|
|
14333
|
+
email?: Maybe<ShepherdCreateEmailInput>;
|
|
14334
|
+
orgId: Scalars['ID'];
|
|
14335
|
+
webhook?: Maybe<ShepherdCreateWebhookInput>;
|
|
14336
|
+
};
|
|
14337
|
+
export declare type ShepherdCreateSubscriptionPayload = Payload & {
|
|
14338
|
+
__typename?: 'ShepherdCreateSubscriptionPayload';
|
|
14339
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14340
|
+
node?: Maybe<ShepherdWebhookSubscription>;
|
|
14341
|
+
success: Scalars['Boolean'];
|
|
14342
|
+
};
|
|
14343
|
+
export declare type ShepherdCreateWebhookInput = {
|
|
14344
|
+
authToken?: Maybe<Scalars['String']>;
|
|
14345
|
+
callbackURL: Scalars['URL'];
|
|
14346
|
+
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
14347
|
+
};
|
|
14348
|
+
export declare type ShepherdEmailConnection = {
|
|
14349
|
+
__typename?: 'ShepherdEmailConnection';
|
|
14350
|
+
edges?: Maybe<Array<Maybe<ShepherdEmailEdge>>>;
|
|
14351
|
+
};
|
|
14352
|
+
export declare type ShepherdEmailEdge = {
|
|
14353
|
+
__typename?: 'ShepherdEmailEdge';
|
|
14354
|
+
node?: Maybe<ShepherdEmailSubscription>;
|
|
14355
|
+
};
|
|
14356
|
+
export declare type ShepherdEmailSubscription = ShepherdSubscription & {
|
|
14357
|
+
__typename?: 'ShepherdEmailSubscription';
|
|
14358
|
+
createdBy: Scalars['String'];
|
|
14359
|
+
createdOn: Scalars['DateTime'];
|
|
14360
|
+
email: Scalars['String'];
|
|
14361
|
+
id: Scalars['ID'];
|
|
14362
|
+
status: ShepherdSubscriptionStatus;
|
|
14363
|
+
updatedBy?: Maybe<Scalars['String']>;
|
|
14364
|
+
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
14365
|
+
};
|
|
14152
14366
|
export declare type ShepherdGenericQueryErrorExtension = QueryErrorExtension & {
|
|
14153
14367
|
__typename?: 'ShepherdGenericQueryErrorExtension';
|
|
14154
14368
|
errorType?: Maybe<Scalars['String']>;
|
|
@@ -14159,8 +14373,10 @@ export declare type ShepherdMutation = {
|
|
|
14159
14373
|
__typename?: 'ShepherdMutation';
|
|
14160
14374
|
createAlert?: Maybe<ShepherdCreateAlertPayload>;
|
|
14161
14375
|
createOrganization?: Maybe<ShepherdCreateOrganizationPayload>;
|
|
14376
|
+
createSubscription?: Maybe<ShepherdCreateSubscriptionPayload>;
|
|
14162
14377
|
updateAlert?: Maybe<ShepherdUpdateAlertPayload>;
|
|
14163
14378
|
updateOrganization?: Maybe<ShepherdUpdateOrganizationPayload>;
|
|
14379
|
+
updateSubscription?: Maybe<ShepherdUpdateSubscriptionPayload>;
|
|
14164
14380
|
};
|
|
14165
14381
|
export declare type ShepherdMutationCreateAlertArgs = {
|
|
14166
14382
|
input: ShepherdCreateAlertInput;
|
|
@@ -14168,6 +14384,9 @@ export declare type ShepherdMutationCreateAlertArgs = {
|
|
|
14168
14384
|
export declare type ShepherdMutationCreateOrganizationArgs = {
|
|
14169
14385
|
input: ShepherdCreateOrganizationInput;
|
|
14170
14386
|
};
|
|
14387
|
+
export declare type ShepherdMutationCreateSubscriptionArgs = {
|
|
14388
|
+
input: ShepherdCreateSubscriptionInput;
|
|
14389
|
+
};
|
|
14171
14390
|
export declare type ShepherdMutationUpdateAlertArgs = {
|
|
14172
14391
|
id: Scalars['ID'];
|
|
14173
14392
|
input: ShepherdUpdateAlertInput;
|
|
@@ -14176,19 +14395,25 @@ export declare type ShepherdMutationUpdateOrganizationArgs = {
|
|
|
14176
14395
|
id: Scalars['ID'];
|
|
14177
14396
|
input: ShepherdUpdateOrganizationInput;
|
|
14178
14397
|
};
|
|
14398
|
+
export declare type ShepherdMutationUpdateSubscriptionArgs = {
|
|
14399
|
+
id: Scalars['ID'];
|
|
14400
|
+
input: ShepherdUpdateSubscriptionInput;
|
|
14401
|
+
};
|
|
14179
14402
|
export declare type ShepherdOrganization = {
|
|
14180
14403
|
__typename?: 'ShepherdOrganization';
|
|
14181
14404
|
createdOn: Scalars['DateTime'];
|
|
14182
14405
|
enabled: Scalars['Boolean'];
|
|
14183
14406
|
id: Scalars['ID'];
|
|
14407
|
+
subscriptions?: Maybe<ShepherdSubscriptionsResult>;
|
|
14184
14408
|
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
14185
14409
|
};
|
|
14410
|
+
export declare type ShepherdOrganizationResult = QueryError | ShepherdOrganization;
|
|
14186
14411
|
export declare type ShepherdQuery = {
|
|
14187
14412
|
__typename?: 'ShepherdQuery';
|
|
14188
14413
|
shepherdAlert?: Maybe<ShepherdAlertResult>;
|
|
14189
14414
|
shepherdAlerts?: Maybe<ShepherdAlertsResult>;
|
|
14190
14415
|
shepherdAppInfo: ShepherdAppInfo;
|
|
14191
|
-
shepherdOrganization?: Maybe<
|
|
14416
|
+
shepherdOrganization?: Maybe<ShepherdOrganizationResult>;
|
|
14192
14417
|
shepherdUser?: Maybe<ShepherdUser>;
|
|
14193
14418
|
};
|
|
14194
14419
|
export declare type ShepherdQueryShepherdAlertArgs = {
|
|
@@ -14204,7 +14429,21 @@ export declare enum ShepherdQueryErrorType {
|
|
|
14204
14429
|
NoProductAccess = "NO_PRODUCT_ACCESS",
|
|
14205
14430
|
Unauthorized = "UNAUTHORIZED"
|
|
14206
14431
|
}
|
|
14432
|
+
export declare type ShepherdSubscription = {
|
|
14433
|
+
createdBy: Scalars['String'];
|
|
14434
|
+
createdOn: Scalars['DateTime'];
|
|
14435
|
+
id: Scalars['ID'];
|
|
14436
|
+
status: ShepherdSubscriptionStatus;
|
|
14437
|
+
updatedBy?: Maybe<Scalars['String']>;
|
|
14438
|
+
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
14439
|
+
};
|
|
14440
|
+
export declare enum ShepherdSubscriptionStatus {
|
|
14441
|
+
Active = "ACTIVE",
|
|
14442
|
+
Inactive = "INACTIVE"
|
|
14443
|
+
}
|
|
14444
|
+
export declare type ShepherdSubscriptionsResult = ShepherdEmailConnection | ShepherdWebhookConnection;
|
|
14207
14445
|
export declare type ShepherdUpdateAlertInput = {
|
|
14446
|
+
assignee?: Maybe<Scalars['ID']>;
|
|
14208
14447
|
status?: Maybe<ShepherdAlertStatus>;
|
|
14209
14448
|
};
|
|
14210
14449
|
export declare type ShepherdUpdateAlertPayload = Payload & {
|
|
@@ -14213,6 +14452,10 @@ export declare type ShepherdUpdateAlertPayload = Payload & {
|
|
|
14213
14452
|
node?: Maybe<ShepherdAlert>;
|
|
14214
14453
|
success: Scalars['Boolean'];
|
|
14215
14454
|
};
|
|
14455
|
+
export declare type ShepherdUpdateEmailInput = {
|
|
14456
|
+
email?: Maybe<ShepherdCreateEmailInput>;
|
|
14457
|
+
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
14458
|
+
};
|
|
14216
14459
|
export declare type ShepherdUpdateOrganizationInput = {
|
|
14217
14460
|
enabled?: Maybe<Scalars['Boolean']>;
|
|
14218
14461
|
};
|
|
@@ -14222,10 +14465,44 @@ export declare type ShepherdUpdateOrganizationPayload = Payload & {
|
|
|
14222
14465
|
node?: Maybe<ShepherdOrganization>;
|
|
14223
14466
|
success: Scalars['Boolean'];
|
|
14224
14467
|
};
|
|
14468
|
+
export declare type ShepherdUpdateSubscriptionInput = {
|
|
14469
|
+
email?: Maybe<ShepherdUpdateEmailInput>;
|
|
14470
|
+
orgId: Scalars['ID'];
|
|
14471
|
+
webhook?: Maybe<ShepherdUpdateWebhookInput>;
|
|
14472
|
+
};
|
|
14473
|
+
export declare type ShepherdUpdateSubscriptionPayload = Payload & {
|
|
14474
|
+
__typename?: 'ShepherdUpdateSubscriptionPayload';
|
|
14475
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14476
|
+
node?: Maybe<ShepherdWebhookSubscription>;
|
|
14477
|
+
success: Scalars['Boolean'];
|
|
14478
|
+
};
|
|
14479
|
+
export declare type ShepherdUpdateWebhookInput = {
|
|
14480
|
+
callbackURL?: Maybe<Scalars['URL']>;
|
|
14481
|
+
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
14482
|
+
};
|
|
14225
14483
|
export declare type ShepherdUser = {
|
|
14226
14484
|
__typename?: 'ShepherdUser';
|
|
14227
14485
|
user?: Maybe<User>;
|
|
14228
14486
|
};
|
|
14487
|
+
export declare type ShepherdWebhookConnection = {
|
|
14488
|
+
__typename?: 'ShepherdWebhookConnection';
|
|
14489
|
+
edges?: Maybe<Array<Maybe<ShepherdWebhookEdge>>>;
|
|
14490
|
+
};
|
|
14491
|
+
export declare type ShepherdWebhookEdge = {
|
|
14492
|
+
__typename?: 'ShepherdWebhookEdge';
|
|
14493
|
+
node?: Maybe<ShepherdWebhookSubscription>;
|
|
14494
|
+
};
|
|
14495
|
+
export declare type ShepherdWebhookSubscription = ShepherdSubscription & {
|
|
14496
|
+
__typename?: 'ShepherdWebhookSubscription';
|
|
14497
|
+
authToken: Scalars['String'];
|
|
14498
|
+
callbackURL: Scalars['String'];
|
|
14499
|
+
createdBy: Scalars['String'];
|
|
14500
|
+
createdOn: Scalars['DateTime'];
|
|
14501
|
+
id: Scalars['ID'];
|
|
14502
|
+
status: ShepherdSubscriptionStatus;
|
|
14503
|
+
updatedBy?: Maybe<Scalars['String']>;
|
|
14504
|
+
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
14505
|
+
};
|
|
14229
14506
|
export declare type SoftwareBoard = {
|
|
14230
14507
|
__typename?: 'SoftwareBoard';
|
|
14231
14508
|
id?: Maybe<Scalars['ID']>;
|