@forge/cli-shared 3.2.3 → 3.3.0-next.1
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 +13 -0
- package/out/apps/create-app-graphql-client.d.ts.map +1 -1
- package/out/apps/create-app-graphql-client.js +1 -1
- package/out/auth/personal/credential-store.d.ts +2 -1
- package/out/auth/personal/credential-store.d.ts.map +1 -1
- package/out/auth/personal/credential-store.js +1 -1
- package/out/auth/personal/me-graphql-client.d.ts +2 -1
- package/out/auth/personal/me-graphql-client.d.ts.map +1 -1
- package/out/auth/personal/me-graphql-client.js +2 -1
- package/out/config/config-file.d.ts.map +1 -1
- package/out/config/config-file.js +3 -2
- package/out/graphql/get-mutation-error.d.ts +1 -0
- package/out/graphql/get-mutation-error.d.ts.map +1 -1
- package/out/graphql/get-mutation-error.js +3 -2
- package/out/graphql/graphql-types.d.ts +216 -4
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +34 -5
- package/out/graphql/minimal-graphql-runner.d.ts +7 -4
- package/out/graphql/minimal-graphql-runner.d.ts.map +1 -1
- package/out/graphql/minimal-graphql-runner.js +11 -5
- package/out/graphql/mutation-aware-graphql-client.d.ts +6 -2
- package/out/graphql/mutation-aware-graphql-client.d.ts.map +1 -1
- package/out/graphql/mutation-aware-graphql-client.js +10 -2
- package/out/shared/error-handling.d.ts +13 -1
- package/out/shared/error-handling.d.ts.map +1 -1
- package/out/shared/error-handling.js +22 -2
- package/out/shared/installationId.js +2 -2
- package/out/shared/validate.js +2 -2
- package/out/ui/index.d.ts +0 -1
- package/out/ui/index.d.ts.map +1 -1
- package/out/ui/index.js +0 -1
- package/package.json +2 -2
- package/out/ui/validation-error.d.ts +0 -3
- package/out/ui/validation-error.d.ts.map +0 -1
- package/out/ui/validation-error.js +0 -6
|
@@ -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']>;
|
|
@@ -361,6 +371,9 @@ export declare type AppConnection = {
|
|
|
361
371
|
pageInfo: PageInfo;
|
|
362
372
|
totalCount?: Maybe<Scalars['Int']>;
|
|
363
373
|
};
|
|
374
|
+
export declare enum AppContributorRole {
|
|
375
|
+
Admin = "ADMIN"
|
|
376
|
+
}
|
|
364
377
|
export declare type AppDeployment = {
|
|
365
378
|
__typename?: 'AppDeployment';
|
|
366
379
|
id: Scalars['ID'];
|
|
@@ -985,7 +998,7 @@ export declare type AriGraphRelationshipNode = {
|
|
|
985
998
|
id: Scalars['ID'];
|
|
986
999
|
data?: Maybe<AriGraphRelationshipNodeData>;
|
|
987
1000
|
};
|
|
988
|
-
export declare type AriGraphRelationshipNodeData = DeploymentSummary | ConfluencePage | ConfluenceSpace | ThirdPartySecurityWorkspace | ThirdPartySecurityContainer | DevOpsPullRequestDetails | JiraIssue;
|
|
1001
|
+
export declare type AriGraphRelationshipNodeData = DeploymentSummary | ConfluencePage | ConfluenceSpace | ThirdPartySecurityWorkspace | ThirdPartySecurityContainer | DevOpsPullRequestDetails | DevOpsSecurityVulnerabilityDetails | JiraIssue;
|
|
989
1002
|
export declare type AriGraphRelationshipsErrorReference = {
|
|
990
1003
|
__typename?: 'AriGraphRelationshipsErrorReference';
|
|
991
1004
|
from?: Maybe<Scalars['ID']>;
|
|
@@ -1130,6 +1143,8 @@ export declare type AuditsPageInfo = {
|
|
|
1130
1143
|
__typename?: 'AuditsPageInfo';
|
|
1131
1144
|
hasNextPage: Scalars['Boolean'];
|
|
1132
1145
|
hasPreviousPage: Scalars['Boolean'];
|
|
1146
|
+
startCursor?: Maybe<Scalars['String']>;
|
|
1147
|
+
endCursor?: Maybe<Scalars['String']>;
|
|
1133
1148
|
};
|
|
1134
1149
|
export declare type AuthToken = {
|
|
1135
1150
|
__typename?: 'AuthToken';
|
|
@@ -2383,6 +2398,7 @@ export declare type CompassCreateMetricSourceInput = {
|
|
|
2383
2398
|
externalMetricSourceId: Scalars['ID'];
|
|
2384
2399
|
url?: Maybe<Scalars['String']>;
|
|
2385
2400
|
derived?: Maybe<Scalars['Boolean']>;
|
|
2401
|
+
externalConfiguration?: Maybe<CompassExternalMetricSourceConfigurationInput>;
|
|
2386
2402
|
};
|
|
2387
2403
|
export declare type CompassCreateMetricSourcePayload = Payload & {
|
|
2388
2404
|
__typename?: 'CompassCreateMetricSourcePayload';
|
|
@@ -2746,6 +2762,10 @@ export declare type CompassExternalAliasInput = {
|
|
|
2746
2762
|
externalId: Scalars['ID'];
|
|
2747
2763
|
externalSource?: Maybe<Scalars['ID']>;
|
|
2748
2764
|
};
|
|
2765
|
+
export declare type CompassExternalMetricSourceConfigurationInput = {
|
|
2766
|
+
slo?: Maybe<CompassSloMetricSourceConfigurationInput>;
|
|
2767
|
+
plain?: Maybe<CompassPlainMetricSourceConfigurationInput>;
|
|
2768
|
+
};
|
|
2749
2769
|
export declare type CompassField = {
|
|
2750
2770
|
definition?: Maybe<CompassFieldDefinition>;
|
|
2751
2771
|
};
|
|
@@ -3079,6 +3099,9 @@ export declare type CompassMetricValuesTimeseries = {
|
|
|
3079
3099
|
values?: Maybe<Array<Maybe<CompassMetricValue>>>;
|
|
3080
3100
|
};
|
|
3081
3101
|
export declare type CompassMetricValuesTimeseriesResult = CompassMetricValuesTimeseries | QueryError;
|
|
3102
|
+
export declare type CompassPlainMetricSourceConfigurationInput = {
|
|
3103
|
+
query: Scalars['String'];
|
|
3104
|
+
};
|
|
3082
3105
|
export declare type CompassPushEvent = CompassEvent & {
|
|
3083
3106
|
__typename?: 'CompassPushEvent';
|
|
3084
3107
|
eventType: CompassEventType;
|
|
@@ -3339,6 +3362,10 @@ export declare type CompassSearchTeamsInput = {
|
|
|
3339
3362
|
term?: Maybe<Scalars['String']>;
|
|
3340
3363
|
labels?: Maybe<Array<Scalars['String']>>;
|
|
3341
3364
|
};
|
|
3365
|
+
export declare type CompassSloMetricSourceConfigurationInput = {
|
|
3366
|
+
goodQuery: Scalars['String'];
|
|
3367
|
+
badQuery: Scalars['String'];
|
|
3368
|
+
};
|
|
3342
3369
|
export declare type CompassStarredComponentConnection = {
|
|
3343
3370
|
__typename?: 'CompassStarredComponentConnection';
|
|
3344
3371
|
nodes?: Maybe<Array<CompassComponent>>;
|
|
@@ -5665,6 +5692,7 @@ export declare type DevOps = {
|
|
|
5665
5692
|
pullRequestEntityDetails?: Maybe<Array<Maybe<DevOpsPullRequestDetails>>>;
|
|
5666
5693
|
summarisedEntities?: Maybe<Array<Maybe<DevOpsSummarisedEntities>>>;
|
|
5667
5694
|
dataDepotProviders?: Maybe<DevOpsDataDepotProviders>;
|
|
5695
|
+
securityVulnerabilityEntityDetails?: Maybe<Array<Maybe<DevOpsSecurityVulnerabilityDetails>>>;
|
|
5668
5696
|
ariGraph?: Maybe<AriGraph>;
|
|
5669
5697
|
toolchain?: Maybe<Toolchain>;
|
|
5670
5698
|
};
|
|
@@ -5684,6 +5712,9 @@ export declare type DevOpsDataDepotProvidersArgs = {
|
|
|
5684
5712
|
id: Scalars['ID'];
|
|
5685
5713
|
providerTypes?: Maybe<Array<DevOpsDataDepotProviderType>>;
|
|
5686
5714
|
};
|
|
5715
|
+
export declare type DevOpsSecurityVulnerabilityEntityDetailsArgs = {
|
|
5716
|
+
ids: Array<Scalars['ID']>;
|
|
5717
|
+
};
|
|
5687
5718
|
export declare type DevOpsAvatar = {
|
|
5688
5719
|
__typename?: 'DevOpsAvatar';
|
|
5689
5720
|
url?: Maybe<Scalars['URL']>;
|
|
@@ -5726,6 +5757,12 @@ export declare type DevOpsDataDepotSecurityProvider = DevOpsDataDepotProvider &
|
|
|
5726
5757
|
logoUrl?: Maybe<Scalars['URL']>;
|
|
5727
5758
|
documentationUrl?: Maybe<Scalars['URL']>;
|
|
5728
5759
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
5760
|
+
linkedSecurityWorkspaces?: Maybe<AriGraphRelationshipConnection>;
|
|
5761
|
+
};
|
|
5762
|
+
export declare type DevOpsDataDepotSecurityProviderLinkedSecurityWorkspacesArgs = {
|
|
5763
|
+
first?: Maybe<Scalars['Int']>;
|
|
5764
|
+
after?: Maybe<Scalars['String']>;
|
|
5765
|
+
type?: Maybe<Scalars['String']>;
|
|
5729
5766
|
};
|
|
5730
5767
|
export declare type DevOpsEntities = {
|
|
5731
5768
|
__typename?: 'DevOpsEntities';
|
|
@@ -6027,6 +6064,7 @@ export declare type DevOpsPullRequestDetails = {
|
|
|
6027
6064
|
repositoryUrl?: Maybe<Scalars['String']>;
|
|
6028
6065
|
title?: Maybe<Scalars['String']>;
|
|
6029
6066
|
commentCount?: Maybe<Scalars['Int']>;
|
|
6067
|
+
authorId?: Maybe<Scalars['ID']>;
|
|
6030
6068
|
author?: Maybe<User>;
|
|
6031
6069
|
reviewers?: Maybe<Array<Maybe<DevOpsReviewer>>>;
|
|
6032
6070
|
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
@@ -6059,8 +6097,45 @@ export declare enum DevOpsRepositoryHostingProviderFilter {
|
|
|
6059
6097
|
export declare type DevOpsReviewer = {
|
|
6060
6098
|
__typename?: 'DevOpsReviewer';
|
|
6061
6099
|
approvalStatus?: Maybe<DevOpsPullRequestApprovalStatus>;
|
|
6100
|
+
userId?: Maybe<Scalars['ID']>;
|
|
6062
6101
|
user?: Maybe<User>;
|
|
6063
6102
|
};
|
|
6103
|
+
export declare type DevOpsSecurityVulnerabilityAdditionalInfo = {
|
|
6104
|
+
__typename?: 'DevOpsSecurityVulnerabilityAdditionalInfo';
|
|
6105
|
+
content?: Maybe<Scalars['String']>;
|
|
6106
|
+
url?: Maybe<Scalars['String']>;
|
|
6107
|
+
};
|
|
6108
|
+
export declare type DevOpsSecurityVulnerabilityDetails = {
|
|
6109
|
+
__typename?: 'DevOpsSecurityVulnerabilityDetails';
|
|
6110
|
+
id: Scalars['ID'];
|
|
6111
|
+
title?: Maybe<Scalars['String']>;
|
|
6112
|
+
description?: Maybe<Scalars['String']>;
|
|
6113
|
+
url?: Maybe<Scalars['String']>;
|
|
6114
|
+
severity?: Maybe<DevOpsSecurityVulnerabilitySeverity>;
|
|
6115
|
+
status?: Maybe<DevOpsSecurityVulnerabilityStatus>;
|
|
6116
|
+
identifiers: Array<DevOpsSecurityVulnerabilityIdentifier>;
|
|
6117
|
+
introducedDate?: Maybe<Scalars['DateTime']>;
|
|
6118
|
+
securityContainerId?: Maybe<Scalars['ID']>;
|
|
6119
|
+
additionalInfo?: Maybe<DevOpsSecurityVulnerabilityAdditionalInfo>;
|
|
6120
|
+
};
|
|
6121
|
+
export declare type DevOpsSecurityVulnerabilityIdentifier = {
|
|
6122
|
+
__typename?: 'DevOpsSecurityVulnerabilityIdentifier';
|
|
6123
|
+
id: Scalars['String'];
|
|
6124
|
+
url?: Maybe<Scalars['String']>;
|
|
6125
|
+
};
|
|
6126
|
+
export declare enum DevOpsSecurityVulnerabilitySeverity {
|
|
6127
|
+
Critical = "CRITICAL",
|
|
6128
|
+
High = "HIGH",
|
|
6129
|
+
Medium = "MEDIUM",
|
|
6130
|
+
Low = "LOW",
|
|
6131
|
+
Unknown = "UNKNOWN"
|
|
6132
|
+
}
|
|
6133
|
+
export declare enum DevOpsSecurityVulnerabilityStatus {
|
|
6134
|
+
Open = "OPEN",
|
|
6135
|
+
Closed = "CLOSED",
|
|
6136
|
+
Ignored = "IGNORED",
|
|
6137
|
+
Unknown = "UNKNOWN"
|
|
6138
|
+
}
|
|
6064
6139
|
export declare type DevOpsService = Node & {
|
|
6065
6140
|
__typename?: 'DevOpsService';
|
|
6066
6141
|
id: Scalars['ID'];
|
|
@@ -6720,6 +6795,7 @@ export declare type DvcsQueryBitbucketWorkspacesLinkedToSiteArgs = {
|
|
|
6720
6795
|
export declare type EcosystemMutation = {
|
|
6721
6796
|
__typename?: 'EcosystemMutation';
|
|
6722
6797
|
updateAppHostServiceScopes?: Maybe<UpdateAppHostServiceScopesResponsePayload>;
|
|
6798
|
+
addAppContributor?: Maybe<AddAppContributorResponsePayload>;
|
|
6723
6799
|
deleteUserGrant?: Maybe<DeleteUserGrantPayload>;
|
|
6724
6800
|
updateUserInstallationRules?: Maybe<UserInstallationRulesPayload>;
|
|
6725
6801
|
forgeAlerts?: Maybe<ForgeAlertsMutation>;
|
|
@@ -6727,6 +6803,9 @@ export declare type EcosystemMutation = {
|
|
|
6727
6803
|
export declare type EcosystemMutationUpdateAppHostServiceScopesArgs = {
|
|
6728
6804
|
input: UpdateAppHostServiceScopesInput;
|
|
6729
6805
|
};
|
|
6806
|
+
export declare type EcosystemMutationAddAppContributorArgs = {
|
|
6807
|
+
input: AddAppContributorInput;
|
|
6808
|
+
};
|
|
6730
6809
|
export declare type EcosystemMutationDeleteUserGrantArgs = {
|
|
6731
6810
|
input: DeleteUserGrantInput;
|
|
6732
6811
|
};
|
|
@@ -8404,7 +8483,8 @@ export declare enum JiraCmdbAttributeType {
|
|
|
8404
8483
|
Group = "GROUP",
|
|
8405
8484
|
Version = "VERSION",
|
|
8406
8485
|
Project = "PROJECT",
|
|
8407
|
-
Status = "STATUS"
|
|
8486
|
+
Status = "STATUS",
|
|
8487
|
+
BitbucketRepo = "BITBUCKET_REPO"
|
|
8408
8488
|
}
|
|
8409
8489
|
export declare type JiraCmdbAvatar = {
|
|
8410
8490
|
__typename?: 'JiraCmdbAvatar';
|
|
@@ -8417,6 +8497,14 @@ export declare type JiraCmdbAvatar = {
|
|
|
8417
8497
|
url288?: Maybe<Scalars['String']>;
|
|
8418
8498
|
mediaClientConfig?: Maybe<JiraCmdbMediaClientConfig>;
|
|
8419
8499
|
};
|
|
8500
|
+
export declare type JiraCmdbBitbucketRepository = {
|
|
8501
|
+
__typename?: 'JiraCmdbBitbucketRepository';
|
|
8502
|
+
uuid?: Maybe<Scalars['String']>;
|
|
8503
|
+
name?: Maybe<Scalars['String']>;
|
|
8504
|
+
url?: Maybe<Scalars['URL']>;
|
|
8505
|
+
avatarUrl?: Maybe<Scalars['URL']>;
|
|
8506
|
+
bitbucketWorkspaceId?: Maybe<Scalars['String']>;
|
|
8507
|
+
};
|
|
8420
8508
|
export declare type JiraCmdbConfigAttributeConnection = {
|
|
8421
8509
|
__typename?: 'JiraCmdbConfigAttributeConnection';
|
|
8422
8510
|
totalCount?: Maybe<Scalars['Int']>;
|
|
@@ -8495,6 +8583,7 @@ export declare type JiraCmdbObjectAttributeValue = {
|
|
|
8495
8583
|
group?: Maybe<JiraGroup>;
|
|
8496
8584
|
status?: Maybe<JiraCmdbStatusType>;
|
|
8497
8585
|
project?: Maybe<JiraProject>;
|
|
8586
|
+
bitbucketRepo?: Maybe<JiraCmdbBitbucketRepository>;
|
|
8498
8587
|
value?: Maybe<Scalars['String']>;
|
|
8499
8588
|
displayValue?: Maybe<Scalars['String']>;
|
|
8500
8589
|
searchValue?: Maybe<Scalars['String']>;
|
|
@@ -9374,6 +9463,7 @@ export declare type JiraHierarchyConfigError = {
|
|
|
9374
9463
|
export declare type JiraHierarchyConfigTask = {
|
|
9375
9464
|
__typename?: 'JiraHierarchyConfigTask';
|
|
9376
9465
|
taskProgress?: Maybe<JiraLongRunningTaskProgress>;
|
|
9466
|
+
issueHierarchyConfig?: Maybe<Array<JiraIssueHierarchyConfigData>>;
|
|
9377
9467
|
errors?: Maybe<Array<JiraHierarchyConfigError>>;
|
|
9378
9468
|
};
|
|
9379
9469
|
export declare enum JiraInstallDeploymentsBannerPrecondition {
|
|
@@ -9681,6 +9771,7 @@ export declare type JiraIssueHierarchyConfigurationMutationInput = {
|
|
|
9681
9771
|
export declare type JiraIssueHierarchyConfigurationMutationResult = {
|
|
9682
9772
|
__typename?: 'JiraIssueHierarchyConfigurationMutationResult';
|
|
9683
9773
|
updateInitiated: Scalars['Boolean'];
|
|
9774
|
+
updateIssuesCount?: Maybe<Scalars['Long']>;
|
|
9684
9775
|
success: Scalars['Boolean'];
|
|
9685
9776
|
errors?: Maybe<Array<JiraHierarchyConfigError>>;
|
|
9686
9777
|
};
|
|
@@ -11421,6 +11512,8 @@ export declare type JiraProject = Node & {
|
|
|
11421
11512
|
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
11422
11513
|
devOpsToolRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
11423
11514
|
devOpsEntityRelationships?: Maybe<AriGraphRelationshipConnection>;
|
|
11515
|
+
linkedSecurityContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
11516
|
+
linkedSecurityVulnerabilities?: Maybe<AriGraphRelationshipConnection>;
|
|
11424
11517
|
repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
11425
11518
|
devOpsServiceRelationships?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
11426
11519
|
opsgenieTeamRelationships?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
@@ -11444,6 +11537,16 @@ export declare type JiraProjectDevOpsEntityRelationshipsArgs = {
|
|
|
11444
11537
|
after?: Maybe<Scalars['String']>;
|
|
11445
11538
|
sort?: Maybe<AriGraphRelationshipsSort>;
|
|
11446
11539
|
};
|
|
11540
|
+
export declare type JiraProjectLinkedSecurityContainersArgs = {
|
|
11541
|
+
first?: Maybe<Scalars['Int']>;
|
|
11542
|
+
after?: Maybe<Scalars['String']>;
|
|
11543
|
+
type?: Maybe<Scalars['String']>;
|
|
11544
|
+
};
|
|
11545
|
+
export declare type JiraProjectLinkedSecurityVulnerabilitiesArgs = {
|
|
11546
|
+
first?: Maybe<Scalars['Int']>;
|
|
11547
|
+
after?: Maybe<Scalars['String']>;
|
|
11548
|
+
type?: Maybe<Scalars['String']>;
|
|
11549
|
+
};
|
|
11447
11550
|
export declare type JiraProjectRepositoryRelationshipsArgs = {
|
|
11448
11551
|
first?: Maybe<Scalars['Int']>;
|
|
11449
11552
|
after?: Maybe<Scalars['String']>;
|
|
@@ -13477,6 +13580,7 @@ export declare type JiraVersionIssuesArgs = {
|
|
|
13477
13580
|
last?: Maybe<Scalars['Int']>;
|
|
13478
13581
|
before?: Maybe<Scalars['String']>;
|
|
13479
13582
|
filter?: Maybe<JiraVersionIssuesFilter>;
|
|
13583
|
+
sortBy?: Maybe<JiraVersionIssuesSortInput>;
|
|
13480
13584
|
};
|
|
13481
13585
|
export declare type JiraVersionReleaseNotesOptionsIssueTypesArgs = {
|
|
13482
13586
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -13571,6 +13675,17 @@ export declare enum JiraVersionIssuesFilter {
|
|
|
13571
13675
|
OpenPullRequest = "OPEN_PULL_REQUEST",
|
|
13572
13676
|
FailingBuild = "FAILING_BUILD"
|
|
13573
13677
|
}
|
|
13678
|
+
export declare enum JiraVersionIssuesSortField {
|
|
13679
|
+
Assignee = "ASSIGNEE",
|
|
13680
|
+
Created = "CREATED",
|
|
13681
|
+
Key = "KEY",
|
|
13682
|
+
Priority = "PRIORITY",
|
|
13683
|
+
Status = "STATUS"
|
|
13684
|
+
}
|
|
13685
|
+
export declare type JiraVersionIssuesSortInput = {
|
|
13686
|
+
sortByField?: Maybe<JiraVersionIssuesSortField>;
|
|
13687
|
+
order?: Maybe<SortDirection>;
|
|
13688
|
+
};
|
|
13574
13689
|
export declare type JiraVersionRelatedWork = {
|
|
13575
13690
|
__typename?: 'JiraVersionRelatedWork';
|
|
13576
13691
|
relatedWorkId?: Maybe<Scalars['ID']>;
|
|
@@ -13934,6 +14049,7 @@ export declare type MarketplaceAppWatchersInfo = {
|
|
|
13934
14049
|
watchersCount: Scalars['Int'];
|
|
13935
14050
|
};
|
|
13936
14051
|
export declare type MarketplaceAppsFilter = {
|
|
14052
|
+
includePrivate?: Maybe<Scalars['Boolean']>;
|
|
13937
14053
|
productHostingOptions?: Maybe<Array<AtlassianProductHostingType>>;
|
|
13938
14054
|
cloudFortifiedStatus?: Maybe<Array<MarketplaceProgramStatus>>;
|
|
13939
14055
|
};
|
|
@@ -14197,6 +14313,10 @@ export declare type MercuryAddGoalsToStrategyInput = {
|
|
|
14197
14313
|
strategyId: Scalars['ID'];
|
|
14198
14314
|
goals?: Maybe<Array<MercuryLinkGoalInput>>;
|
|
14199
14315
|
};
|
|
14316
|
+
export declare type MercuryAllocateTeamCapacityInput = {
|
|
14317
|
+
teamAllocationId: Scalars['ID'];
|
|
14318
|
+
teamAllocationEntries: Array<Maybe<MercuryTeamAllocationEntryInput>>;
|
|
14319
|
+
};
|
|
14200
14320
|
export declare type MercuryAtlasGoal = Node & {
|
|
14201
14321
|
__typename?: 'MercuryAtlasGoal';
|
|
14202
14322
|
id: Scalars['ID'];
|
|
@@ -14220,6 +14340,10 @@ export declare type MercuryCreateStrategyInput = {
|
|
|
14220
14340
|
contentId?: Maybe<Scalars['String']>;
|
|
14221
14341
|
spaceKey?: Maybe<Scalars['String']>;
|
|
14222
14342
|
};
|
|
14343
|
+
export declare type MercuryCreateTeamAllocationInput = {
|
|
14344
|
+
teamId: Scalars['ID'];
|
|
14345
|
+
teamAllocationEntries: Array<Maybe<MercuryTeamAllocationEntryInput>>;
|
|
14346
|
+
};
|
|
14223
14347
|
export declare type MercuryCreateTeamInput = {
|
|
14224
14348
|
name: Scalars['String'];
|
|
14225
14349
|
teamsServiceTeamId: Scalars['ID'];
|
|
@@ -14231,6 +14355,9 @@ export declare type MercuryDeleteJobFunctionInput = {
|
|
|
14231
14355
|
export declare type MercuryDeleteStrategyInput = {
|
|
14232
14356
|
strategyId: Scalars['ID'];
|
|
14233
14357
|
};
|
|
14358
|
+
export declare type MercuryDeleteTeamAllocationInput = {
|
|
14359
|
+
id: Scalars['ID'];
|
|
14360
|
+
};
|
|
14234
14361
|
export declare type MercuryDeleteTeamInput = {
|
|
14235
14362
|
teamId: Scalars['ID'];
|
|
14236
14363
|
};
|
|
@@ -14292,6 +14419,9 @@ export declare type MercuryMutationApi = {
|
|
|
14292
14419
|
createTeam?: Maybe<MercuryTeamMutationPayload>;
|
|
14293
14420
|
updateTeam?: Maybe<MercuryTeamMutationPayload>;
|
|
14294
14421
|
deleteTeam?: Maybe<MercuryTeamDeletePayload>;
|
|
14422
|
+
createTeamAllocation?: Maybe<MercuryTeamAllocationMutationPayload>;
|
|
14423
|
+
deleteTeamAllocation?: Maybe<MercuryTeamAllocationDeletePayload>;
|
|
14424
|
+
allocateTeamCapacity?: Maybe<MercuryTeamAllocationMutationPayload>;
|
|
14295
14425
|
};
|
|
14296
14426
|
export declare type MercuryMutationApiCreateStrategyArgs = {
|
|
14297
14427
|
input: MercuryCreateStrategyInput;
|
|
@@ -14326,6 +14456,15 @@ export declare type MercuryMutationApiUpdateTeamArgs = {
|
|
|
14326
14456
|
export declare type MercuryMutationApiDeleteTeamArgs = {
|
|
14327
14457
|
input: MercuryDeleteTeamInput;
|
|
14328
14458
|
};
|
|
14459
|
+
export declare type MercuryMutationApiCreateTeamAllocationArgs = {
|
|
14460
|
+
input?: Maybe<MercuryCreateTeamAllocationInput>;
|
|
14461
|
+
};
|
|
14462
|
+
export declare type MercuryMutationApiDeleteTeamAllocationArgs = {
|
|
14463
|
+
input?: Maybe<MercuryDeleteTeamAllocationInput>;
|
|
14464
|
+
};
|
|
14465
|
+
export declare type MercuryMutationApiAllocateTeamCapacityArgs = {
|
|
14466
|
+
input?: Maybe<MercuryAllocateTeamCapacityInput>;
|
|
14467
|
+
};
|
|
14329
14468
|
export declare type MercuryQueryApi = {
|
|
14330
14469
|
__typename?: 'MercuryQueryApi';
|
|
14331
14470
|
strategies?: Maybe<MercuryStrategyConnection>;
|
|
@@ -14337,6 +14476,7 @@ export declare type MercuryQueryApi = {
|
|
|
14337
14476
|
team?: Maybe<MercuryTeam>;
|
|
14338
14477
|
initiative?: Maybe<MercuryInitiative>;
|
|
14339
14478
|
initiatives?: Maybe<MercuryInitiativeConnection>;
|
|
14479
|
+
teamAllocation?: Maybe<MercuryTeamAllocation>;
|
|
14340
14480
|
};
|
|
14341
14481
|
export declare type MercuryQueryApiStrategiesArgs = {
|
|
14342
14482
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -14366,6 +14506,9 @@ export declare type MercuryQueryApiInitiativesArgs = {
|
|
|
14366
14506
|
first?: Maybe<Scalars['Int']>;
|
|
14367
14507
|
after?: Maybe<Scalars['String']>;
|
|
14368
14508
|
};
|
|
14509
|
+
export declare type MercuryQueryApiTeamAllocationArgs = {
|
|
14510
|
+
teamId: Scalars['ID'];
|
|
14511
|
+
};
|
|
14369
14512
|
export declare type MercuryRemoveGoalsFromStrategyInput = {
|
|
14370
14513
|
strategyId: Scalars['ID'];
|
|
14371
14514
|
goals?: Maybe<Array<MercuryLinkGoalInput>>;
|
|
@@ -14413,6 +14556,39 @@ export declare type MercuryTeam = Node & {
|
|
|
14413
14556
|
name: Scalars['String'];
|
|
14414
14557
|
active?: Maybe<Scalars['Boolean']>;
|
|
14415
14558
|
};
|
|
14559
|
+
export declare type MercuryTeamAllocation = {
|
|
14560
|
+
__typename?: 'MercuryTeamAllocation';
|
|
14561
|
+
id: Scalars['ID'];
|
|
14562
|
+
teamId: Scalars['ID'];
|
|
14563
|
+
teamAllocationEntries: Array<Maybe<MercuryTeamAllocationEntry>>;
|
|
14564
|
+
};
|
|
14565
|
+
export declare type MercuryTeamAllocationDeletePayload = Payload & {
|
|
14566
|
+
__typename?: 'MercuryTeamAllocationDeletePayload';
|
|
14567
|
+
deletedTeamAllocationId?: Maybe<Scalars['ID']>;
|
|
14568
|
+
success: Scalars['Boolean'];
|
|
14569
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14570
|
+
statusCode: Scalars['Int'];
|
|
14571
|
+
message: Scalars['String'];
|
|
14572
|
+
};
|
|
14573
|
+
export declare type MercuryTeamAllocationEntry = {
|
|
14574
|
+
__typename?: 'MercuryTeamAllocationEntry';
|
|
14575
|
+
initiativeId: Scalars['String'];
|
|
14576
|
+
craftTypeId: Scalars['ID'];
|
|
14577
|
+
value?: Maybe<Scalars['Float']>;
|
|
14578
|
+
};
|
|
14579
|
+
export declare type MercuryTeamAllocationEntryInput = {
|
|
14580
|
+
initiativeId: Scalars['String'];
|
|
14581
|
+
craftTypeId: Scalars['ID'];
|
|
14582
|
+
value?: Maybe<Scalars['Float']>;
|
|
14583
|
+
};
|
|
14584
|
+
export declare type MercuryTeamAllocationMutationPayload = Payload & {
|
|
14585
|
+
__typename?: 'MercuryTeamAllocationMutationPayload';
|
|
14586
|
+
teamAllocation: MercuryTeamAllocation;
|
|
14587
|
+
success: Scalars['Boolean'];
|
|
14588
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14589
|
+
statusCode: Scalars['Int'];
|
|
14590
|
+
message: Scalars['String'];
|
|
14591
|
+
};
|
|
14416
14592
|
export declare type MercuryTeamConnection = {
|
|
14417
14593
|
__typename?: 'MercuryTeamConnection';
|
|
14418
14594
|
edges?: Maybe<Array<Maybe<MercuryTeamEdge>>>;
|
|
@@ -17104,6 +17280,7 @@ export declare type RoadmapConfiguration = {
|
|
|
17104
17280
|
statusCategories: Array<RoadmapStatusCategory>;
|
|
17105
17281
|
userConfiguration?: Maybe<RoadmapUserConfiguration>;
|
|
17106
17282
|
boardConfiguration?: Maybe<RoadmapBoardConfiguration>;
|
|
17283
|
+
hierarchyConfiguration?: Maybe<RoadmapHierarchyConfiguration>;
|
|
17107
17284
|
};
|
|
17108
17285
|
export declare type RoadmapContent = {
|
|
17109
17286
|
__typename?: 'RoadmapContent';
|
|
@@ -17179,6 +17356,10 @@ export declare type RoadmapHealthCheckResolution = {
|
|
|
17179
17356
|
actionId: Scalars['ID'];
|
|
17180
17357
|
fallbackMessage: Scalars['String'];
|
|
17181
17358
|
};
|
|
17359
|
+
export declare type RoadmapHierarchyConfiguration = {
|
|
17360
|
+
__typename?: 'RoadmapHierarchyConfiguration';
|
|
17361
|
+
levelOneName: Scalars['String'];
|
|
17362
|
+
};
|
|
17182
17363
|
export declare type RoadmapItem = {
|
|
17183
17364
|
__typename?: 'RoadmapItem';
|
|
17184
17365
|
id: Scalars['ID'];
|
|
@@ -18208,6 +18389,16 @@ export declare enum ShepherdActionType {
|
|
|
18208
18389
|
Read = "READ",
|
|
18209
18390
|
Update = "UPDATE"
|
|
18210
18391
|
}
|
|
18392
|
+
export declare type ShepherdActivity = ShepherdResourceActivity;
|
|
18393
|
+
export declare type ShepherdActivityConnection = {
|
|
18394
|
+
__typename?: 'ShepherdActivityConnection';
|
|
18395
|
+
edges?: Maybe<Array<Maybe<ShepherdActivityEdge>>>;
|
|
18396
|
+
pageInfo: PageInfo;
|
|
18397
|
+
};
|
|
18398
|
+
export declare type ShepherdActivityEdge = {
|
|
18399
|
+
__typename?: 'ShepherdActivityEdge';
|
|
18400
|
+
node?: Maybe<ShepherdActivity>;
|
|
18401
|
+
};
|
|
18211
18402
|
export declare type ShepherdActivityHighlight = {
|
|
18212
18403
|
__typename?: 'ShepherdActivityHighlight';
|
|
18213
18404
|
action?: Maybe<ShepherdActionType>;
|
|
@@ -18221,6 +18412,7 @@ export declare type ShepherdActivityHighlightInput = {
|
|
|
18221
18412
|
subject?: Maybe<ShepherdSubjectInput>;
|
|
18222
18413
|
time: ShepherdTimeInput;
|
|
18223
18414
|
};
|
|
18415
|
+
export declare type ShepherdActivityResult = QueryError | ShepherdActivityConnection;
|
|
18224
18416
|
export declare type ShepherdAlert = Node & {
|
|
18225
18417
|
__typename?: 'ShepherdAlert';
|
|
18226
18418
|
assignee?: Maybe<ShepherdUser>;
|
|
@@ -18268,6 +18460,7 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
18268
18460
|
ConfluencePageExports = "CONFLUENCE_PAGE_EXPORTS",
|
|
18269
18461
|
ConfluenceSpaceExports = "CONFLUENCE_SPACE_EXPORTS",
|
|
18270
18462
|
CreatedAuthPolicy = "CREATED_AUTH_POLICY",
|
|
18463
|
+
CreatedInstallation = "CREATED_INSTALLATION",
|
|
18271
18464
|
CreatedPolicy = "CREATED_POLICY",
|
|
18272
18465
|
CreatedSamlConfig = "CREATED_SAML_CONFIG",
|
|
18273
18466
|
CreatedTunnel = "CREATED_TUNNEL",
|
|
@@ -18311,7 +18504,7 @@ export declare type ShepherdCreateAlertInput = {
|
|
|
18311
18504
|
assignee?: Maybe<Scalars['ID']>;
|
|
18312
18505
|
cloudId?: Maybe<Scalars['ID']>;
|
|
18313
18506
|
highlight?: Maybe<ShepherdHighlightInput>;
|
|
18314
|
-
orgId
|
|
18507
|
+
orgId?: Maybe<Scalars['ID']>;
|
|
18315
18508
|
status?: Maybe<ShepherdAlertStatus>;
|
|
18316
18509
|
template?: Maybe<ShepherdAlertTemplateType>;
|
|
18317
18510
|
title: Scalars['String'];
|
|
@@ -18327,7 +18520,8 @@ export declare type ShepherdCreateEmailInput = {
|
|
|
18327
18520
|
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
18328
18521
|
};
|
|
18329
18522
|
export declare type ShepherdCreateExampleAlertInput = {
|
|
18330
|
-
|
|
18523
|
+
cloudId?: Maybe<Scalars['ID']>;
|
|
18524
|
+
orgId?: Maybe<Scalars['ID']>;
|
|
18331
18525
|
};
|
|
18332
18526
|
export declare type ShepherdCreateExampleAlertPayload = Payload & {
|
|
18333
18527
|
__typename?: 'ShepherdCreateExampleAlertPayload';
|
|
@@ -18460,6 +18654,7 @@ export declare type ShepherdOrganization = {
|
|
|
18460
18654
|
export declare type ShepherdOrganizationResult = QueryError | ShepherdOrganization;
|
|
18461
18655
|
export declare type ShepherdQuery = {
|
|
18462
18656
|
__typename?: 'ShepherdQuery';
|
|
18657
|
+
shepherdActivity?: Maybe<ShepherdActivityResult>;
|
|
18463
18658
|
shepherdAlert?: Maybe<ShepherdAlertResult>;
|
|
18464
18659
|
shepherdAlerts?: Maybe<ShepherdAlertsResult>;
|
|
18465
18660
|
shepherdAppInfo: ShepherdAppInfo;
|
|
@@ -18468,6 +18663,15 @@ export declare type ShepherdQuery = {
|
|
|
18468
18663
|
shepherdSubscriptions?: Maybe<ShepherdSubscriptionsResult>;
|
|
18469
18664
|
shepherdUser?: Maybe<ShepherdUser>;
|
|
18470
18665
|
};
|
|
18666
|
+
export declare type ShepherdQueryShepherdActivityArgs = {
|
|
18667
|
+
actions?: Maybe<Array<Maybe<ShepherdActionType>>>;
|
|
18668
|
+
actor?: Maybe<Scalars['ID']>;
|
|
18669
|
+
after?: Maybe<Scalars['String']>;
|
|
18670
|
+
endTime?: Maybe<Scalars['DateTime']>;
|
|
18671
|
+
first: Scalars['Int'];
|
|
18672
|
+
startTime?: Maybe<Scalars['DateTime']>;
|
|
18673
|
+
subject?: Maybe<ShepherdSubjectInput>;
|
|
18674
|
+
};
|
|
18471
18675
|
export declare type ShepherdQueryShepherdAlertArgs = {
|
|
18472
18676
|
id: Scalars['ID'];
|
|
18473
18677
|
};
|
|
@@ -18488,6 +18692,14 @@ export declare enum ShepherdQueryErrorType {
|
|
|
18488
18692
|
NoProductAccess = "NO_PRODUCT_ACCESS",
|
|
18489
18693
|
Unauthorized = "UNAUTHORIZED"
|
|
18490
18694
|
}
|
|
18695
|
+
export declare type ShepherdResourceActivity = {
|
|
18696
|
+
__typename?: 'ShepherdResourceActivity';
|
|
18697
|
+
action: ShepherdActionType;
|
|
18698
|
+
actor: ShepherdUser;
|
|
18699
|
+
id?: Maybe<Scalars['String']>;
|
|
18700
|
+
resourceAri: Scalars['String'];
|
|
18701
|
+
time: Scalars['DateTime'];
|
|
18702
|
+
};
|
|
18491
18703
|
export declare type ShepherdSlackEdge = ShepherdSubscriptionEdge & {
|
|
18492
18704
|
__typename?: 'ShepherdSlackEdge';
|
|
18493
18705
|
cursor?: Maybe<Scalars['String']>;
|