@forge/cli-shared 3.20.3-next.2 → 3.20.3-next.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/out/graphql/graphql-types.d.ts +166 -5
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +22 -12
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.20.3-next.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- beacdee6: Bumping dependencies via Renovate:
|
|
8
|
+
|
|
9
|
+
- @sentry/node
|
|
10
|
+
|
|
11
|
+
## 3.20.3-next.3
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 33e84a1d: Bumping dependencies via Renovate:
|
|
16
|
+
|
|
17
|
+
- @types/array.prototype.flatmap
|
|
18
|
+
|
|
3
19
|
## 3.20.3-next.2
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -2824,6 +2824,7 @@ export type CommerceOffering = {
|
|
|
2824
2824
|
};
|
|
2825
2825
|
export type CommercePricingPlan = {
|
|
2826
2826
|
primaryCycle?: Maybe<CommercePrimaryCycle>;
|
|
2827
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
2827
2828
|
};
|
|
2828
2829
|
export type CommercePrimaryCycle = {
|
|
2829
2830
|
interval?: Maybe<CcpBillingInterval>;
|
|
@@ -5342,6 +5343,12 @@ export type ConfluenceCreateUserPropertyPayload = Payload & {
|
|
|
5342
5343
|
success: Scalars['Boolean']['output'];
|
|
5343
5344
|
userProperty?: Maybe<ConfluenceUserProperty>;
|
|
5344
5345
|
};
|
|
5346
|
+
export type ConfluenceDatabase = {
|
|
5347
|
+
__typename?: 'ConfluenceDatabase';
|
|
5348
|
+
databaseId: Scalars['ID']['output'];
|
|
5349
|
+
id: Scalars['ID']['output'];
|
|
5350
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
5351
|
+
};
|
|
5345
5352
|
export type ConfluenceDeleteBlogPostPropertyInput = {
|
|
5346
5353
|
blogPostId: Scalars['ID']['input'];
|
|
5347
5354
|
key: Scalars['String']['input'];
|
|
@@ -5764,6 +5771,8 @@ export type ConfluenceQueryApi = {
|
|
|
5764
5771
|
blogPosts?: Maybe<Array<Maybe<ConfluenceBlogPost>>>;
|
|
5765
5772
|
comment?: Maybe<ConfluenceComment>;
|
|
5766
5773
|
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
5774
|
+
database?: Maybe<ConfluenceDatabase>;
|
|
5775
|
+
databases?: Maybe<Array<Maybe<ConfluenceDatabase>>>;
|
|
5767
5776
|
findSpaces?: Maybe<ConfluenceSpaceConnection>;
|
|
5768
5777
|
inlineTask?: Maybe<ConfluenceInlineTask>;
|
|
5769
5778
|
longTask?: Maybe<ConfluenceLongTask>;
|
|
@@ -5789,6 +5798,12 @@ export type ConfluenceQueryApiCommentArgs = {
|
|
|
5789
5798
|
export type ConfluenceQueryApiCommentsArgs = {
|
|
5790
5799
|
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
5791
5800
|
};
|
|
5801
|
+
export type ConfluenceQueryApiDatabaseArgs = {
|
|
5802
|
+
id: Scalars['ID']['input'];
|
|
5803
|
+
};
|
|
5804
|
+
export type ConfluenceQueryApiDatabasesArgs = {
|
|
5805
|
+
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
5806
|
+
};
|
|
5792
5807
|
export type ConfluenceQueryApiFindSpacesArgs = {
|
|
5793
5808
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
5794
5809
|
cloudId: Scalars['ID']['input'];
|
|
@@ -7488,6 +7503,7 @@ export type DataResidency = {
|
|
|
7488
7503
|
};
|
|
7489
7504
|
export declare enum DataResidencyResponse {
|
|
7490
7505
|
AppDoesNotSupportDr = "APP_DOES_NOT_SUPPORT_DR",
|
|
7506
|
+
NotApplicable = "NOT_APPLICABLE",
|
|
7491
7507
|
StoredExternalToAtlassian = "STORED_EXTERNAL_TO_ATLASSIAN",
|
|
7492
7508
|
StoredInAtlassianAndDrNotSupported = "STORED_IN_ATLASSIAN_AND_DR_NOT_SUPPORTED",
|
|
7493
7509
|
StoredInAtlassianAndDrSupported = "STORED_IN_ATLASSIAN_AND_DR_SUPPORTED"
|
|
@@ -7496,6 +7512,7 @@ export type DataRetention = {
|
|
|
7496
7512
|
__typename?: 'DataRetention';
|
|
7497
7513
|
isCustomRetentionPeriodAllowed?: Maybe<Scalars['Boolean']['output']>;
|
|
7498
7514
|
isDataRetentionSupported: Scalars['Boolean']['output'];
|
|
7515
|
+
isRetentionDurationIndefinite?: Maybe<Scalars['Boolean']['output']>;
|
|
7499
7516
|
retentionDurationInDays?: Maybe<RetentionDurationInDays>;
|
|
7500
7517
|
};
|
|
7501
7518
|
export type DataTransfer = {
|
|
@@ -11994,6 +12011,7 @@ export type HamsOffering = CommerceOffering & {
|
|
|
11994
12011
|
export type HamsPricingPlan = CommercePricingPlan & {
|
|
11995
12012
|
__typename?: 'HamsPricingPlan';
|
|
11996
12013
|
primaryCycle?: Maybe<HamsPrimaryCycle>;
|
|
12014
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
11997
12015
|
};
|
|
11998
12016
|
export type HamsPrimaryCycle = CommercePrimaryCycle & {
|
|
11999
12017
|
__typename?: 'HamsPrimaryCycle';
|
|
@@ -13182,6 +13200,73 @@ export type InlineColumnEditConfig = {
|
|
|
13182
13200
|
__typename?: 'InlineColumnEditConfig';
|
|
13183
13201
|
enabled: Scalars['Boolean']['output'];
|
|
13184
13202
|
};
|
|
13203
|
+
export type Insights = {
|
|
13204
|
+
__typename?: 'Insights';
|
|
13205
|
+
nextBestTasksByProject?: Maybe<Array<Maybe<InsightsNextBestTask>>>;
|
|
13206
|
+
nextBestTasksBySprint?: Maybe<Array<Maybe<InsightsNextBestTask>>>;
|
|
13207
|
+
};
|
|
13208
|
+
export type InsightsNextBestTasksByProjectArgs = {
|
|
13209
|
+
projectAri: Scalars['ID']['input'];
|
|
13210
|
+
};
|
|
13211
|
+
export type InsightsNextBestTasksBySprintArgs = {
|
|
13212
|
+
sprintAri: Scalars['ID']['input'];
|
|
13213
|
+
};
|
|
13214
|
+
export type InsightsBuildDetails = {
|
|
13215
|
+
__typename?: 'InsightsBuildDetails';
|
|
13216
|
+
buildNumber?: Maybe<Scalars['Int']['output']>;
|
|
13217
|
+
issueId?: Maybe<Scalars['String']['output']>;
|
|
13218
|
+
issueKey?: Maybe<Scalars['String']['output']>;
|
|
13219
|
+
issueName?: Maybe<Scalars['String']['output']>;
|
|
13220
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
13221
|
+
numberOfFailedBuilds?: Maybe<Scalars['Int']['output']>;
|
|
13222
|
+
};
|
|
13223
|
+
export type InsightsDeploymentDetails = {
|
|
13224
|
+
__typename?: 'InsightsDeploymentDetails';
|
|
13225
|
+
environmentNames?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
13226
|
+
environmentType?: Maybe<InsightsEnvironmentType>;
|
|
13227
|
+
issueId?: Maybe<Scalars['String']['output']>;
|
|
13228
|
+
issueKey?: Maybe<Scalars['String']['output']>;
|
|
13229
|
+
issueName?: Maybe<Scalars['String']['output']>;
|
|
13230
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
13231
|
+
numberOfFailedDeployments?: Maybe<Scalars['Int']['output']>;
|
|
13232
|
+
pipelineName?: Maybe<Scalars['String']['output']>;
|
|
13233
|
+
};
|
|
13234
|
+
export declare enum InsightsEnvironmentType {
|
|
13235
|
+
Development = "DEVELOPMENT",
|
|
13236
|
+
Production = "PRODUCTION",
|
|
13237
|
+
Staging = "STAGING",
|
|
13238
|
+
Testing = "TESTING",
|
|
13239
|
+
Unmapped = "UNMAPPED"
|
|
13240
|
+
}
|
|
13241
|
+
export type InsightsNextBestTask = {
|
|
13242
|
+
__typename?: 'InsightsNextBestTask';
|
|
13243
|
+
details?: Maybe<InsightsNextBestTaskDetails>;
|
|
13244
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
13245
|
+
task?: Maybe<InsightsTaskType>;
|
|
13246
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
13247
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
13248
|
+
};
|
|
13249
|
+
export type InsightsNextBestTaskDetails = InsightsBuildDetails | InsightsDeploymentDetails | InsightsPullRequestDetails | InsightsPullRequestNeedsWorkDetails;
|
|
13250
|
+
export type InsightsPullRequestDetails = {
|
|
13251
|
+
__typename?: 'InsightsPullRequestDetails';
|
|
13252
|
+
approvalsCount?: Maybe<Scalars['Int']['output']>;
|
|
13253
|
+
commentCount?: Maybe<Scalars['Int']['output']>;
|
|
13254
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
13255
|
+
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
13256
|
+
};
|
|
13257
|
+
export type InsightsPullRequestNeedsWorkDetails = {
|
|
13258
|
+
__typename?: 'InsightsPullRequestNeedsWorkDetails';
|
|
13259
|
+
commentCount?: Maybe<Scalars['Int']['output']>;
|
|
13260
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
13261
|
+
needsWorkCount?: Maybe<Scalars['Int']['output']>;
|
|
13262
|
+
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
13263
|
+
};
|
|
13264
|
+
export declare enum InsightsTaskType {
|
|
13265
|
+
BuildFailed = "BUILD_FAILED",
|
|
13266
|
+
DeploymentFailed = "DEPLOYMENT_FAILED",
|
|
13267
|
+
PrNeedsWork = "PR_NEEDS_WORK",
|
|
13268
|
+
PrReview = "PR_REVIEW"
|
|
13269
|
+
}
|
|
13185
13270
|
export type InstallationContextWithLogAccess = {
|
|
13186
13271
|
__typename?: 'InstallationContextWithLogAccess';
|
|
13187
13272
|
installationContext: Scalars['ID']['output'];
|
|
@@ -14967,6 +15052,14 @@ export type JiraDefaultGrantTypeValue = Node & {
|
|
|
14967
15052
|
id: Scalars['ID']['output'];
|
|
14968
15053
|
name: Scalars['String']['output'];
|
|
14969
15054
|
};
|
|
15055
|
+
export type JiraDeleteProjectNotificationPreferencesInput = {
|
|
15056
|
+
projectId: Scalars['ID']['input'];
|
|
15057
|
+
};
|
|
15058
|
+
export type JiraDeleteProjectNotificationPreferencesPayload = Payload & {
|
|
15059
|
+
__typename?: 'JiraDeleteProjectNotificationPreferencesPayload';
|
|
15060
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15061
|
+
success: Scalars['Boolean']['output'];
|
|
15062
|
+
};
|
|
14970
15063
|
export type JiraDeleteShortcutInput = {
|
|
14971
15064
|
projectId: Scalars['ID']['input'];
|
|
14972
15065
|
shortcutId: Scalars['ID']['input'];
|
|
@@ -16540,11 +16633,6 @@ export type JiraIssueSearchViewFieldSetsArgs = {
|
|
|
16540
16633
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16541
16634
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
16542
16635
|
};
|
|
16543
|
-
export declare enum JiraIssueSearchViewContext {
|
|
16544
|
-
Nin = "NIN",
|
|
16545
|
-
NinWithFallback = "NIN_WITH_FALLBACK",
|
|
16546
|
-
ShadowRequest = "SHADOW_REQUEST"
|
|
16547
|
-
}
|
|
16548
16636
|
export type JiraIssueSearchViewPayload = Payload & {
|
|
16549
16637
|
__typename?: 'JiraIssueSearchViewPayload';
|
|
16550
16638
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -17467,6 +17555,7 @@ export type JiraMutation = {
|
|
|
17467
17555
|
deleteGlobalPermissionGrant?: Maybe<JiraGlobalPermissionDeleteGroupGrantPayload>;
|
|
17468
17556
|
deleteIssueNavigatorJQLHistory?: Maybe<JiraIssueNavigatorJqlHistoryDeletePayload>;
|
|
17469
17557
|
deleteJiraVersionApprover?: Maybe<JiraVersionDeleteApproverPayload>;
|
|
17558
|
+
deleteProjectNotificationPreferences?: Maybe<JiraDeleteProjectNotificationPreferencesPayload>;
|
|
17470
17559
|
deleteProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
17471
17560
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
17472
17561
|
grantGlobalPermission?: Maybe<JiraGlobalPermissionAddGroupGrantPayload>;
|
|
@@ -17480,6 +17569,7 @@ export type JiraMutation = {
|
|
|
17480
17569
|
removePostIncidentReviewLink?: Maybe<JiraRemovePostIncidentReviewLinkMutationPayload>;
|
|
17481
17570
|
removeRelatedWorkFromVersion?: Maybe<JiraRemoveRelatedWorkFromVersionPayload>;
|
|
17482
17571
|
replaceIssueSearchViewFieldSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
17572
|
+
resetProjectNotificationPreferences?: Maybe<JiraResetProjectNotificationPreferencesPayload>;
|
|
17483
17573
|
saveVersionDetailsCollapsedUis?: Maybe<JiraVersionDetailsCollapsedUisPayload>;
|
|
17484
17574
|
saveVersionIssueTableColumnHiddenState?: Maybe<JiraVersionIssueTableColumnHiddenStatePayload>;
|
|
17485
17575
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
@@ -17509,6 +17599,7 @@ export type JiraMutation = {
|
|
|
17509
17599
|
updateParentField?: Maybe<JiraParentFieldPayload>;
|
|
17510
17600
|
updatePriorityField?: Maybe<JiraPriorityFieldPayload>;
|
|
17511
17601
|
updateProjectField?: Maybe<JiraProjectFieldPayload>;
|
|
17602
|
+
updateProjectNotificationPreferences?: Maybe<JiraUpdateProjectNotificationPreferencesPayload>;
|
|
17512
17603
|
updateProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
17513
17604
|
updateRadioSelectField?: Maybe<JiraRadioSelectFieldPayload>;
|
|
17514
17605
|
updateReleaseNotesConfiguration?: Maybe<JiraUpdateReleaseNotesConfigurationPayload>;
|
|
@@ -17585,6 +17676,10 @@ export type JiraMutationDeleteIssueNavigatorJqlHistoryArgs = {
|
|
|
17585
17676
|
export type JiraMutationDeleteJiraVersionApproverArgs = {
|
|
17586
17677
|
id: Scalars['ID']['input'];
|
|
17587
17678
|
};
|
|
17679
|
+
export type JiraMutationDeleteProjectNotificationPreferencesArgs = {
|
|
17680
|
+
cloudId: Scalars['ID']['input'];
|
|
17681
|
+
input: JiraDeleteProjectNotificationPreferencesInput;
|
|
17682
|
+
};
|
|
17588
17683
|
export type JiraMutationDeleteProjectShortcutArgs = {
|
|
17589
17684
|
input: JiraDeleteShortcutInput;
|
|
17590
17685
|
};
|
|
@@ -17620,6 +17715,10 @@ export type JiraMutationReplaceIssueSearchViewFieldSetsArgs = {
|
|
|
17620
17715
|
id: Scalars['ID']['input'];
|
|
17621
17716
|
input: JiraReplaceIssueSearchViewFieldSetsInput;
|
|
17622
17717
|
};
|
|
17718
|
+
export type JiraMutationResetProjectNotificationPreferencesArgs = {
|
|
17719
|
+
cloudId: Scalars['ID']['input'];
|
|
17720
|
+
input: JiraResetProjectNotificationPreferencesInput;
|
|
17721
|
+
};
|
|
17623
17722
|
export type JiraMutationSaveVersionDetailsCollapsedUisArgs = {
|
|
17624
17723
|
input: JiraVersionDetailsCollapsedUisInput;
|
|
17625
17724
|
};
|
|
@@ -17713,6 +17812,10 @@ export type JiraMutationUpdatePriorityFieldArgs = {
|
|
|
17713
17812
|
export type JiraMutationUpdateProjectFieldArgs = {
|
|
17714
17813
|
input: JiraUpdateProjectFieldInput;
|
|
17715
17814
|
};
|
|
17815
|
+
export type JiraMutationUpdateProjectNotificationPreferencesArgs = {
|
|
17816
|
+
cloudId: Scalars['ID']['input'];
|
|
17817
|
+
input: JiraUpdateProjectNotificationPreferencesInput;
|
|
17818
|
+
};
|
|
17716
17819
|
export type JiraMutationUpdateProjectShortcutArgs = {
|
|
17717
17820
|
input: JiraUpdateShortcutInput;
|
|
17718
17821
|
};
|
|
@@ -17834,6 +17937,17 @@ export type JiraNotificationPreferences = {
|
|
|
17834
17937
|
issueMentioned?: Maybe<JiraNotificationPreference>;
|
|
17835
17938
|
issueUpdated?: Maybe<JiraNotificationPreference>;
|
|
17836
17939
|
};
|
|
17940
|
+
export type JiraNotificationProjectPreferenceConnection = HasPageInfo & HasTotal & {
|
|
17941
|
+
__typename?: 'JiraNotificationProjectPreferenceConnection';
|
|
17942
|
+
edges?: Maybe<Array<Maybe<JiraProjectNotificationPreferenceEdge>>>;
|
|
17943
|
+
pageInfo: PageInfo;
|
|
17944
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
17945
|
+
};
|
|
17946
|
+
export type JiraNotificationProjectPreferences = {
|
|
17947
|
+
__typename?: 'JiraNotificationProjectPreferences';
|
|
17948
|
+
preferences?: Maybe<JiraNotificationPreferences>;
|
|
17949
|
+
project?: Maybe<JiraProject>;
|
|
17950
|
+
};
|
|
17837
17951
|
export declare enum JiraNotificationType {
|
|
17838
17952
|
CommentCreated = "COMMENT_CREATED",
|
|
17839
17953
|
CommentDeleted = "COMMENT_DELETED",
|
|
@@ -18464,6 +18578,8 @@ export type JiraProject = Node & {
|
|
|
18464
18578
|
devOpsServiceRelationships?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
18465
18579
|
devOpsToolRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
18466
18580
|
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
18581
|
+
hasRelationshipFrom?: Maybe<Scalars['Boolean']['output']>;
|
|
18582
|
+
hasRelationshipTo?: Maybe<Scalars['Boolean']['output']>;
|
|
18467
18583
|
id: Scalars['ID']['output'];
|
|
18468
18584
|
intentTemplates?: Maybe<VirtualAgentIntentTemplatesConnection>;
|
|
18469
18585
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -18521,6 +18637,12 @@ export type JiraProjectDevOpsToolRelationshipsArgs = {
|
|
|
18521
18637
|
filter?: InputMaybe<JiraProjectAndDevOpsToolRelationshipFilter>;
|
|
18522
18638
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
18523
18639
|
};
|
|
18640
|
+
export type JiraProjectHasRelationshipFromArgs = {
|
|
18641
|
+
type: Scalars['ID']['input'];
|
|
18642
|
+
};
|
|
18643
|
+
export type JiraProjectHasRelationshipToArgs = {
|
|
18644
|
+
type: Scalars['ID']['input'];
|
|
18645
|
+
};
|
|
18524
18646
|
export type JiraProjectIntentTemplatesArgs = {
|
|
18525
18647
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
18526
18648
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -18860,6 +18982,11 @@ export type JiraProjectListViewTemplateItem = {
|
|
|
18860
18982
|
title?: Maybe<Scalars['String']['output']>;
|
|
18861
18983
|
};
|
|
18862
18984
|
export type JiraProjectNavigationMetadata = JiraServiceManagementProjectNavigationMetadata | JiraSoftwareProjectNavigationMetadata | JiraWorkManagementProjectNavigationMetadata;
|
|
18985
|
+
export type JiraProjectNotificationPreferenceEdge = {
|
|
18986
|
+
__typename?: 'JiraProjectNotificationPreferenceEdge';
|
|
18987
|
+
cursor: Scalars['String']['output'];
|
|
18988
|
+
node?: Maybe<JiraNotificationProjectPreferences>;
|
|
18989
|
+
};
|
|
18863
18990
|
export type JiraProjectOptions = {
|
|
18864
18991
|
projectType?: InputMaybe<JiraProjectType>;
|
|
18865
18992
|
};
|
|
@@ -18974,6 +19101,7 @@ export type JiraQuery = {
|
|
|
18974
19101
|
allJiraProjectTypes?: Maybe<JiraProjectTypeDetailsConnection>;
|
|
18975
19102
|
allJiraProjects?: Maybe<JiraProjectConnection>;
|
|
18976
19103
|
allJiraUserBroadcastMessages?: Maybe<JiraUserBroadcastMessageConnection>;
|
|
19104
|
+
allNotificationProjectPreferences?: Maybe<JiraNotificationProjectPreferenceConnection>;
|
|
18977
19105
|
announcementBanner?: Maybe<JiraAnnouncementBanner>;
|
|
18978
19106
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
18979
19107
|
booleanUserProperty?: Maybe<JiraEntityPropertyBoolean>;
|
|
@@ -19040,6 +19168,7 @@ export type JiraQuery = {
|
|
|
19040
19168
|
lockedIssueTypeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
19041
19169
|
naturalLanguageToJql?: Maybe<JiraJqlFromNaturalLanguage>;
|
|
19042
19170
|
notificationGlobalPreference?: Maybe<JiraNotificationGlobalPreference>;
|
|
19171
|
+
notificationProjectPreferences?: Maybe<Array<Maybe<JiraNotificationProjectPreferences>>>;
|
|
19043
19172
|
permission?: Maybe<JiraPermission>;
|
|
19044
19173
|
permissionSchemeGrants?: Maybe<JiraPermissionGrantValueConnection>;
|
|
19045
19174
|
postIncidentReviewLinksByIds?: Maybe<Array<Maybe<JiraPostIncidentReviewLink>>>;
|
|
@@ -19101,6 +19230,13 @@ export type JiraQueryAllJiraUserBroadcastMessagesArgs = {
|
|
|
19101
19230
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
19102
19231
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
19103
19232
|
};
|
|
19233
|
+
export type JiraQueryAllNotificationProjectPreferencesArgs = {
|
|
19234
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
19235
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
19236
|
+
cloudId: Scalars['ID']['input'];
|
|
19237
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
19238
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
19239
|
+
};
|
|
19104
19240
|
export type JiraQueryAnnouncementBannerArgs = {
|
|
19105
19241
|
cloudId: Scalars['ID']['input'];
|
|
19106
19242
|
};
|
|
@@ -19184,6 +19320,7 @@ export type JiraQueryFiltersArgs = {
|
|
|
19184
19320
|
export type JiraQueryFirst100JsmWorkflowTemplatesArgs = {
|
|
19185
19321
|
cloudId: Scalars['ID']['input'];
|
|
19186
19322
|
keywords?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
19323
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
19187
19324
|
projectStyle?: InputMaybe<JiraProjectStyle>;
|
|
19188
19325
|
tags?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
19189
19326
|
templateId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -19390,6 +19527,10 @@ export type JiraQueryNaturalLanguageToJqlArgs = {
|
|
|
19390
19527
|
export type JiraQueryNotificationGlobalPreferenceArgs = {
|
|
19391
19528
|
cloudId: Scalars['ID']['input'];
|
|
19392
19529
|
};
|
|
19530
|
+
export type JiraQueryNotificationProjectPreferencesArgs = {
|
|
19531
|
+
cloudId: Scalars['ID']['input'];
|
|
19532
|
+
projectIds: Array<Scalars['ID']['input']>;
|
|
19533
|
+
};
|
|
19393
19534
|
export type JiraQueryPermissionArgs = {
|
|
19394
19535
|
cloudId: Scalars['ID']['input'];
|
|
19395
19536
|
type: JiraPermissionType;
|
|
@@ -19733,6 +19874,15 @@ export type JiraReplaceIssueSearchViewFieldSetsInput = {
|
|
|
19733
19874
|
inclusive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
19734
19875
|
nodes: Array<Scalars['String']['input']>;
|
|
19735
19876
|
};
|
|
19877
|
+
export type JiraResetProjectNotificationPreferencesInput = {
|
|
19878
|
+
projectId: Scalars['ID']['input'];
|
|
19879
|
+
};
|
|
19880
|
+
export type JiraResetProjectNotificationPreferencesPayload = Payload & {
|
|
19881
|
+
__typename?: 'JiraResetProjectNotificationPreferencesPayload';
|
|
19882
|
+
errors?: Maybe<Array<MutationError>>;
|
|
19883
|
+
preferences?: Maybe<JiraNotificationPreferences>;
|
|
19884
|
+
success: Scalars['Boolean']['output'];
|
|
19885
|
+
};
|
|
19736
19886
|
export type JiraResolution = Node & {
|
|
19737
19887
|
__typename?: 'JiraResolution';
|
|
19738
19888
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -21573,6 +21723,16 @@ export type JiraUpdateProjectFieldInput = {
|
|
|
21573
21723
|
id: Scalars['ID']['input'];
|
|
21574
21724
|
operation: JiraProjectFieldOperationInput;
|
|
21575
21725
|
};
|
|
21726
|
+
export type JiraUpdateProjectNotificationPreferencesInput = {
|
|
21727
|
+
preferences: Array<JiraNotificationPreferenceInput>;
|
|
21728
|
+
projectId: Scalars['ID']['input'];
|
|
21729
|
+
};
|
|
21730
|
+
export type JiraUpdateProjectNotificationPreferencesPayload = Payload & {
|
|
21731
|
+
__typename?: 'JiraUpdateProjectNotificationPreferencesPayload';
|
|
21732
|
+
errors?: Maybe<Array<MutationError>>;
|
|
21733
|
+
preferences?: Maybe<JiraNotificationPreferences>;
|
|
21734
|
+
success: Scalars['Boolean']['output'];
|
|
21735
|
+
};
|
|
21576
21736
|
export type JiraUpdateRadioSelectFieldInput = {
|
|
21577
21737
|
id: Scalars['ID']['input'];
|
|
21578
21738
|
operation: JiraRadioSelectFieldOperationInput;
|
|
@@ -25855,6 +26015,7 @@ export type Query = {
|
|
|
25855
26015
|
helpExternalResource?: Maybe<HelpExternalResourceQueryApi>;
|
|
25856
26016
|
helpLayout?: Maybe<HelpLayoutQueryApi>;
|
|
25857
26017
|
helpObjectStore?: Maybe<HelpObjectStoreQueryApi>;
|
|
26018
|
+
insights?: Maybe<Insights>;
|
|
25858
26019
|
installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
|
|
25859
26020
|
isSainSearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
25860
26021
|
jira?: Maybe<JiraQuery>;
|