@forge/cli-shared 3.20.3-next.1 → 3.20.3-next.10
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 +86 -0
- package/out/graphql/graphql-types.d.ts +195 -5
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +24 -12
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,91 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.20.3-next.10
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- bfef160: Bumping dependencies via Renovate:
|
|
8
|
+
|
|
9
|
+
- @types/inquirer
|
|
10
|
+
|
|
11
|
+
## 3.20.3-next.9
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- c4b3c64c: Bumping dependencies via Renovate:
|
|
16
|
+
|
|
17
|
+
- @types/node-fetch
|
|
18
|
+
|
|
19
|
+
- Updated dependencies [c4b3c64c]
|
|
20
|
+
- @forge/manifest@4.20.4-next.3
|
|
21
|
+
|
|
22
|
+
## 3.20.3-next.8
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- a3d620b1: Bumping dependencies via Renovate:
|
|
27
|
+
|
|
28
|
+
- @types/jest
|
|
29
|
+
|
|
30
|
+
- Updated dependencies [a3d620b1]
|
|
31
|
+
- @forge/manifest@4.20.4-next.2
|
|
32
|
+
|
|
33
|
+
## 3.20.3-next.7
|
|
34
|
+
|
|
35
|
+
### Patch Changes
|
|
36
|
+
|
|
37
|
+
- f2196201: Bumping dependencies via Renovate:
|
|
38
|
+
|
|
39
|
+
- @types/fs-extra
|
|
40
|
+
|
|
41
|
+
## 3.20.3-next.6
|
|
42
|
+
|
|
43
|
+
### Patch Changes
|
|
44
|
+
|
|
45
|
+
- 77d7bc40: Bumping dependencies via Renovate:
|
|
46
|
+
|
|
47
|
+
- @types/cross-spawn
|
|
48
|
+
|
|
49
|
+
- 3a6bae44: Bumping dependencies via Renovate:
|
|
50
|
+
|
|
51
|
+
- @types/ignore-walk
|
|
52
|
+
|
|
53
|
+
## 3.20.3-next.5
|
|
54
|
+
|
|
55
|
+
### Patch Changes
|
|
56
|
+
|
|
57
|
+
- 637d8135: Bumping dependencies via Renovate:
|
|
58
|
+
|
|
59
|
+
- @types/cheerio
|
|
60
|
+
|
|
61
|
+
- 60c2f378: Bumping dependencies via Renovate:
|
|
62
|
+
|
|
63
|
+
- @types/adm-zip
|
|
64
|
+
|
|
65
|
+
## 3.20.3-next.4
|
|
66
|
+
|
|
67
|
+
### Patch Changes
|
|
68
|
+
|
|
69
|
+
- beacdee6: Bumping dependencies via Renovate:
|
|
70
|
+
|
|
71
|
+
- @sentry/node
|
|
72
|
+
|
|
73
|
+
## 3.20.3-next.3
|
|
74
|
+
|
|
75
|
+
### Patch Changes
|
|
76
|
+
|
|
77
|
+
- 33e84a1d: Bumping dependencies via Renovate:
|
|
78
|
+
|
|
79
|
+
- @types/array.prototype.flatmap
|
|
80
|
+
|
|
81
|
+
## 3.20.3-next.2
|
|
82
|
+
|
|
83
|
+
### Patch Changes
|
|
84
|
+
|
|
85
|
+
- 07efc052: Bumping dependencies via Renovate:
|
|
86
|
+
|
|
87
|
+
- @sentry/node
|
|
88
|
+
|
|
3
89
|
## 3.20.3-next.1
|
|
4
90
|
|
|
5
91
|
### 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 = {
|
|
@@ -9983,6 +10000,8 @@ export type ForgeMetricsLabelGroup = {
|
|
|
9983
10000
|
value: Scalars['String']['output'];
|
|
9984
10001
|
};
|
|
9985
10002
|
export declare enum ForgeMetricsLabels {
|
|
10003
|
+
ForgeApiRequestCount = "FORGE_API_REQUEST_COUNT",
|
|
10004
|
+
ForgeApiRequestLatency = "FORGE_API_REQUEST_LATENCY",
|
|
9986
10005
|
ForgeBackendInvocationCount = "FORGE_BACKEND_INVOCATION_COUNT",
|
|
9987
10006
|
ForgeBackendInvocationErrors = "FORGE_BACKEND_INVOCATION_ERRORS",
|
|
9988
10007
|
ForgeBackendInvocationLatency = "FORGE_BACKEND_INVOCATION_LATENCY"
|
|
@@ -11994,6 +12013,7 @@ export type HamsOffering = CommerceOffering & {
|
|
|
11994
12013
|
export type HamsPricingPlan = CommercePricingPlan & {
|
|
11995
12014
|
__typename?: 'HamsPricingPlan';
|
|
11996
12015
|
primaryCycle?: Maybe<HamsPrimaryCycle>;
|
|
12016
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
11997
12017
|
};
|
|
11998
12018
|
export type HamsPrimaryCycle = CommercePrimaryCycle & {
|
|
11999
12019
|
__typename?: 'HamsPrimaryCycle';
|
|
@@ -13182,6 +13202,73 @@ export type InlineColumnEditConfig = {
|
|
|
13182
13202
|
__typename?: 'InlineColumnEditConfig';
|
|
13183
13203
|
enabled: Scalars['Boolean']['output'];
|
|
13184
13204
|
};
|
|
13205
|
+
export type Insights = {
|
|
13206
|
+
__typename?: 'Insights';
|
|
13207
|
+
nextBestTasksByProject?: Maybe<Array<Maybe<InsightsNextBestTask>>>;
|
|
13208
|
+
nextBestTasksBySprint?: Maybe<Array<Maybe<InsightsNextBestTask>>>;
|
|
13209
|
+
};
|
|
13210
|
+
export type InsightsNextBestTasksByProjectArgs = {
|
|
13211
|
+
projectAri: Scalars['ID']['input'];
|
|
13212
|
+
};
|
|
13213
|
+
export type InsightsNextBestTasksBySprintArgs = {
|
|
13214
|
+
sprintAri: Scalars['ID']['input'];
|
|
13215
|
+
};
|
|
13216
|
+
export type InsightsBuildDetails = {
|
|
13217
|
+
__typename?: 'InsightsBuildDetails';
|
|
13218
|
+
buildNumber?: Maybe<Scalars['Int']['output']>;
|
|
13219
|
+
issueId?: Maybe<Scalars['String']['output']>;
|
|
13220
|
+
issueKey?: Maybe<Scalars['String']['output']>;
|
|
13221
|
+
issueName?: Maybe<Scalars['String']['output']>;
|
|
13222
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
13223
|
+
numberOfFailedBuilds?: Maybe<Scalars['Int']['output']>;
|
|
13224
|
+
};
|
|
13225
|
+
export type InsightsDeploymentDetails = {
|
|
13226
|
+
__typename?: 'InsightsDeploymentDetails';
|
|
13227
|
+
environmentNames?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
13228
|
+
environmentType?: Maybe<InsightsEnvironmentType>;
|
|
13229
|
+
issueId?: Maybe<Scalars['String']['output']>;
|
|
13230
|
+
issueKey?: Maybe<Scalars['String']['output']>;
|
|
13231
|
+
issueName?: Maybe<Scalars['String']['output']>;
|
|
13232
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
13233
|
+
numberOfFailedDeployments?: Maybe<Scalars['Int']['output']>;
|
|
13234
|
+
pipelineName?: Maybe<Scalars['String']['output']>;
|
|
13235
|
+
};
|
|
13236
|
+
export declare enum InsightsEnvironmentType {
|
|
13237
|
+
Development = "DEVELOPMENT",
|
|
13238
|
+
Production = "PRODUCTION",
|
|
13239
|
+
Staging = "STAGING",
|
|
13240
|
+
Testing = "TESTING",
|
|
13241
|
+
Unmapped = "UNMAPPED"
|
|
13242
|
+
}
|
|
13243
|
+
export type InsightsNextBestTask = {
|
|
13244
|
+
__typename?: 'InsightsNextBestTask';
|
|
13245
|
+
details?: Maybe<InsightsNextBestTaskDetails>;
|
|
13246
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
13247
|
+
task?: Maybe<InsightsTaskType>;
|
|
13248
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
13249
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
13250
|
+
};
|
|
13251
|
+
export type InsightsNextBestTaskDetails = InsightsBuildDetails | InsightsDeploymentDetails | InsightsPullRequestDetails | InsightsPullRequestNeedsWorkDetails;
|
|
13252
|
+
export type InsightsPullRequestDetails = {
|
|
13253
|
+
__typename?: 'InsightsPullRequestDetails';
|
|
13254
|
+
approvalsCount?: Maybe<Scalars['Int']['output']>;
|
|
13255
|
+
commentCount?: Maybe<Scalars['Int']['output']>;
|
|
13256
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
13257
|
+
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
13258
|
+
};
|
|
13259
|
+
export type InsightsPullRequestNeedsWorkDetails = {
|
|
13260
|
+
__typename?: 'InsightsPullRequestNeedsWorkDetails';
|
|
13261
|
+
commentCount?: Maybe<Scalars['Int']['output']>;
|
|
13262
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
13263
|
+
needsWorkCount?: Maybe<Scalars['Int']['output']>;
|
|
13264
|
+
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
13265
|
+
};
|
|
13266
|
+
export declare enum InsightsTaskType {
|
|
13267
|
+
BuildFailed = "BUILD_FAILED",
|
|
13268
|
+
DeploymentFailed = "DEPLOYMENT_FAILED",
|
|
13269
|
+
PrNeedsWork = "PR_NEEDS_WORK",
|
|
13270
|
+
PrReview = "PR_REVIEW"
|
|
13271
|
+
}
|
|
13185
13272
|
export type InstallationContextWithLogAccess = {
|
|
13186
13273
|
__typename?: 'InstallationContextWithLogAccess';
|
|
13187
13274
|
installationContext: Scalars['ID']['output'];
|
|
@@ -14967,6 +15054,14 @@ export type JiraDefaultGrantTypeValue = Node & {
|
|
|
14967
15054
|
id: Scalars['ID']['output'];
|
|
14968
15055
|
name: Scalars['String']['output'];
|
|
14969
15056
|
};
|
|
15057
|
+
export type JiraDeleteProjectNotificationPreferencesInput = {
|
|
15058
|
+
projectId: Scalars['ID']['input'];
|
|
15059
|
+
};
|
|
15060
|
+
export type JiraDeleteProjectNotificationPreferencesPayload = Payload & {
|
|
15061
|
+
__typename?: 'JiraDeleteProjectNotificationPreferencesPayload';
|
|
15062
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15063
|
+
success: Scalars['Boolean']['output'];
|
|
15064
|
+
};
|
|
14970
15065
|
export type JiraDeleteShortcutInput = {
|
|
14971
15066
|
projectId: Scalars['ID']['input'];
|
|
14972
15067
|
shortcutId: Scalars['ID']['input'];
|
|
@@ -15917,6 +16012,14 @@ export type JiraIssueConnection = {
|
|
|
15917
16012
|
export type JiraIssueConnectionPageCursorsArgs = {
|
|
15918
16013
|
maxCursors: Scalars['Int']['input'];
|
|
15919
16014
|
};
|
|
16015
|
+
export type JiraIssueCreatedStreamHubPayload = {
|
|
16016
|
+
__typename?: 'JiraIssueCreatedStreamHubPayload';
|
|
16017
|
+
resource?: Maybe<Scalars['ID']['output']>;
|
|
16018
|
+
};
|
|
16019
|
+
export type JiraIssueDeletedStreamHubPayload = {
|
|
16020
|
+
__typename?: 'JiraIssueDeletedStreamHubPayload';
|
|
16021
|
+
resource?: Maybe<Scalars['ID']['output']>;
|
|
16022
|
+
};
|
|
15920
16023
|
export type JiraIssueDeploymentEnvironment = {
|
|
15921
16024
|
__typename?: 'JiraIssueDeploymentEnvironment';
|
|
15922
16025
|
status?: Maybe<JiraIssueDeploymentEnvironmentState>;
|
|
@@ -16540,11 +16643,6 @@ export type JiraIssueSearchViewFieldSetsArgs = {
|
|
|
16540
16643
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16541
16644
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
16542
16645
|
};
|
|
16543
|
-
export declare enum JiraIssueSearchViewContext {
|
|
16544
|
-
Nin = "NIN",
|
|
16545
|
-
NinWithFallback = "NIN_WITH_FALLBACK",
|
|
16546
|
-
ShadowRequest = "SHADOW_REQUEST"
|
|
16547
|
-
}
|
|
16548
16646
|
export type JiraIssueSearchViewPayload = Payload & {
|
|
16549
16647
|
__typename?: 'JiraIssueSearchViewPayload';
|
|
16550
16648
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -16634,6 +16732,10 @@ export type JiraIssueTypeInput = {
|
|
|
16634
16732
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
16635
16733
|
issueTypeId: Scalars['ID']['input'];
|
|
16636
16734
|
};
|
|
16735
|
+
export type JiraIssueUpdatedStreamHubPayload = {
|
|
16736
|
+
__typename?: 'JiraIssueUpdatedStreamHubPayload';
|
|
16737
|
+
resource?: Maybe<Scalars['ID']['output']>;
|
|
16738
|
+
};
|
|
16637
16739
|
export declare enum JiraIssueViewActivityFeedSortOrder {
|
|
16638
16740
|
NewestFirst = "NEWEST_FIRST",
|
|
16639
16741
|
OldestFirst = "OLDEST_FIRST"
|
|
@@ -17467,6 +17569,7 @@ export type JiraMutation = {
|
|
|
17467
17569
|
deleteGlobalPermissionGrant?: Maybe<JiraGlobalPermissionDeleteGroupGrantPayload>;
|
|
17468
17570
|
deleteIssueNavigatorJQLHistory?: Maybe<JiraIssueNavigatorJqlHistoryDeletePayload>;
|
|
17469
17571
|
deleteJiraVersionApprover?: Maybe<JiraVersionDeleteApproverPayload>;
|
|
17572
|
+
deleteProjectNotificationPreferences?: Maybe<JiraDeleteProjectNotificationPreferencesPayload>;
|
|
17470
17573
|
deleteProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
17471
17574
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
17472
17575
|
grantGlobalPermission?: Maybe<JiraGlobalPermissionAddGroupGrantPayload>;
|
|
@@ -17480,6 +17583,7 @@ export type JiraMutation = {
|
|
|
17480
17583
|
removePostIncidentReviewLink?: Maybe<JiraRemovePostIncidentReviewLinkMutationPayload>;
|
|
17481
17584
|
removeRelatedWorkFromVersion?: Maybe<JiraRemoveRelatedWorkFromVersionPayload>;
|
|
17482
17585
|
replaceIssueSearchViewFieldSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
17586
|
+
resetProjectNotificationPreferences?: Maybe<JiraResetProjectNotificationPreferencesPayload>;
|
|
17483
17587
|
saveVersionDetailsCollapsedUis?: Maybe<JiraVersionDetailsCollapsedUisPayload>;
|
|
17484
17588
|
saveVersionIssueTableColumnHiddenState?: Maybe<JiraVersionIssueTableColumnHiddenStatePayload>;
|
|
17485
17589
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
@@ -17509,6 +17613,7 @@ export type JiraMutation = {
|
|
|
17509
17613
|
updateParentField?: Maybe<JiraParentFieldPayload>;
|
|
17510
17614
|
updatePriorityField?: Maybe<JiraPriorityFieldPayload>;
|
|
17511
17615
|
updateProjectField?: Maybe<JiraProjectFieldPayload>;
|
|
17616
|
+
updateProjectNotificationPreferences?: Maybe<JiraUpdateProjectNotificationPreferencesPayload>;
|
|
17512
17617
|
updateProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
17513
17618
|
updateRadioSelectField?: Maybe<JiraRadioSelectFieldPayload>;
|
|
17514
17619
|
updateReleaseNotesConfiguration?: Maybe<JiraUpdateReleaseNotesConfigurationPayload>;
|
|
@@ -17585,6 +17690,10 @@ export type JiraMutationDeleteIssueNavigatorJqlHistoryArgs = {
|
|
|
17585
17690
|
export type JiraMutationDeleteJiraVersionApproverArgs = {
|
|
17586
17691
|
id: Scalars['ID']['input'];
|
|
17587
17692
|
};
|
|
17693
|
+
export type JiraMutationDeleteProjectNotificationPreferencesArgs = {
|
|
17694
|
+
cloudId: Scalars['ID']['input'];
|
|
17695
|
+
input: JiraDeleteProjectNotificationPreferencesInput;
|
|
17696
|
+
};
|
|
17588
17697
|
export type JiraMutationDeleteProjectShortcutArgs = {
|
|
17589
17698
|
input: JiraDeleteShortcutInput;
|
|
17590
17699
|
};
|
|
@@ -17620,6 +17729,10 @@ export type JiraMutationReplaceIssueSearchViewFieldSetsArgs = {
|
|
|
17620
17729
|
id: Scalars['ID']['input'];
|
|
17621
17730
|
input: JiraReplaceIssueSearchViewFieldSetsInput;
|
|
17622
17731
|
};
|
|
17732
|
+
export type JiraMutationResetProjectNotificationPreferencesArgs = {
|
|
17733
|
+
cloudId: Scalars['ID']['input'];
|
|
17734
|
+
input: JiraResetProjectNotificationPreferencesInput;
|
|
17735
|
+
};
|
|
17623
17736
|
export type JiraMutationSaveVersionDetailsCollapsedUisArgs = {
|
|
17624
17737
|
input: JiraVersionDetailsCollapsedUisInput;
|
|
17625
17738
|
};
|
|
@@ -17713,6 +17826,10 @@ export type JiraMutationUpdatePriorityFieldArgs = {
|
|
|
17713
17826
|
export type JiraMutationUpdateProjectFieldArgs = {
|
|
17714
17827
|
input: JiraUpdateProjectFieldInput;
|
|
17715
17828
|
};
|
|
17829
|
+
export type JiraMutationUpdateProjectNotificationPreferencesArgs = {
|
|
17830
|
+
cloudId: Scalars['ID']['input'];
|
|
17831
|
+
input: JiraUpdateProjectNotificationPreferencesInput;
|
|
17832
|
+
};
|
|
17716
17833
|
export type JiraMutationUpdateProjectShortcutArgs = {
|
|
17717
17834
|
input: JiraUpdateShortcutInput;
|
|
17718
17835
|
};
|
|
@@ -17834,6 +17951,17 @@ export type JiraNotificationPreferences = {
|
|
|
17834
17951
|
issueMentioned?: Maybe<JiraNotificationPreference>;
|
|
17835
17952
|
issueUpdated?: Maybe<JiraNotificationPreference>;
|
|
17836
17953
|
};
|
|
17954
|
+
export type JiraNotificationProjectPreferenceConnection = HasPageInfo & HasTotal & {
|
|
17955
|
+
__typename?: 'JiraNotificationProjectPreferenceConnection';
|
|
17956
|
+
edges?: Maybe<Array<Maybe<JiraProjectNotificationPreferenceEdge>>>;
|
|
17957
|
+
pageInfo: PageInfo;
|
|
17958
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
17959
|
+
};
|
|
17960
|
+
export type JiraNotificationProjectPreferences = {
|
|
17961
|
+
__typename?: 'JiraNotificationProjectPreferences';
|
|
17962
|
+
preferences?: Maybe<JiraNotificationPreferences>;
|
|
17963
|
+
project?: Maybe<JiraProject>;
|
|
17964
|
+
};
|
|
17837
17965
|
export declare enum JiraNotificationType {
|
|
17838
17966
|
CommentCreated = "COMMENT_CREATED",
|
|
17839
17967
|
CommentDeleted = "COMMENT_DELETED",
|
|
@@ -18464,6 +18592,8 @@ export type JiraProject = Node & {
|
|
|
18464
18592
|
devOpsServiceRelationships?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
18465
18593
|
devOpsToolRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
18466
18594
|
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
18595
|
+
hasRelationshipFrom?: Maybe<Scalars['Boolean']['output']>;
|
|
18596
|
+
hasRelationshipTo?: Maybe<Scalars['Boolean']['output']>;
|
|
18467
18597
|
id: Scalars['ID']['output'];
|
|
18468
18598
|
intentTemplates?: Maybe<VirtualAgentIntentTemplatesConnection>;
|
|
18469
18599
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -18521,6 +18651,12 @@ export type JiraProjectDevOpsToolRelationshipsArgs = {
|
|
|
18521
18651
|
filter?: InputMaybe<JiraProjectAndDevOpsToolRelationshipFilter>;
|
|
18522
18652
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
18523
18653
|
};
|
|
18654
|
+
export type JiraProjectHasRelationshipFromArgs = {
|
|
18655
|
+
type: Scalars['ID']['input'];
|
|
18656
|
+
};
|
|
18657
|
+
export type JiraProjectHasRelationshipToArgs = {
|
|
18658
|
+
type: Scalars['ID']['input'];
|
|
18659
|
+
};
|
|
18524
18660
|
export type JiraProjectIntentTemplatesArgs = {
|
|
18525
18661
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
18526
18662
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -18860,6 +18996,11 @@ export type JiraProjectListViewTemplateItem = {
|
|
|
18860
18996
|
title?: Maybe<Scalars['String']['output']>;
|
|
18861
18997
|
};
|
|
18862
18998
|
export type JiraProjectNavigationMetadata = JiraServiceManagementProjectNavigationMetadata | JiraSoftwareProjectNavigationMetadata | JiraWorkManagementProjectNavigationMetadata;
|
|
18999
|
+
export type JiraProjectNotificationPreferenceEdge = {
|
|
19000
|
+
__typename?: 'JiraProjectNotificationPreferenceEdge';
|
|
19001
|
+
cursor: Scalars['String']['output'];
|
|
19002
|
+
node?: Maybe<JiraNotificationProjectPreferences>;
|
|
19003
|
+
};
|
|
18863
19004
|
export type JiraProjectOptions = {
|
|
18864
19005
|
projectType?: InputMaybe<JiraProjectType>;
|
|
18865
19006
|
};
|
|
@@ -18974,6 +19115,7 @@ export type JiraQuery = {
|
|
|
18974
19115
|
allJiraProjectTypes?: Maybe<JiraProjectTypeDetailsConnection>;
|
|
18975
19116
|
allJiraProjects?: Maybe<JiraProjectConnection>;
|
|
18976
19117
|
allJiraUserBroadcastMessages?: Maybe<JiraUserBroadcastMessageConnection>;
|
|
19118
|
+
allNotificationProjectPreferences?: Maybe<JiraNotificationProjectPreferenceConnection>;
|
|
18977
19119
|
announcementBanner?: Maybe<JiraAnnouncementBanner>;
|
|
18978
19120
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
18979
19121
|
booleanUserProperty?: Maybe<JiraEntityPropertyBoolean>;
|
|
@@ -19040,6 +19182,7 @@ export type JiraQuery = {
|
|
|
19040
19182
|
lockedIssueTypeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
19041
19183
|
naturalLanguageToJql?: Maybe<JiraJqlFromNaturalLanguage>;
|
|
19042
19184
|
notificationGlobalPreference?: Maybe<JiraNotificationGlobalPreference>;
|
|
19185
|
+
notificationProjectPreferences?: Maybe<Array<Maybe<JiraNotificationProjectPreferences>>>;
|
|
19043
19186
|
permission?: Maybe<JiraPermission>;
|
|
19044
19187
|
permissionSchemeGrants?: Maybe<JiraPermissionGrantValueConnection>;
|
|
19045
19188
|
postIncidentReviewLinksByIds?: Maybe<Array<Maybe<JiraPostIncidentReviewLink>>>;
|
|
@@ -19101,6 +19244,13 @@ export type JiraQueryAllJiraUserBroadcastMessagesArgs = {
|
|
|
19101
19244
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
19102
19245
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
19103
19246
|
};
|
|
19247
|
+
export type JiraQueryAllNotificationProjectPreferencesArgs = {
|
|
19248
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
19249
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
19250
|
+
cloudId: Scalars['ID']['input'];
|
|
19251
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
19252
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
19253
|
+
};
|
|
19104
19254
|
export type JiraQueryAnnouncementBannerArgs = {
|
|
19105
19255
|
cloudId: Scalars['ID']['input'];
|
|
19106
19256
|
};
|
|
@@ -19184,6 +19334,7 @@ export type JiraQueryFiltersArgs = {
|
|
|
19184
19334
|
export type JiraQueryFirst100JsmWorkflowTemplatesArgs = {
|
|
19185
19335
|
cloudId: Scalars['ID']['input'];
|
|
19186
19336
|
keywords?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
19337
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
19187
19338
|
projectStyle?: InputMaybe<JiraProjectStyle>;
|
|
19188
19339
|
tags?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
19189
19340
|
templateId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -19390,6 +19541,10 @@ export type JiraQueryNaturalLanguageToJqlArgs = {
|
|
|
19390
19541
|
export type JiraQueryNotificationGlobalPreferenceArgs = {
|
|
19391
19542
|
cloudId: Scalars['ID']['input'];
|
|
19392
19543
|
};
|
|
19544
|
+
export type JiraQueryNotificationProjectPreferencesArgs = {
|
|
19545
|
+
cloudId: Scalars['ID']['input'];
|
|
19546
|
+
projectIds: Array<Scalars['ID']['input']>;
|
|
19547
|
+
};
|
|
19393
19548
|
export type JiraQueryPermissionArgs = {
|
|
19394
19549
|
cloudId: Scalars['ID']['input'];
|
|
19395
19550
|
type: JiraPermissionType;
|
|
@@ -19733,6 +19888,15 @@ export type JiraReplaceIssueSearchViewFieldSetsInput = {
|
|
|
19733
19888
|
inclusive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
19734
19889
|
nodes: Array<Scalars['String']['input']>;
|
|
19735
19890
|
};
|
|
19891
|
+
export type JiraResetProjectNotificationPreferencesInput = {
|
|
19892
|
+
projectId: Scalars['ID']['input'];
|
|
19893
|
+
};
|
|
19894
|
+
export type JiraResetProjectNotificationPreferencesPayload = Payload & {
|
|
19895
|
+
__typename?: 'JiraResetProjectNotificationPreferencesPayload';
|
|
19896
|
+
errors?: Maybe<Array<MutationError>>;
|
|
19897
|
+
preferences?: Maybe<JiraNotificationPreferences>;
|
|
19898
|
+
success: Scalars['Boolean']['output'];
|
|
19899
|
+
};
|
|
19736
19900
|
export type JiraResolution = Node & {
|
|
19737
19901
|
__typename?: 'JiraResolution';
|
|
19738
19902
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -21232,10 +21396,25 @@ export type JiraSubmitBulkOperationProgress = Node & {
|
|
|
21232
21396
|
export type JiraSubscription = {
|
|
21233
21397
|
__typename?: 'JiraSubscription';
|
|
21234
21398
|
onJwmFieldMutation?: Maybe<JiraJwmField>;
|
|
21399
|
+
onJwmIssueCreatedByProject?: Maybe<JiraIssueCreatedStreamHubPayload>;
|
|
21400
|
+
onJwmIssueDeletedByProject?: Maybe<JiraIssueDeletedStreamHubPayload>;
|
|
21401
|
+
onJwmIssueUpdatedByProject?: Maybe<JiraIssueUpdatedStreamHubPayload>;
|
|
21235
21402
|
};
|
|
21236
21403
|
export type JiraSubscriptionOnJwmFieldMutationArgs = {
|
|
21237
21404
|
siteId: Scalars['ID']['input'];
|
|
21238
21405
|
};
|
|
21406
|
+
export type JiraSubscriptionOnJwmIssueCreatedByProjectArgs = {
|
|
21407
|
+
cloudId: Scalars['ID']['input'];
|
|
21408
|
+
projectId: Scalars['String']['input'];
|
|
21409
|
+
};
|
|
21410
|
+
export type JiraSubscriptionOnJwmIssueDeletedByProjectArgs = {
|
|
21411
|
+
cloudId: Scalars['ID']['input'];
|
|
21412
|
+
projectId: Scalars['String']['input'];
|
|
21413
|
+
};
|
|
21414
|
+
export type JiraSubscriptionOnJwmIssueUpdatedByProjectArgs = {
|
|
21415
|
+
cloudId: Scalars['ID']['input'];
|
|
21416
|
+
projectId: Scalars['String']['input'];
|
|
21417
|
+
};
|
|
21239
21418
|
export type JiraSubtasksField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
|
|
21240
21419
|
__typename?: 'JiraSubtasksField';
|
|
21241
21420
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -21573,6 +21752,16 @@ export type JiraUpdateProjectFieldInput = {
|
|
|
21573
21752
|
id: Scalars['ID']['input'];
|
|
21574
21753
|
operation: JiraProjectFieldOperationInput;
|
|
21575
21754
|
};
|
|
21755
|
+
export type JiraUpdateProjectNotificationPreferencesInput = {
|
|
21756
|
+
preferences: Array<JiraNotificationPreferenceInput>;
|
|
21757
|
+
projectId: Scalars['ID']['input'];
|
|
21758
|
+
};
|
|
21759
|
+
export type JiraUpdateProjectNotificationPreferencesPayload = Payload & {
|
|
21760
|
+
__typename?: 'JiraUpdateProjectNotificationPreferencesPayload';
|
|
21761
|
+
errors?: Maybe<Array<MutationError>>;
|
|
21762
|
+
preferences?: Maybe<JiraNotificationPreferences>;
|
|
21763
|
+
success: Scalars['Boolean']['output'];
|
|
21764
|
+
};
|
|
21576
21765
|
export type JiraUpdateRadioSelectFieldInput = {
|
|
21577
21766
|
id: Scalars['ID']['input'];
|
|
21578
21767
|
operation: JiraRadioSelectFieldOperationInput;
|
|
@@ -25855,6 +26044,7 @@ export type Query = {
|
|
|
25855
26044
|
helpExternalResource?: Maybe<HelpExternalResourceQueryApi>;
|
|
25856
26045
|
helpLayout?: Maybe<HelpLayoutQueryApi>;
|
|
25857
26046
|
helpObjectStore?: Maybe<HelpObjectStoreQueryApi>;
|
|
26047
|
+
insights?: Maybe<Insights>;
|
|
25858
26048
|
installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
|
|
25859
26049
|
isSainSearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
25860
26050
|
jira?: Maybe<JiraQuery>;
|