@forge/cli-shared 3.3.0-next.0 → 3.3.0
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 +18 -0
- package/out/graphql/graphql-types.d.ts +431 -14
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +58 -5
- package/package.json +2 -2
|
@@ -286,6 +286,16 @@ export declare type ActivityUser = {
|
|
|
286
286
|
__typename?: 'ActivityUser';
|
|
287
287
|
accountId: Scalars['ID'];
|
|
288
288
|
};
|
|
289
|
+
export declare type AddAppContributorInput = {
|
|
290
|
+
appId: Scalars['ID'];
|
|
291
|
+
newContributorEmail: Scalars['String'];
|
|
292
|
+
role: AppContributorRole;
|
|
293
|
+
};
|
|
294
|
+
export declare type AddAppContributorResponsePayload = Payload & {
|
|
295
|
+
__typename?: 'AddAppContributorResponsePayload';
|
|
296
|
+
success: Scalars['Boolean'];
|
|
297
|
+
errors?: Maybe<Array<MutationError>>;
|
|
298
|
+
};
|
|
289
299
|
export declare type AddCompassComponentLabelsInput = {
|
|
290
300
|
componentId: Scalars['ID'];
|
|
291
301
|
labelNames: Array<Scalars['String']>;
|
|
@@ -325,7 +335,8 @@ export declare enum ApiGroup {
|
|
|
325
335
|
Help = "HELP",
|
|
326
336
|
VirtualAgent = "VIRTUAL_AGENT",
|
|
327
337
|
CollaborationGraph = "COLLABORATION_GRAPH",
|
|
328
|
-
DevopsThirdParty = "DEVOPS_THIRD_PARTY"
|
|
338
|
+
DevopsThirdParty = "DEVOPS_THIRD_PARTY",
|
|
339
|
+
CloudAdmin = "CLOUD_ADMIN"
|
|
329
340
|
}
|
|
330
341
|
export declare type App = {
|
|
331
342
|
__typename?: 'App';
|
|
@@ -361,6 +372,9 @@ export declare type AppConnection = {
|
|
|
361
372
|
pageInfo: PageInfo;
|
|
362
373
|
totalCount?: Maybe<Scalars['Int']>;
|
|
363
374
|
};
|
|
375
|
+
export declare enum AppContributorRole {
|
|
376
|
+
Admin = "ADMIN"
|
|
377
|
+
}
|
|
364
378
|
export declare type AppDeployment = {
|
|
365
379
|
__typename?: 'AppDeployment';
|
|
366
380
|
id: Scalars['ID'];
|
|
@@ -439,6 +453,7 @@ export declare type AppEnvironment = {
|
|
|
439
453
|
scopes?: Maybe<Array<Scalars['String']>>;
|
|
440
454
|
versions?: Maybe<AppEnvironmentVersionConnection>;
|
|
441
455
|
oauthClient: AtlassianOAuthClient;
|
|
456
|
+
app?: Maybe<App>;
|
|
442
457
|
variables?: Maybe<Array<AppEnvironmentVariable>>;
|
|
443
458
|
installations?: Maybe<Array<AppInstallation>>;
|
|
444
459
|
deployments?: Maybe<Array<AppDeployment>>;
|
|
@@ -905,9 +920,15 @@ export declare type ArchivePolarisInsightsPayload = Payload & {
|
|
|
905
920
|
};
|
|
906
921
|
export declare type AriGraph = {
|
|
907
922
|
__typename?: 'AriGraph';
|
|
923
|
+
hasRelationship?: Maybe<Scalars['Boolean']>;
|
|
908
924
|
relationship?: Maybe<AriGraphRelationship>;
|
|
909
925
|
relationships?: Maybe<AriGraphRelationshipConnection>;
|
|
910
926
|
};
|
|
927
|
+
export declare type AriGraphHasRelationshipArgs = {
|
|
928
|
+
from?: Maybe<Scalars['ID']>;
|
|
929
|
+
type: Scalars['ID'];
|
|
930
|
+
to?: Maybe<Scalars['ID']>;
|
|
931
|
+
};
|
|
911
932
|
export declare type AriGraphRelationshipArgs = {
|
|
912
933
|
from: Scalars['ID'];
|
|
913
934
|
type: Scalars['ID'];
|
|
@@ -985,7 +1006,7 @@ export declare type AriGraphRelationshipNode = {
|
|
|
985
1006
|
id: Scalars['ID'];
|
|
986
1007
|
data?: Maybe<AriGraphRelationshipNodeData>;
|
|
987
1008
|
};
|
|
988
|
-
export declare type AriGraphRelationshipNodeData = DeploymentSummary | ConfluencePage | ConfluenceSpace | ThirdPartySecurityWorkspace | ThirdPartySecurityContainer | DevOpsPullRequestDetails | JiraIssue;
|
|
1009
|
+
export declare type AriGraphRelationshipNodeData = DeploymentSummary | ConfluencePage | ConfluenceSpace | ThirdPartySecurityWorkspace | ThirdPartySecurityContainer | DevOpsPullRequestDetails | DevOpsSecurityVulnerabilityDetails | JiraIssue;
|
|
989
1010
|
export declare type AriGraphRelationshipsErrorReference = {
|
|
990
1011
|
__typename?: 'AriGraphRelationshipsErrorReference';
|
|
991
1012
|
from?: Maybe<Scalars['ID']>;
|
|
@@ -1130,6 +1151,8 @@ export declare type AuditsPageInfo = {
|
|
|
1130
1151
|
__typename?: 'AuditsPageInfo';
|
|
1131
1152
|
hasNextPage: Scalars['Boolean'];
|
|
1132
1153
|
hasPreviousPage: Scalars['Boolean'];
|
|
1154
|
+
startCursor?: Maybe<Scalars['String']>;
|
|
1155
|
+
endCursor?: Maybe<Scalars['String']>;
|
|
1133
1156
|
};
|
|
1134
1157
|
export declare type AuthToken = {
|
|
1135
1158
|
__typename?: 'AuthToken';
|
|
@@ -2383,6 +2406,8 @@ export declare type CompassCreateMetricSourceInput = {
|
|
|
2383
2406
|
externalMetricSourceId: Scalars['ID'];
|
|
2384
2407
|
url?: Maybe<Scalars['String']>;
|
|
2385
2408
|
derived?: Maybe<Scalars['Boolean']>;
|
|
2409
|
+
externalConfiguration?: Maybe<CompassExternalMetricSourceConfigurationInput>;
|
|
2410
|
+
forgeAppId?: Maybe<Scalars['ID']>;
|
|
2386
2411
|
};
|
|
2387
2412
|
export declare type CompassCreateMetricSourcePayload = Payload & {
|
|
2388
2413
|
__typename?: 'CompassCreateMetricSourcePayload';
|
|
@@ -2746,6 +2771,10 @@ export declare type CompassExternalAliasInput = {
|
|
|
2746
2771
|
externalId: Scalars['ID'];
|
|
2747
2772
|
externalSource?: Maybe<Scalars['ID']>;
|
|
2748
2773
|
};
|
|
2774
|
+
export declare type CompassExternalMetricSourceConfigurationInput = {
|
|
2775
|
+
slo?: Maybe<CompassSloMetricSourceConfigurationInput>;
|
|
2776
|
+
plain?: Maybe<CompassPlainMetricSourceConfigurationInput>;
|
|
2777
|
+
};
|
|
2749
2778
|
export declare type CompassField = {
|
|
2750
2779
|
definition?: Maybe<CompassFieldDefinition>;
|
|
2751
2780
|
};
|
|
@@ -3079,6 +3108,9 @@ export declare type CompassMetricValuesTimeseries = {
|
|
|
3079
3108
|
values?: Maybe<Array<Maybe<CompassMetricValue>>>;
|
|
3080
3109
|
};
|
|
3081
3110
|
export declare type CompassMetricValuesTimeseriesResult = CompassMetricValuesTimeseries | QueryError;
|
|
3111
|
+
export declare type CompassPlainMetricSourceConfigurationInput = {
|
|
3112
|
+
query: Scalars['String'];
|
|
3113
|
+
};
|
|
3082
3114
|
export declare type CompassPushEvent = CompassEvent & {
|
|
3083
3115
|
__typename?: 'CompassPushEvent';
|
|
3084
3116
|
eventType: CompassEventType;
|
|
@@ -3339,6 +3371,10 @@ export declare type CompassSearchTeamsInput = {
|
|
|
3339
3371
|
term?: Maybe<Scalars['String']>;
|
|
3340
3372
|
labels?: Maybe<Array<Scalars['String']>>;
|
|
3341
3373
|
};
|
|
3374
|
+
export declare type CompassSloMetricSourceConfigurationInput = {
|
|
3375
|
+
goodQuery: Scalars['String'];
|
|
3376
|
+
badQuery: Scalars['String'];
|
|
3377
|
+
};
|
|
3342
3378
|
export declare type CompassStarredComponentConnection = {
|
|
3343
3379
|
__typename?: 'CompassStarredComponentConnection';
|
|
3344
3380
|
nodes?: Maybe<Array<CompassComponent>>;
|
|
@@ -4147,6 +4183,7 @@ export declare enum ConfluenceOperationTarget {
|
|
|
4147
4183
|
}
|
|
4148
4184
|
export declare type ConfluencePage = {
|
|
4149
4185
|
__typename?: 'ConfluencePage';
|
|
4186
|
+
ancestors?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
4150
4187
|
author?: Maybe<ConfluenceUserInfo>;
|
|
4151
4188
|
body?: Maybe<ConfluenceBodies>;
|
|
4152
4189
|
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
@@ -4830,6 +4867,15 @@ export declare type CreateAppTunnelsInput = {
|
|
|
4830
4867
|
tunnelDefinitions: TunnelDefinitionsInput;
|
|
4831
4868
|
force?: Maybe<Scalars['Boolean']>;
|
|
4832
4869
|
};
|
|
4870
|
+
export declare type CreateCardsOutput = {
|
|
4871
|
+
__typename?: 'CreateCardsOutput';
|
|
4872
|
+
boardScope?: Maybe<BoardScope>;
|
|
4873
|
+
newCards?: Maybe<Array<Maybe<SoftwareCard>>>;
|
|
4874
|
+
statusCode: Scalars['Int'];
|
|
4875
|
+
success: Scalars['Boolean'];
|
|
4876
|
+
message: Scalars['String'];
|
|
4877
|
+
clientMutationId?: Maybe<Scalars['ID']>;
|
|
4878
|
+
};
|
|
4833
4879
|
export declare type CreateColumnInput = {
|
|
4834
4880
|
boardId: Scalars['ID'];
|
|
4835
4881
|
columnName: Scalars['String'];
|
|
@@ -5662,7 +5708,6 @@ export declare type DevOps = {
|
|
|
5662
5708
|
__typename?: 'DevOps';
|
|
5663
5709
|
entitiesByAssociations?: Maybe<DevOpsEntities>;
|
|
5664
5710
|
summarisedDeployments?: Maybe<Array<Maybe<DevOpsSummarisedDeployments>>>;
|
|
5665
|
-
pullRequestEntityDetails?: Maybe<Array<Maybe<DevOpsPullRequestDetails>>>;
|
|
5666
5711
|
summarisedEntities?: Maybe<Array<Maybe<DevOpsSummarisedEntities>>>;
|
|
5667
5712
|
dataDepotProviders?: Maybe<DevOpsDataDepotProviders>;
|
|
5668
5713
|
ariGraph?: Maybe<AriGraph>;
|
|
@@ -5674,9 +5719,6 @@ export declare type DevOpsEntitiesByAssociationsArgs = {
|
|
|
5674
5719
|
export declare type DevOpsSummarisedDeploymentsArgs = {
|
|
5675
5720
|
ids: Array<Scalars['ID']>;
|
|
5676
5721
|
};
|
|
5677
|
-
export declare type DevOpsPullRequestEntityDetailsArgs = {
|
|
5678
|
-
ids: Array<Scalars['ID']>;
|
|
5679
|
-
};
|
|
5680
5722
|
export declare type DevOpsSummarisedEntitiesArgs = {
|
|
5681
5723
|
ids: Array<Scalars['ID']>;
|
|
5682
5724
|
};
|
|
@@ -5726,6 +5768,12 @@ export declare type DevOpsDataDepotSecurityProvider = DevOpsDataDepotProvider &
|
|
|
5726
5768
|
logoUrl?: Maybe<Scalars['URL']>;
|
|
5727
5769
|
documentationUrl?: Maybe<Scalars['URL']>;
|
|
5728
5770
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
5771
|
+
linkedSecurityWorkspaces?: Maybe<AriGraphRelationshipConnection>;
|
|
5772
|
+
};
|
|
5773
|
+
export declare type DevOpsDataDepotSecurityProviderLinkedSecurityWorkspacesArgs = {
|
|
5774
|
+
first?: Maybe<Scalars['Int']>;
|
|
5775
|
+
after?: Maybe<Scalars['String']>;
|
|
5776
|
+
type?: Maybe<Scalars['String']>;
|
|
5729
5777
|
};
|
|
5730
5778
|
export declare type DevOpsEntities = {
|
|
5731
5779
|
__typename?: 'DevOpsEntities';
|
|
@@ -6027,6 +6075,8 @@ export declare type DevOpsPullRequestDetails = {
|
|
|
6027
6075
|
repositoryUrl?: Maybe<Scalars['String']>;
|
|
6028
6076
|
title?: Maybe<Scalars['String']>;
|
|
6029
6077
|
commentCount?: Maybe<Scalars['Int']>;
|
|
6078
|
+
sanitizedAuthorId?: Maybe<Scalars['String']>;
|
|
6079
|
+
authorId?: Maybe<Scalars['ID']>;
|
|
6030
6080
|
author?: Maybe<User>;
|
|
6031
6081
|
reviewers?: Maybe<Array<Maybe<DevOpsReviewer>>>;
|
|
6032
6082
|
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
@@ -6059,8 +6109,52 @@ export declare enum DevOpsRepositoryHostingProviderFilter {
|
|
|
6059
6109
|
export declare type DevOpsReviewer = {
|
|
6060
6110
|
__typename?: 'DevOpsReviewer';
|
|
6061
6111
|
approvalStatus?: Maybe<DevOpsPullRequestApprovalStatus>;
|
|
6112
|
+
sanitizedUserId?: Maybe<Scalars['String']>;
|
|
6113
|
+
userId?: Maybe<Scalars['ID']>;
|
|
6062
6114
|
user?: Maybe<User>;
|
|
6063
6115
|
};
|
|
6116
|
+
export declare type DevOpsSecurityVulnerabilityAdditionalInfo = {
|
|
6117
|
+
__typename?: 'DevOpsSecurityVulnerabilityAdditionalInfo';
|
|
6118
|
+
content?: Maybe<Scalars['String']>;
|
|
6119
|
+
url?: Maybe<Scalars['String']>;
|
|
6120
|
+
};
|
|
6121
|
+
export declare type DevOpsSecurityVulnerabilityDetails = {
|
|
6122
|
+
__typename?: 'DevOpsSecurityVulnerabilityDetails';
|
|
6123
|
+
id: Scalars['ID'];
|
|
6124
|
+
title?: Maybe<Scalars['String']>;
|
|
6125
|
+
description?: Maybe<Scalars['String']>;
|
|
6126
|
+
url?: Maybe<Scalars['String']>;
|
|
6127
|
+
severity?: Maybe<DevOpsSecurityVulnerabilitySeverity>;
|
|
6128
|
+
status?: Maybe<DevOpsSecurityVulnerabilityStatus>;
|
|
6129
|
+
identifiers: Array<DevOpsSecurityVulnerabilityIdentifier>;
|
|
6130
|
+
introducedDate?: Maybe<Scalars['DateTime']>;
|
|
6131
|
+
securityContainerId?: Maybe<Scalars['ID']>;
|
|
6132
|
+
additionalInfo?: Maybe<DevOpsSecurityVulnerabilityAdditionalInfo>;
|
|
6133
|
+
linkedJiraIssues?: Maybe<AriGraphRelationshipConnection>;
|
|
6134
|
+
};
|
|
6135
|
+
export declare type DevOpsSecurityVulnerabilityDetailsLinkedJiraIssuesArgs = {
|
|
6136
|
+
first?: Maybe<Scalars['Int']>;
|
|
6137
|
+
after?: Maybe<Scalars['String']>;
|
|
6138
|
+
type?: Maybe<Scalars['String']>;
|
|
6139
|
+
};
|
|
6140
|
+
export declare type DevOpsSecurityVulnerabilityIdentifier = {
|
|
6141
|
+
__typename?: 'DevOpsSecurityVulnerabilityIdentifier';
|
|
6142
|
+
id: Scalars['String'];
|
|
6143
|
+
url?: Maybe<Scalars['String']>;
|
|
6144
|
+
};
|
|
6145
|
+
export declare enum DevOpsSecurityVulnerabilitySeverity {
|
|
6146
|
+
Critical = "CRITICAL",
|
|
6147
|
+
High = "HIGH",
|
|
6148
|
+
Medium = "MEDIUM",
|
|
6149
|
+
Low = "LOW",
|
|
6150
|
+
Unknown = "UNKNOWN"
|
|
6151
|
+
}
|
|
6152
|
+
export declare enum DevOpsSecurityVulnerabilityStatus {
|
|
6153
|
+
Open = "OPEN",
|
|
6154
|
+
Closed = "CLOSED",
|
|
6155
|
+
Ignored = "IGNORED",
|
|
6156
|
+
Unknown = "UNKNOWN"
|
|
6157
|
+
}
|
|
6064
6158
|
export declare type DevOpsService = Node & {
|
|
6065
6159
|
__typename?: 'DevOpsService';
|
|
6066
6160
|
id: Scalars['ID'];
|
|
@@ -6618,6 +6712,7 @@ export declare type DevOpsTools = {
|
|
|
6618
6712
|
__typename?: 'DevOpsTools';
|
|
6619
6713
|
tools?: Maybe<DevOpsToolConnection>;
|
|
6620
6714
|
tool?: Maybe<DevOpsTool>;
|
|
6715
|
+
integration?: Maybe<DevOpsToolIntegration>;
|
|
6621
6716
|
namespace?: Maybe<DevOpsToolNamespace>;
|
|
6622
6717
|
container?: Maybe<DevOpsToolContainer>;
|
|
6623
6718
|
navbarConnectionState?: Maybe<DevOpsToolNavbarConnectionState>;
|
|
@@ -6639,6 +6734,9 @@ export declare type DevOpsToolsToolsArgs = {
|
|
|
6639
6734
|
export declare type DevOpsToolsToolArgs = {
|
|
6640
6735
|
id: Scalars['ID'];
|
|
6641
6736
|
};
|
|
6737
|
+
export declare type DevOpsToolsIntegrationArgs = {
|
|
6738
|
+
id: Scalars['ID'];
|
|
6739
|
+
};
|
|
6642
6740
|
export declare type DevOpsToolsNamespaceArgs = {
|
|
6643
6741
|
id: Scalars['ID'];
|
|
6644
6742
|
};
|
|
@@ -6720,6 +6818,7 @@ export declare type DvcsQueryBitbucketWorkspacesLinkedToSiteArgs = {
|
|
|
6720
6818
|
export declare type EcosystemMutation = {
|
|
6721
6819
|
__typename?: 'EcosystemMutation';
|
|
6722
6820
|
updateAppHostServiceScopes?: Maybe<UpdateAppHostServiceScopesResponsePayload>;
|
|
6821
|
+
addAppContributor?: Maybe<AddAppContributorResponsePayload>;
|
|
6723
6822
|
deleteUserGrant?: Maybe<DeleteUserGrantPayload>;
|
|
6724
6823
|
updateUserInstallationRules?: Maybe<UserInstallationRulesPayload>;
|
|
6725
6824
|
forgeAlerts?: Maybe<ForgeAlertsMutation>;
|
|
@@ -6727,6 +6826,9 @@ export declare type EcosystemMutation = {
|
|
|
6727
6826
|
export declare type EcosystemMutationUpdateAppHostServiceScopesArgs = {
|
|
6728
6827
|
input: UpdateAppHostServiceScopesInput;
|
|
6729
6828
|
};
|
|
6829
|
+
export declare type EcosystemMutationAddAppContributorArgs = {
|
|
6830
|
+
input: AddAppContributorInput;
|
|
6831
|
+
};
|
|
6730
6832
|
export declare type EcosystemMutationDeleteUserGrantArgs = {
|
|
6731
6833
|
input: DeleteUserGrantInput;
|
|
6732
6834
|
};
|
|
@@ -6744,6 +6846,7 @@ export declare type EcosystemQuery = {
|
|
|
6744
6846
|
appInstallationsByContext?: Maybe<AppInstallationByIndexConnection>;
|
|
6745
6847
|
appInstallationsByApp?: Maybe<AppInstallationByIndexConnection>;
|
|
6746
6848
|
fortifiedMetrics?: Maybe<FortifiedMetricsQuery>;
|
|
6849
|
+
appEnvironmentsByOAuthClientIds?: Maybe<Array<AppEnvironment>>;
|
|
6747
6850
|
forgeMetrics?: Maybe<ForgeMetricsQuery>;
|
|
6748
6851
|
forgeAlerts?: Maybe<ForgeAlertsQuery>;
|
|
6749
6852
|
};
|
|
@@ -6776,6 +6879,9 @@ export declare type EcosystemQueryAppInstallationsByAppArgs = {
|
|
|
6776
6879
|
export declare type EcosystemQueryFortifiedMetricsArgs = {
|
|
6777
6880
|
appKey: Scalars['ID'];
|
|
6778
6881
|
};
|
|
6882
|
+
export declare type EcosystemQueryAppEnvironmentsByOAuthClientIdsArgs = {
|
|
6883
|
+
oauthClientIds: Array<Scalars['ID']>;
|
|
6884
|
+
};
|
|
6779
6885
|
export declare type EcosystemQueryForgeMetricsArgs = {
|
|
6780
6886
|
appId: Scalars['ID'];
|
|
6781
6887
|
};
|
|
@@ -8404,7 +8510,8 @@ export declare enum JiraCmdbAttributeType {
|
|
|
8404
8510
|
Group = "GROUP",
|
|
8405
8511
|
Version = "VERSION",
|
|
8406
8512
|
Project = "PROJECT",
|
|
8407
|
-
Status = "STATUS"
|
|
8513
|
+
Status = "STATUS",
|
|
8514
|
+
BitbucketRepo = "BITBUCKET_REPO"
|
|
8408
8515
|
}
|
|
8409
8516
|
export declare type JiraCmdbAvatar = {
|
|
8410
8517
|
__typename?: 'JiraCmdbAvatar';
|
|
@@ -8417,6 +8524,14 @@ export declare type JiraCmdbAvatar = {
|
|
|
8417
8524
|
url288?: Maybe<Scalars['String']>;
|
|
8418
8525
|
mediaClientConfig?: Maybe<JiraCmdbMediaClientConfig>;
|
|
8419
8526
|
};
|
|
8527
|
+
export declare type JiraCmdbBitbucketRepository = {
|
|
8528
|
+
__typename?: 'JiraCmdbBitbucketRepository';
|
|
8529
|
+
uuid?: Maybe<Scalars['String']>;
|
|
8530
|
+
name?: Maybe<Scalars['String']>;
|
|
8531
|
+
url?: Maybe<Scalars['URL']>;
|
|
8532
|
+
avatarUrl?: Maybe<Scalars['URL']>;
|
|
8533
|
+
bitbucketWorkspaceId?: Maybe<Scalars['String']>;
|
|
8534
|
+
};
|
|
8420
8535
|
export declare type JiraCmdbConfigAttributeConnection = {
|
|
8421
8536
|
__typename?: 'JiraCmdbConfigAttributeConnection';
|
|
8422
8537
|
totalCount?: Maybe<Scalars['Int']>;
|
|
@@ -8495,6 +8610,7 @@ export declare type JiraCmdbObjectAttributeValue = {
|
|
|
8495
8610
|
group?: Maybe<JiraGroup>;
|
|
8496
8611
|
status?: Maybe<JiraCmdbStatusType>;
|
|
8497
8612
|
project?: Maybe<JiraProject>;
|
|
8613
|
+
bitbucketRepo?: Maybe<JiraCmdbBitbucketRepository>;
|
|
8498
8614
|
value?: Maybe<Scalars['String']>;
|
|
8499
8615
|
displayValue?: Maybe<Scalars['String']>;
|
|
8500
8616
|
searchValue?: Maybe<Scalars['String']>;
|
|
@@ -8777,6 +8893,11 @@ export declare type JiraCreateReleaseNoteConfluencePagePayload = Payload & {
|
|
|
8777
8893
|
version?: Maybe<JiraVersion>;
|
|
8778
8894
|
relatedWorkV2Edge?: Maybe<JiraVersionRelatedWorkV2Edge>;
|
|
8779
8895
|
};
|
|
8896
|
+
export declare type JiraCreateShortcutInput = {
|
|
8897
|
+
projectId: Scalars['ID'];
|
|
8898
|
+
type: JiraProjectShortcutType;
|
|
8899
|
+
shortcutData: JiraShortcutDataInput;
|
|
8900
|
+
};
|
|
8780
8901
|
export declare type JiraCustomFilter = JiraFilter & Node & {
|
|
8781
8902
|
__typename?: 'JiraCustomFilter';
|
|
8782
8903
|
id: Scalars['ID'];
|
|
@@ -8858,6 +8979,10 @@ export declare type JiraDefaultGrantTypeValue = Node & {
|
|
|
8858
8979
|
id: Scalars['ID'];
|
|
8859
8980
|
name: Scalars['String'];
|
|
8860
8981
|
};
|
|
8982
|
+
export declare type JiraDeleteShortcutInput = {
|
|
8983
|
+
projectId: Scalars['ID'];
|
|
8984
|
+
shortcutId: Scalars['ID'];
|
|
8985
|
+
};
|
|
8861
8986
|
export declare enum JiraDeploymentsFeaturePrecondition {
|
|
8862
8987
|
NotAvailable = "NOT_AVAILABLE",
|
|
8863
8988
|
DeploymentsEmptyState = "DEPLOYMENTS_EMPTY_STATE",
|
|
@@ -9374,6 +9499,7 @@ export declare type JiraHierarchyConfigError = {
|
|
|
9374
9499
|
export declare type JiraHierarchyConfigTask = {
|
|
9375
9500
|
__typename?: 'JiraHierarchyConfigTask';
|
|
9376
9501
|
taskProgress?: Maybe<JiraLongRunningTaskProgress>;
|
|
9502
|
+
issueHierarchyConfig?: Maybe<Array<JiraIssueHierarchyConfigData>>;
|
|
9377
9503
|
errors?: Maybe<Array<JiraHierarchyConfigError>>;
|
|
9378
9504
|
};
|
|
9379
9505
|
export declare enum JiraInstallDeploymentsBannerPrecondition {
|
|
@@ -9681,6 +9807,7 @@ export declare type JiraIssueHierarchyConfigurationMutationInput = {
|
|
|
9681
9807
|
export declare type JiraIssueHierarchyConfigurationMutationResult = {
|
|
9682
9808
|
__typename?: 'JiraIssueHierarchyConfigurationMutationResult';
|
|
9683
9809
|
updateInitiated: Scalars['Boolean'];
|
|
9810
|
+
updateIssuesCount?: Maybe<Scalars['Long']>;
|
|
9684
9811
|
success: Scalars['Boolean'];
|
|
9685
9812
|
errors?: Maybe<Array<JiraHierarchyConfigError>>;
|
|
9686
9813
|
};
|
|
@@ -10802,6 +10929,7 @@ export declare type JiraMutation = {
|
|
|
10802
10929
|
updateNumberField?: Maybe<JiraNumberFieldPayload>;
|
|
10803
10930
|
updateStoryPointEstimateField?: Maybe<JiraStoryPointEstimateFieldPayload>;
|
|
10804
10931
|
updateSingleSelectField?: Maybe<JiraSingleSelectFieldPayload>;
|
|
10932
|
+
updateSingleLineTextField?: Maybe<JiraSingleLineTextFieldPayload>;
|
|
10805
10933
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
10806
10934
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
10807
10935
|
updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
|
|
@@ -10815,6 +10943,9 @@ export declare type JiraMutation = {
|
|
|
10815
10943
|
updateVersionReleaseDate?: Maybe<JiraUpdateVersionPayload>;
|
|
10816
10944
|
replaceIssueSearchViewFieldSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
10817
10945
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
10946
|
+
createProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
10947
|
+
updateProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
10948
|
+
deleteProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
10818
10949
|
};
|
|
10819
10950
|
export declare type JiraMutationUpdateReleaseNotesConfigurationArgs = {
|
|
10820
10951
|
input: JiraUpdateReleaseNotesConfigurationInput;
|
|
@@ -10853,6 +10984,9 @@ export declare type JiraMutationUpdateStoryPointEstimateFieldArgs = {
|
|
|
10853
10984
|
export declare type JiraMutationUpdateSingleSelectFieldArgs = {
|
|
10854
10985
|
input: JiraUpdateSingleSelectFieldInput;
|
|
10855
10986
|
};
|
|
10987
|
+
export declare type JiraMutationUpdateSingleLineTextFieldArgs = {
|
|
10988
|
+
input: JiraUpdateSingleLineTextFieldInput;
|
|
10989
|
+
};
|
|
10856
10990
|
export declare type JiraMutationAddPermissionSchemeGrantsArgs = {
|
|
10857
10991
|
input: JiraPermissionSchemeAddGrantInput;
|
|
10858
10992
|
};
|
|
@@ -10891,6 +11025,15 @@ export declare type JiraMutationReplaceIssueSearchViewFieldSetsArgs = {
|
|
|
10891
11025
|
id: Scalars['ID'];
|
|
10892
11026
|
input: JiraReplaceIssueSearchViewFieldSetsInput;
|
|
10893
11027
|
};
|
|
11028
|
+
export declare type JiraMutationCreateProjectShortcutArgs = {
|
|
11029
|
+
input: JiraCreateShortcutInput;
|
|
11030
|
+
};
|
|
11031
|
+
export declare type JiraMutationUpdateProjectShortcutArgs = {
|
|
11032
|
+
input: JiraUpdateShortcutInput;
|
|
11033
|
+
};
|
|
11034
|
+
export declare type JiraMutationDeleteProjectShortcutArgs = {
|
|
11035
|
+
input: JiraDeleteShortcutInput;
|
|
11036
|
+
};
|
|
10894
11037
|
export declare type JiraNumberField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
10895
11038
|
__typename?: 'JiraNumberField';
|
|
10896
11039
|
id: Scalars['ID'];
|
|
@@ -11730,6 +11873,24 @@ export declare type JiraProjectRoleGrantTypeValue = Node & {
|
|
|
11730
11873
|
id: Scalars['ID'];
|
|
11731
11874
|
role: JiraRole;
|
|
11732
11875
|
};
|
|
11876
|
+
export declare type JiraProjectShortcut = Node & {
|
|
11877
|
+
__typename?: 'JiraProjectShortcut';
|
|
11878
|
+
id: Scalars['ID'];
|
|
11879
|
+
name?: Maybe<Scalars['String']>;
|
|
11880
|
+
url?: Maybe<Scalars['String']>;
|
|
11881
|
+
type?: Maybe<JiraProjectShortcutType>;
|
|
11882
|
+
};
|
|
11883
|
+
export declare type JiraProjectShortcutPayload = Payload & {
|
|
11884
|
+
__typename?: 'JiraProjectShortcutPayload';
|
|
11885
|
+
shortcut?: Maybe<JiraProjectShortcut>;
|
|
11886
|
+
success: Scalars['Boolean'];
|
|
11887
|
+
errors?: Maybe<Array<MutationError>>;
|
|
11888
|
+
};
|
|
11889
|
+
export declare enum JiraProjectShortcutType {
|
|
11890
|
+
ShortcutLink = "SHORTCUT_LINK",
|
|
11891
|
+
Repository = "REPOSITORY",
|
|
11892
|
+
Unknown = "UNKNOWN"
|
|
11893
|
+
}
|
|
11733
11894
|
export declare enum JiraProjectSortField {
|
|
11734
11895
|
Name = "NAME",
|
|
11735
11896
|
Key = "KEY",
|
|
@@ -12945,6 +13106,10 @@ export declare type JiraShareableEntityUserGrantInput = {
|
|
|
12945
13106
|
id?: Maybe<Scalars['ID']>;
|
|
12946
13107
|
userId: Scalars['ID'];
|
|
12947
13108
|
};
|
|
13109
|
+
export declare type JiraShortcutDataInput = {
|
|
13110
|
+
name: Scalars['String'];
|
|
13111
|
+
url: Scalars['String'];
|
|
13112
|
+
};
|
|
12948
13113
|
export declare type JiraSimilarIssues = {
|
|
12949
13114
|
__typename?: 'JiraSimilarIssues';
|
|
12950
13115
|
featureEnabled: Scalars['Boolean'];
|
|
@@ -12982,6 +13147,16 @@ export declare type JiraSingleLineTextField = Node & JiraIssueField & JiraIssueF
|
|
|
12982
13147
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
12983
13148
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
12984
13149
|
};
|
|
13150
|
+
export declare type JiraSingleLineTextFieldOperationInput = {
|
|
13151
|
+
operation: JiraSingleValueFieldOperations;
|
|
13152
|
+
text?: Maybe<Scalars['String']>;
|
|
13153
|
+
};
|
|
13154
|
+
export declare type JiraSingleLineTextFieldPayload = Payload & {
|
|
13155
|
+
__typename?: 'JiraSingleLineTextFieldPayload';
|
|
13156
|
+
success: Scalars['Boolean'];
|
|
13157
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13158
|
+
field?: Maybe<JiraSingleLineTextField>;
|
|
13159
|
+
};
|
|
12985
13160
|
export declare type JiraSingleSelectField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
12986
13161
|
__typename?: 'JiraSingleSelectField';
|
|
12987
13162
|
id: Scalars['ID'];
|
|
@@ -13367,6 +13542,15 @@ export declare type JiraUpdateReleaseNotesConfigurationPayload = Payload & {
|
|
|
13367
13542
|
releaseNotesConfiguration?: Maybe<JiraReleaseNotesConfiguration>;
|
|
13368
13543
|
version?: Maybe<JiraVersion>;
|
|
13369
13544
|
};
|
|
13545
|
+
export declare type JiraUpdateShortcutInput = {
|
|
13546
|
+
projectId: Scalars['ID'];
|
|
13547
|
+
shortcutId: Scalars['ID'];
|
|
13548
|
+
shortcutData: JiraShortcutDataInput;
|
|
13549
|
+
};
|
|
13550
|
+
export declare type JiraUpdateSingleLineTextFieldInput = {
|
|
13551
|
+
id: Scalars['ID'];
|
|
13552
|
+
operation: JiraSingleLineTextFieldOperationInput;
|
|
13553
|
+
};
|
|
13370
13554
|
export declare type JiraUpdateSingleSelectFieldInput = {
|
|
13371
13555
|
id: Scalars['ID'];
|
|
13372
13556
|
operation: JiraSingleSelectOperationInput;
|
|
@@ -13489,6 +13673,7 @@ export declare type JiraVersionIssuesArgs = {
|
|
|
13489
13673
|
last?: Maybe<Scalars['Int']>;
|
|
13490
13674
|
before?: Maybe<Scalars['String']>;
|
|
13491
13675
|
filter?: Maybe<JiraVersionIssuesFilter>;
|
|
13676
|
+
sortBy?: Maybe<JiraVersionIssuesSortInput>;
|
|
13492
13677
|
};
|
|
13493
13678
|
export declare type JiraVersionReleaseNotesOptionsIssueTypesArgs = {
|
|
13494
13679
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -13583,6 +13768,17 @@ export declare enum JiraVersionIssuesFilter {
|
|
|
13583
13768
|
OpenPullRequest = "OPEN_PULL_REQUEST",
|
|
13584
13769
|
FailingBuild = "FAILING_BUILD"
|
|
13585
13770
|
}
|
|
13771
|
+
export declare enum JiraVersionIssuesSortField {
|
|
13772
|
+
Assignee = "ASSIGNEE",
|
|
13773
|
+
Created = "CREATED",
|
|
13774
|
+
Key = "KEY",
|
|
13775
|
+
Priority = "PRIORITY",
|
|
13776
|
+
Status = "STATUS"
|
|
13777
|
+
}
|
|
13778
|
+
export declare type JiraVersionIssuesSortInput = {
|
|
13779
|
+
sortByField?: Maybe<JiraVersionIssuesSortField>;
|
|
13780
|
+
order?: Maybe<SortDirection>;
|
|
13781
|
+
};
|
|
13586
13782
|
export declare type JiraVersionRelatedWork = {
|
|
13587
13783
|
__typename?: 'JiraVersionRelatedWork';
|
|
13588
13784
|
relatedWorkId?: Maybe<Scalars['ID']>;
|
|
@@ -13739,6 +13935,42 @@ export declare type JiraWorkLogEdge = {
|
|
|
13739
13935
|
node?: Maybe<JiraWorklog>;
|
|
13740
13936
|
cursor: Scalars['String'];
|
|
13741
13937
|
};
|
|
13938
|
+
export declare type JiraWorkManagementOverview = Node & {
|
|
13939
|
+
__typename?: 'JiraWorkManagementOverview';
|
|
13940
|
+
id: Scalars['ID'];
|
|
13941
|
+
name?: Maybe<Scalars['String']>;
|
|
13942
|
+
author?: Maybe<User>;
|
|
13943
|
+
theme?: Maybe<Scalars['String']>;
|
|
13944
|
+
projects?: Maybe<JiraWorkManagementProjectConnection>;
|
|
13945
|
+
};
|
|
13946
|
+
export declare type JiraWorkManagementOverviewProjectsArgs = {
|
|
13947
|
+
first?: Maybe<Scalars['Int']>;
|
|
13948
|
+
after?: Maybe<Scalars['String']>;
|
|
13949
|
+
last?: Maybe<Scalars['Int']>;
|
|
13950
|
+
before?: Maybe<Scalars['String']>;
|
|
13951
|
+
};
|
|
13952
|
+
export declare type JiraWorkManagementOverviewConnection = {
|
|
13953
|
+
__typename?: 'JiraWorkManagementOverviewConnection';
|
|
13954
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
13955
|
+
pageInfo: PageInfo;
|
|
13956
|
+
edges?: Maybe<Array<Maybe<JiraWorkManagementOverviewEdge>>>;
|
|
13957
|
+
};
|
|
13958
|
+
export declare type JiraWorkManagementOverviewEdge = {
|
|
13959
|
+
__typename?: 'JiraWorkManagementOverviewEdge';
|
|
13960
|
+
node?: Maybe<JiraWorkManagementOverview>;
|
|
13961
|
+
cursor: Scalars['String'];
|
|
13962
|
+
};
|
|
13963
|
+
export declare type JiraWorkManagementProjectConnection = {
|
|
13964
|
+
__typename?: 'JiraWorkManagementProjectConnection';
|
|
13965
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
13966
|
+
pageInfo: PageInfo;
|
|
13967
|
+
edges?: Maybe<Array<Maybe<JiraWorkManagementProjectEdge>>>;
|
|
13968
|
+
};
|
|
13969
|
+
export declare type JiraWorkManagementProjectEdge = {
|
|
13970
|
+
__typename?: 'JiraWorkManagementProjectEdge';
|
|
13971
|
+
node?: Maybe<JiraProject>;
|
|
13972
|
+
cursor: Scalars['String'];
|
|
13973
|
+
};
|
|
13742
13974
|
export declare type JiraWorkManagementProjectNavigationMetadata = {
|
|
13743
13975
|
__typename?: 'JiraWorkManagementProjectNavigationMetadata';
|
|
13744
13976
|
boardName: Scalars['String'];
|
|
@@ -14218,6 +14450,11 @@ export declare type MercuryAtlasGoal = Node & {
|
|
|
14218
14450
|
__typename?: 'MercuryAtlasGoal';
|
|
14219
14451
|
id: Scalars['ID'];
|
|
14220
14452
|
};
|
|
14453
|
+
export declare type MercuryCreateIntervalInput = {
|
|
14454
|
+
name: Scalars['String'];
|
|
14455
|
+
startDate: Scalars['Date'];
|
|
14456
|
+
endDate: Scalars['Date'];
|
|
14457
|
+
};
|
|
14221
14458
|
export declare type MercuryCreateJobFunctionInput = {
|
|
14222
14459
|
name: Scalars['String'];
|
|
14223
14460
|
};
|
|
@@ -14275,6 +14512,48 @@ export declare type MercuryInitiativeEdge = {
|
|
|
14275
14512
|
cursor: Scalars['String'];
|
|
14276
14513
|
node?: Maybe<MercuryInitiative>;
|
|
14277
14514
|
};
|
|
14515
|
+
export declare type MercuryInterval = Node & {
|
|
14516
|
+
__typename?: 'MercuryInterval';
|
|
14517
|
+
id: Scalars['ID'];
|
|
14518
|
+
name: Scalars['String'];
|
|
14519
|
+
startDate: Scalars['Date'];
|
|
14520
|
+
endDate: Scalars['Date'];
|
|
14521
|
+
status: MercuryIntervalStatus;
|
|
14522
|
+
nextPossibleStatuses: Array<MercuryIntervalStatus>;
|
|
14523
|
+
};
|
|
14524
|
+
export declare type MercuryIntervalConnection = {
|
|
14525
|
+
__typename?: 'MercuryIntervalConnection';
|
|
14526
|
+
edges?: Maybe<Array<Maybe<MercuryIntervalEdge>>>;
|
|
14527
|
+
nodes?: Maybe<Array<Maybe<MercuryInterval>>>;
|
|
14528
|
+
pageInfo: PageInfo;
|
|
14529
|
+
};
|
|
14530
|
+
export declare type MercuryIntervalEdge = {
|
|
14531
|
+
__typename?: 'MercuryIntervalEdge';
|
|
14532
|
+
cursor: Scalars['String'];
|
|
14533
|
+
node?: Maybe<MercuryInterval>;
|
|
14534
|
+
};
|
|
14535
|
+
export declare type MercuryIntervalMutationPayload = Payload & {
|
|
14536
|
+
__typename?: 'MercuryIntervalMutationPayload';
|
|
14537
|
+
interval?: Maybe<MercuryInterval>;
|
|
14538
|
+
success: Scalars['Boolean'];
|
|
14539
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14540
|
+
statusCode: Scalars['Int'];
|
|
14541
|
+
message: Scalars['String'];
|
|
14542
|
+
};
|
|
14543
|
+
export declare enum MercuryIntervalStatus {
|
|
14544
|
+
NotStarted = "NOT_STARTED",
|
|
14545
|
+
InProgress = "IN_PROGRESS",
|
|
14546
|
+
Done = "DONE",
|
|
14547
|
+
Frozen = "FROZEN"
|
|
14548
|
+
}
|
|
14549
|
+
export declare type MercuryIntervalStatusTransitionMutationPayload = Payload & {
|
|
14550
|
+
__typename?: 'MercuryIntervalStatusTransitionMutationPayload';
|
|
14551
|
+
interval?: Maybe<MercuryInterval>;
|
|
14552
|
+
success: Scalars['Boolean'];
|
|
14553
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14554
|
+
statusCode: Scalars['Int'];
|
|
14555
|
+
message: Scalars['String'];
|
|
14556
|
+
};
|
|
14278
14557
|
export declare type MercuryJobFunction = Node & {
|
|
14279
14558
|
__typename?: 'MercuryJobFunction';
|
|
14280
14559
|
id: Scalars['ID'];
|
|
@@ -14319,6 +14598,10 @@ export declare type MercuryMutationApi = {
|
|
|
14319
14598
|
createTeamAllocation?: Maybe<MercuryTeamAllocationMutationPayload>;
|
|
14320
14599
|
deleteTeamAllocation?: Maybe<MercuryTeamAllocationDeletePayload>;
|
|
14321
14600
|
allocateTeamCapacity?: Maybe<MercuryTeamAllocationMutationPayload>;
|
|
14601
|
+
transitionTeamAllocationStatus?: Maybe<MercuryTeamAllocationStatusTransitionMutationPayload>;
|
|
14602
|
+
createInterval?: Maybe<MercuryIntervalMutationPayload>;
|
|
14603
|
+
updateInterval?: Maybe<MercuryIntervalMutationPayload>;
|
|
14604
|
+
transitionIntervalStatus?: Maybe<MercuryIntervalStatusTransitionMutationPayload>;
|
|
14322
14605
|
};
|
|
14323
14606
|
export declare type MercuryMutationApiCreateStrategyArgs = {
|
|
14324
14607
|
input: MercuryCreateStrategyInput;
|
|
@@ -14354,13 +14637,25 @@ export declare type MercuryMutationApiDeleteTeamArgs = {
|
|
|
14354
14637
|
input: MercuryDeleteTeamInput;
|
|
14355
14638
|
};
|
|
14356
14639
|
export declare type MercuryMutationApiCreateTeamAllocationArgs = {
|
|
14357
|
-
input
|
|
14640
|
+
input: MercuryCreateTeamAllocationInput;
|
|
14358
14641
|
};
|
|
14359
14642
|
export declare type MercuryMutationApiDeleteTeamAllocationArgs = {
|
|
14360
|
-
input
|
|
14643
|
+
input: MercuryDeleteTeamAllocationInput;
|
|
14361
14644
|
};
|
|
14362
14645
|
export declare type MercuryMutationApiAllocateTeamCapacityArgs = {
|
|
14363
|
-
input
|
|
14646
|
+
input: MercuryAllocateTeamCapacityInput;
|
|
14647
|
+
};
|
|
14648
|
+
export declare type MercuryMutationApiTransitionTeamAllocationStatusArgs = {
|
|
14649
|
+
input: MercuryTransitionTeamAllocationStatusInput;
|
|
14650
|
+
};
|
|
14651
|
+
export declare type MercuryMutationApiCreateIntervalArgs = {
|
|
14652
|
+
input: MercuryCreateIntervalInput;
|
|
14653
|
+
};
|
|
14654
|
+
export declare type MercuryMutationApiUpdateIntervalArgs = {
|
|
14655
|
+
input: MercuryUpdateIntervalInput;
|
|
14656
|
+
};
|
|
14657
|
+
export declare type MercuryMutationApiTransitionIntervalStatusArgs = {
|
|
14658
|
+
input: MercuryTransitionIntervalStatusInput;
|
|
14364
14659
|
};
|
|
14365
14660
|
export declare type MercuryQueryApi = {
|
|
14366
14661
|
__typename?: 'MercuryQueryApi';
|
|
@@ -14374,6 +14669,8 @@ export declare type MercuryQueryApi = {
|
|
|
14374
14669
|
initiative?: Maybe<MercuryInitiative>;
|
|
14375
14670
|
initiatives?: Maybe<MercuryInitiativeConnection>;
|
|
14376
14671
|
teamAllocation?: Maybe<MercuryTeamAllocation>;
|
|
14672
|
+
intervals?: Maybe<MercuryIntervalConnection>;
|
|
14673
|
+
interval?: Maybe<MercuryInterval>;
|
|
14377
14674
|
};
|
|
14378
14675
|
export declare type MercuryQueryApiStrategiesArgs = {
|
|
14379
14676
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -14405,6 +14702,14 @@ export declare type MercuryQueryApiInitiativesArgs = {
|
|
|
14405
14702
|
};
|
|
14406
14703
|
export declare type MercuryQueryApiTeamAllocationArgs = {
|
|
14407
14704
|
teamId: Scalars['ID'];
|
|
14705
|
+
intervalId?: Maybe<Scalars['ID']>;
|
|
14706
|
+
};
|
|
14707
|
+
export declare type MercuryQueryApiIntervalsArgs = {
|
|
14708
|
+
first?: Maybe<Scalars['Int']>;
|
|
14709
|
+
after?: Maybe<Scalars['String']>;
|
|
14710
|
+
};
|
|
14711
|
+
export declare type MercuryQueryApiIntervalArgs = {
|
|
14712
|
+
id: Scalars['ID'];
|
|
14408
14713
|
};
|
|
14409
14714
|
export declare type MercuryRemoveGoalsFromStrategyInput = {
|
|
14410
14715
|
strategyId: Scalars['ID'];
|
|
@@ -14456,8 +14761,11 @@ export declare type MercuryTeam = Node & {
|
|
|
14456
14761
|
export declare type MercuryTeamAllocation = {
|
|
14457
14762
|
__typename?: 'MercuryTeamAllocation';
|
|
14458
14763
|
id: Scalars['ID'];
|
|
14764
|
+
intervalId?: Maybe<Scalars['ID']>;
|
|
14459
14765
|
teamId: Scalars['ID'];
|
|
14460
|
-
teamAllocationEntries: Array<
|
|
14766
|
+
teamAllocationEntries: Array<MercuryTeamAllocationEntry>;
|
|
14767
|
+
status: MercuryTeamAllocationStatus;
|
|
14768
|
+
nextPossibleStatuses: Array<MercuryTeamAllocationStatus>;
|
|
14461
14769
|
};
|
|
14462
14770
|
export declare type MercuryTeamAllocationDeletePayload = Payload & {
|
|
14463
14771
|
__typename?: 'MercuryTeamAllocationDeletePayload';
|
|
@@ -14486,6 +14794,19 @@ export declare type MercuryTeamAllocationMutationPayload = Payload & {
|
|
|
14486
14794
|
statusCode: Scalars['Int'];
|
|
14487
14795
|
message: Scalars['String'];
|
|
14488
14796
|
};
|
|
14797
|
+
export declare enum MercuryTeamAllocationStatus {
|
|
14798
|
+
Active = "ACTIVE",
|
|
14799
|
+
Defrosted = "DEFROSTED",
|
|
14800
|
+
Submitted = "SUBMITTED"
|
|
14801
|
+
}
|
|
14802
|
+
export declare type MercuryTeamAllocationStatusTransitionMutationPayload = Payload & {
|
|
14803
|
+
__typename?: 'MercuryTeamAllocationStatusTransitionMutationPayload';
|
|
14804
|
+
teamAllocation: MercuryTeamAllocation;
|
|
14805
|
+
success: Scalars['Boolean'];
|
|
14806
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14807
|
+
statusCode: Scalars['Int'];
|
|
14808
|
+
message: Scalars['String'];
|
|
14809
|
+
};
|
|
14489
14810
|
export declare type MercuryTeamConnection = {
|
|
14490
14811
|
__typename?: 'MercuryTeamConnection';
|
|
14491
14812
|
edges?: Maybe<Array<Maybe<MercuryTeamEdge>>>;
|
|
@@ -14513,6 +14834,20 @@ export declare type MercuryTeamMutationPayload = Payload & {
|
|
|
14513
14834
|
statusCode: Scalars['Int'];
|
|
14514
14835
|
message: Scalars['String'];
|
|
14515
14836
|
};
|
|
14837
|
+
export declare type MercuryTransitionIntervalStatusInput = {
|
|
14838
|
+
id: Scalars['ID'];
|
|
14839
|
+
status: MercuryIntervalStatus;
|
|
14840
|
+
};
|
|
14841
|
+
export declare type MercuryTransitionTeamAllocationStatusInput = {
|
|
14842
|
+
id: Scalars['ID'];
|
|
14843
|
+
status: MercuryTeamAllocationStatus;
|
|
14844
|
+
};
|
|
14845
|
+
export declare type MercuryUpdateIntervalInput = {
|
|
14846
|
+
id: Scalars['ID'];
|
|
14847
|
+
name?: Maybe<Scalars['String']>;
|
|
14848
|
+
startDate?: Maybe<Scalars['Date']>;
|
|
14849
|
+
endDate?: Maybe<Scalars['Date']>;
|
|
14850
|
+
};
|
|
14516
14851
|
export declare type MercuryUpdateJobFunctionInput = {
|
|
14517
14852
|
id: Scalars['ID'];
|
|
14518
14853
|
name: Scalars['String'];
|
|
@@ -14696,6 +15031,7 @@ export declare type Mutation = {
|
|
|
14696
15031
|
toggleBoardFeature?: Maybe<ToggleBoardFeatureOutput>;
|
|
14697
15032
|
setBoardEstimationType?: Maybe<ToggleBoardFeatureOutput>;
|
|
14698
15033
|
planModeCardMove?: Maybe<MoveCardOutput>;
|
|
15034
|
+
planModeCardCreate?: Maybe<CreateCardsOutput>;
|
|
14699
15035
|
createApp?: Maybe<CreateAppResponse>;
|
|
14700
15036
|
updateAppDetails?: Maybe<UpdateAppDetailsResponse>;
|
|
14701
15037
|
deleteApp?: Maybe<DeleteAppResponse>;
|
|
@@ -15098,6 +15434,9 @@ export declare type MutationSetBoardEstimationTypeArgs = {
|
|
|
15098
15434
|
export declare type MutationPlanModeCardMoveArgs = {
|
|
15099
15435
|
input?: Maybe<PlanModeCardMoveInput>;
|
|
15100
15436
|
};
|
|
15437
|
+
export declare type MutationPlanModeCardCreateArgs = {
|
|
15438
|
+
input?: Maybe<PlanModeCardCreateInput>;
|
|
15439
|
+
};
|
|
15101
15440
|
export declare type MutationCreateAppArgs = {
|
|
15102
15441
|
input: CreateAppInput;
|
|
15103
15442
|
};
|
|
@@ -15256,6 +15595,14 @@ export declare type NadelHydrationFromArgument = {
|
|
|
15256
15595
|
export declare enum NadelHydrationTemplate {
|
|
15257
15596
|
NadelPlaceholder = "NADEL_PLACEHOLDER"
|
|
15258
15597
|
}
|
|
15598
|
+
export declare type NewCard = {
|
|
15599
|
+
summary: Scalars['String'];
|
|
15600
|
+
issueTypeId: Scalars['ID'];
|
|
15601
|
+
parentId?: Maybe<Scalars['ID']>;
|
|
15602
|
+
fixVersions?: Maybe<Array<Scalars['ID']>>;
|
|
15603
|
+
assigneeId?: Maybe<Scalars['ID']>;
|
|
15604
|
+
labels?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
15605
|
+
};
|
|
15259
15606
|
export declare type NewCardParent = {
|
|
15260
15607
|
summary: Scalars['String'];
|
|
15261
15608
|
issueTypeId: Scalars['ID'];
|
|
@@ -15267,6 +15614,9 @@ export declare type OAuthClientsAccountGrant = {
|
|
|
15267
15614
|
__typename?: 'OAuthClientsAccountGrant';
|
|
15268
15615
|
clientId?: Maybe<Scalars['String']>;
|
|
15269
15616
|
scopes?: Maybe<Array<Scalars['String']>>;
|
|
15617
|
+
accountId?: Maybe<Scalars['String']>;
|
|
15618
|
+
scopeDetails?: Maybe<Array<Maybe<OAuthClientsScopeDetails>>>;
|
|
15619
|
+
appEnvironment?: Maybe<AppEnvironment>;
|
|
15270
15620
|
};
|
|
15271
15621
|
export declare type OAuthClientsAccountGrantConnection = {
|
|
15272
15622
|
__typename?: 'OAuthClientsAccountGrantConnection';
|
|
@@ -15294,6 +15644,11 @@ export declare type OAuthClientsQueryAllAccountGrantsForUserArgs = {
|
|
|
15294
15644
|
first?: Maybe<Scalars['Int']>;
|
|
15295
15645
|
after?: Maybe<Scalars['String']>;
|
|
15296
15646
|
};
|
|
15647
|
+
export declare type OAuthClientsScopeDetails = {
|
|
15648
|
+
__typename?: 'OAuthClientsScopeDetails';
|
|
15649
|
+
key: Scalars['String'];
|
|
15650
|
+
description?: Maybe<Scalars['String']>;
|
|
15651
|
+
};
|
|
15297
15652
|
export declare type OnJiraIssueCreatedForUserResponseType = JiraProjectConnection | JiraIssueAndProject;
|
|
15298
15653
|
export declare type OpsgenieAlertCountByPriority = {
|
|
15299
15654
|
__typename?: 'OpsgenieAlertCountByPriority';
|
|
@@ -15473,6 +15828,13 @@ export declare type PermissionToConsentByOauthId = {
|
|
|
15473
15828
|
isAllowed: Scalars['Boolean'];
|
|
15474
15829
|
isSiteAdmin: Scalars['Boolean'];
|
|
15475
15830
|
};
|
|
15831
|
+
export declare type PlanModeCardCreateInput = {
|
|
15832
|
+
boardId: Scalars['ID'];
|
|
15833
|
+
destination: PlanModeDestination;
|
|
15834
|
+
newCards: Array<Maybe<NewCard>>;
|
|
15835
|
+
rankBeforeCardId?: Maybe<Scalars['Long']>;
|
|
15836
|
+
destinationId?: Maybe<Scalars['ID']>;
|
|
15837
|
+
};
|
|
15476
15838
|
export declare type PlanModeCardMoveInput = {
|
|
15477
15839
|
cardIds: Array<Scalars['ID']>;
|
|
15478
15840
|
boardId: Scalars['ID'];
|
|
@@ -16453,6 +16815,8 @@ export declare type PolarisView = {
|
|
|
16453
16815
|
lastCommentsViewedTimestamp?: Maybe<Scalars['String']>;
|
|
16454
16816
|
collabServiceDelegation?: Maybe<PolarisDelegationToken>;
|
|
16455
16817
|
sortMode: PolarisViewSortMode;
|
|
16818
|
+
hideEmptyGroups?: Maybe<Scalars['Boolean']>;
|
|
16819
|
+
enabledAutoSave?: Maybe<Scalars['Boolean']>;
|
|
16456
16820
|
};
|
|
16457
16821
|
export declare type PolarisViewJqlArgs = {
|
|
16458
16822
|
filter?: Maybe<PolarisFilterInput>;
|
|
@@ -16474,7 +16838,8 @@ export declare type PolarisViewFilterInput = {
|
|
|
16474
16838
|
export declare enum PolarisViewFilterKind {
|
|
16475
16839
|
FieldIdentity = "FIELD_IDENTITY",
|
|
16476
16840
|
FieldNumeric = "FIELD_NUMERIC",
|
|
16477
|
-
Text = "TEXT"
|
|
16841
|
+
Text = "TEXT",
|
|
16842
|
+
Interval = "INTERVAL"
|
|
16478
16843
|
}
|
|
16479
16844
|
export declare enum PolarisViewFilterOperator {
|
|
16480
16845
|
Lt = "LT",
|
|
@@ -16482,7 +16847,10 @@ export declare enum PolarisViewFilterOperator {
|
|
|
16482
16847
|
Gt = "GT",
|
|
16483
16848
|
Gte = "GTE",
|
|
16484
16849
|
Eq = "EQ",
|
|
16485
|
-
Neq = "NEQ"
|
|
16850
|
+
Neq = "NEQ",
|
|
16851
|
+
StartWithin = "START_WITHIN",
|
|
16852
|
+
EndWithin = "END_WITHIN",
|
|
16853
|
+
RunningIn = "RUNNING_IN"
|
|
16486
16854
|
}
|
|
16487
16855
|
export declare type PolarisViewFilterValue = {
|
|
16488
16856
|
__typename?: 'PolarisViewFilterValue';
|
|
@@ -16651,6 +17019,8 @@ export declare type Query = {
|
|
|
16651
17019
|
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
16652
17020
|
installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
|
|
16653
17021
|
roadmaps?: Maybe<RoadmapsQuery>;
|
|
17022
|
+
jwmOverview?: Maybe<JiraWorkManagementOverview>;
|
|
17023
|
+
jwmOverviews?: Maybe<JiraWorkManagementOverviewConnection>;
|
|
16654
17024
|
tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
|
|
16655
17025
|
virtualAgent?: Maybe<VirtualAgentQueryApi>;
|
|
16656
17026
|
jiraReleases?: Maybe<JiraReleases>;
|
|
@@ -16963,6 +17333,17 @@ export declare type QueryDeveloperLogAccessArgs = {
|
|
|
16963
17333
|
export declare type QueryInstallationContextsWithLogAccessArgs = {
|
|
16964
17334
|
appId: Scalars['ID'];
|
|
16965
17335
|
};
|
|
17336
|
+
export declare type QueryJwmOverviewArgs = {
|
|
17337
|
+
id: Scalars['ID'];
|
|
17338
|
+
};
|
|
17339
|
+
export declare type QueryJwmOverviewsArgs = {
|
|
17340
|
+
cloudId: Scalars['ID'];
|
|
17341
|
+
accountId: Scalars['ID'];
|
|
17342
|
+
first?: Maybe<Scalars['Int']>;
|
|
17343
|
+
after?: Maybe<Scalars['String']>;
|
|
17344
|
+
last?: Maybe<Scalars['Int']>;
|
|
17345
|
+
before?: Maybe<Scalars['String']>;
|
|
17346
|
+
};
|
|
16966
17347
|
export declare type QueryTenantContextsArgs = {
|
|
16967
17348
|
cloudIds?: Maybe<Array<Scalars['ID']>>;
|
|
16968
17349
|
hostNames?: Maybe<Array<Scalars['String']>>;
|
|
@@ -17177,6 +17558,7 @@ export declare type RoadmapConfiguration = {
|
|
|
17177
17558
|
statusCategories: Array<RoadmapStatusCategory>;
|
|
17178
17559
|
userConfiguration?: Maybe<RoadmapUserConfiguration>;
|
|
17179
17560
|
boardConfiguration?: Maybe<RoadmapBoardConfiguration>;
|
|
17561
|
+
hierarchyConfiguration?: Maybe<RoadmapHierarchyConfiguration>;
|
|
17180
17562
|
};
|
|
17181
17563
|
export declare type RoadmapContent = {
|
|
17182
17564
|
__typename?: 'RoadmapContent';
|
|
@@ -17252,6 +17634,10 @@ export declare type RoadmapHealthCheckResolution = {
|
|
|
17252
17634
|
actionId: Scalars['ID'];
|
|
17253
17635
|
fallbackMessage: Scalars['String'];
|
|
17254
17636
|
};
|
|
17637
|
+
export declare type RoadmapHierarchyConfiguration = {
|
|
17638
|
+
__typename?: 'RoadmapHierarchyConfiguration';
|
|
17639
|
+
levelOneName: Scalars['String'];
|
|
17640
|
+
};
|
|
17255
17641
|
export declare type RoadmapItem = {
|
|
17256
17642
|
__typename?: 'RoadmapItem';
|
|
17257
17643
|
id: Scalars['ID'];
|
|
@@ -18278,10 +18664,11 @@ export declare enum ShepherdActionType {
|
|
|
18278
18664
|
Create = "CREATE",
|
|
18279
18665
|
Delete = "DELETE",
|
|
18280
18666
|
Export = "EXPORT",
|
|
18667
|
+
Login = "LOGIN",
|
|
18281
18668
|
Read = "READ",
|
|
18282
18669
|
Update = "UPDATE"
|
|
18283
18670
|
}
|
|
18284
|
-
export declare type ShepherdActivity = ShepherdResourceActivity;
|
|
18671
|
+
export declare type ShepherdActivity = ShepherdLoginActivity | ShepherdResourceActivity;
|
|
18285
18672
|
export declare type ShepherdActivityConnection = {
|
|
18286
18673
|
__typename?: 'ShepherdActivityConnection';
|
|
18287
18674
|
edges?: Maybe<Array<Maybe<ShepherdActivityEdge>>>;
|
|
@@ -18490,6 +18877,15 @@ export declare type ShepherdHighlight = ShepherdActivityHighlight;
|
|
|
18490
18877
|
export declare type ShepherdHighlightInput = {
|
|
18491
18878
|
activityHighlight?: Maybe<ShepherdActivityHighlightInput>;
|
|
18492
18879
|
};
|
|
18880
|
+
export declare type ShepherdLoginActivity = {
|
|
18881
|
+
__typename?: 'ShepherdLoginActivity';
|
|
18882
|
+
actor: ShepherdUser;
|
|
18883
|
+
city?: Maybe<Scalars['String']>;
|
|
18884
|
+
country?: Maybe<Scalars['String']>;
|
|
18885
|
+
ip?: Maybe<Scalars['String']>;
|
|
18886
|
+
region?: Maybe<Scalars['String']>;
|
|
18887
|
+
time: Scalars['DateTime'];
|
|
18888
|
+
};
|
|
18493
18889
|
export declare type ShepherdMutation = {
|
|
18494
18890
|
__typename?: 'ShepherdMutation';
|
|
18495
18891
|
createAlert?: Maybe<ShepherdCreateAlertPayload>;
|
|
@@ -19984,6 +20380,9 @@ export declare type UpdateAppDetailsInput = {
|
|
|
19984
20380
|
appId: Scalars['ID'];
|
|
19985
20381
|
name: Scalars['String'];
|
|
19986
20382
|
description?: Maybe<Scalars['String']>;
|
|
20383
|
+
privacyPolicy?: Maybe<Scalars['String']>;
|
|
20384
|
+
contactLink?: Maybe<Scalars['String']>;
|
|
20385
|
+
avatarFileId?: Maybe<Scalars['String']>;
|
|
19987
20386
|
};
|
|
19988
20387
|
export declare type UpdateAppDetailsResponse = Payload & {
|
|
19989
20388
|
__typename?: 'UpdateAppDetailsResponse';
|
|
@@ -20439,6 +20838,8 @@ export declare type UpdatePolarisViewInput = {
|
|
|
20439
20838
|
timelineConfig?: Maybe<UpdatePolarisTimelineConfig>;
|
|
20440
20839
|
matrixConfig?: Maybe<UpdatePolarisMatrixConfig>;
|
|
20441
20840
|
sortMode?: Maybe<PolarisViewSortMode>;
|
|
20841
|
+
hideEmptyGroups?: Maybe<Scalars['Boolean']>;
|
|
20842
|
+
enabledAutoSave?: Maybe<Scalars['Boolean']>;
|
|
20442
20843
|
};
|
|
20443
20844
|
export declare type UpdatePolarisViewPayload = Payload & {
|
|
20444
20845
|
__typename?: 'UpdatePolarisViewPayload';
|
|
@@ -20572,6 +20973,17 @@ export declare type VirtualAgentConfigurationIntentRuleProjectionArgs = {
|
|
|
20572
20973
|
intentId: Scalars['String'];
|
|
20573
20974
|
};
|
|
20574
20975
|
export declare type VirtualAgentConfigurationResult = VirtualAgentConfiguration | VirtualAgentQueryError;
|
|
20976
|
+
export declare type VirtualAgentCreateIntentRuleProjectionInput = {
|
|
20977
|
+
name: Scalars['String'];
|
|
20978
|
+
description?: Maybe<Scalars['String']>;
|
|
20979
|
+
questions?: Maybe<Array<Scalars['String']>>;
|
|
20980
|
+
};
|
|
20981
|
+
export declare type VirtualAgentCreateIntentRuleProjectionPayload = Payload & {
|
|
20982
|
+
__typename?: 'VirtualAgentCreateIntentRuleProjectionPayload';
|
|
20983
|
+
success: Scalars['Boolean'];
|
|
20984
|
+
errors?: Maybe<Array<MutationError>>;
|
|
20985
|
+
intentRuleProjection?: Maybe<VirtualAgentIntentRuleProjection>;
|
|
20986
|
+
};
|
|
20575
20987
|
export declare type VirtualAgentIntentProjection = Node & {
|
|
20576
20988
|
__typename?: 'VirtualAgentIntentProjection';
|
|
20577
20989
|
id: Scalars['ID'];
|
|
@@ -20624,10 +21036,15 @@ export declare type VirtualAgentIntentRuleProjectionsFilter = {
|
|
|
20624
21036
|
export declare type VirtualAgentMutationApi = {
|
|
20625
21037
|
__typename?: 'VirtualAgentMutationApi';
|
|
20626
21038
|
updateVirtualAgentConfiguration?: Maybe<VirtualAgentUpdateConfigurationPayload>;
|
|
21039
|
+
createIntentRuleProjection?: Maybe<VirtualAgentCreateIntentRuleProjectionPayload>;
|
|
20627
21040
|
};
|
|
20628
21041
|
export declare type VirtualAgentMutationApiUpdateVirtualAgentConfigurationArgs = {
|
|
20629
21042
|
input: VirtualAgentUpdateConfigurationInput;
|
|
20630
21043
|
};
|
|
21044
|
+
export declare type VirtualAgentMutationApiCreateIntentRuleProjectionArgs = {
|
|
21045
|
+
virtualAgentConfigurationId: Scalars['ID'];
|
|
21046
|
+
input: VirtualAgentCreateIntentRuleProjectionInput;
|
|
21047
|
+
};
|
|
20631
21048
|
export declare type VirtualAgentQueryApi = {
|
|
20632
21049
|
__typename?: 'VirtualAgentQueryApi';
|
|
20633
21050
|
virtualAgentConfigurationByProjectId?: Maybe<VirtualAgentConfigurationResult>;
|