@forge/cli-shared 2.6.1-next.6 → 2.6.2-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
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.6.2-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [acf78b58]
|
|
8
|
+
- @forge/manifest@3.11.0-next.1
|
|
9
|
+
|
|
10
|
+
## 2.6.2-next.0
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [c1c93a4]
|
|
15
|
+
- @forge/manifest@3.10.1-next.0
|
|
16
|
+
|
|
17
|
+
## 2.6.1
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [02aefee]
|
|
22
|
+
- Updated dependencies [d486898]
|
|
23
|
+
- Updated dependencies [f890e0e]
|
|
24
|
+
- Updated dependencies [9298536]
|
|
25
|
+
- Updated dependencies [ee8d860]
|
|
26
|
+
- Updated dependencies [2ae0afe]
|
|
27
|
+
- Updated dependencies [91daffc]
|
|
28
|
+
- Updated dependencies [7558a5d]
|
|
29
|
+
- Updated dependencies [f543a47]
|
|
30
|
+
- Updated dependencies [8876b96]
|
|
31
|
+
- @forge/manifest@3.10.0
|
|
32
|
+
|
|
3
33
|
## 2.6.1-next.6
|
|
4
34
|
|
|
5
35
|
### Patch Changes
|
|
@@ -605,6 +605,7 @@ export declare type AppInstallationUpgradeInput = {
|
|
|
605
605
|
versionId?: Maybe<Scalars['ID']>;
|
|
606
606
|
environmentKey: Scalars['String'];
|
|
607
607
|
async?: Maybe<Scalars['Boolean']>;
|
|
608
|
+
sourceBillingType?: Maybe<SourceBillingType>;
|
|
608
609
|
};
|
|
609
610
|
export declare type AppInstallationUpgradeResponse = Payload & {
|
|
610
611
|
__typename?: 'AppInstallationUpgradeResponse';
|
|
@@ -1174,11 +1175,12 @@ export declare type BitbucketQueryBitbucketRepositoriesArgs = {
|
|
|
1174
1175
|
export declare type BitbucketQueryBitbucketWorkspaceArgs = {
|
|
1175
1176
|
id: Scalars['ID'];
|
|
1176
1177
|
};
|
|
1177
|
-
export declare type BitbucketRepository = Node & {
|
|
1178
|
+
export declare type BitbucketRepository = CodeRepository & Node & {
|
|
1178
1179
|
__typename?: 'BitbucketRepository';
|
|
1179
1180
|
id: Scalars['ID'];
|
|
1180
1181
|
name: Scalars['String'];
|
|
1181
|
-
webUrl
|
|
1182
|
+
webUrl?: Maybe<Scalars['URL']>;
|
|
1183
|
+
href?: Maybe<Scalars['URL']>;
|
|
1182
1184
|
avatar?: Maybe<BitbucketRepositoryAvatar>;
|
|
1183
1185
|
workspace?: Maybe<BitbucketWorkspace>;
|
|
1184
1186
|
jiraProjectRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
@@ -1522,6 +1524,7 @@ export declare type CardType = {
|
|
|
1522
1524
|
iconUrl?: Maybe<Scalars['String']>;
|
|
1523
1525
|
inlineCardCreate?: Maybe<InlineCardCreateConfig>;
|
|
1524
1526
|
hierarchyLevelType?: Maybe<Scalars['CardTypeHierarchyLevelType']>;
|
|
1527
|
+
hasRequiredFields?: Maybe<Scalars['Boolean']>;
|
|
1525
1528
|
};
|
|
1526
1529
|
export declare type CheckConsentPermissionByOAuthClientIdInput = {
|
|
1527
1530
|
cloudId: Scalars['ID'];
|
|
@@ -1572,6 +1575,10 @@ export declare type CodeInJiraVcsProvider = {
|
|
|
1572
1575
|
providerId?: Maybe<Scalars['String']>;
|
|
1573
1576
|
baseUrl?: Maybe<Scalars['String']>;
|
|
1574
1577
|
};
|
|
1578
|
+
export declare type CodeRepository = {
|
|
1579
|
+
name: Scalars['String'];
|
|
1580
|
+
href?: Maybe<Scalars['URL']>;
|
|
1581
|
+
};
|
|
1575
1582
|
export declare type Column = {
|
|
1576
1583
|
__typename?: 'Column';
|
|
1577
1584
|
id?: Maybe<Scalars['ID']>;
|
|
@@ -2099,7 +2106,6 @@ export declare type CompassCreateComponentSubscriptionInput = {
|
|
|
2099
2106
|
};
|
|
2100
2107
|
export declare type CompassCreateComponentSubscriptionPayload = Payload & {
|
|
2101
2108
|
__typename?: 'CompassCreateComponentSubscriptionPayload';
|
|
2102
|
-
component?: Maybe<CompassComponent>;
|
|
2103
2109
|
success: Scalars['Boolean'];
|
|
2104
2110
|
errors?: Maybe<Array<MutationError>>;
|
|
2105
2111
|
};
|
|
@@ -2182,6 +2188,7 @@ export declare type CompassCreateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
|
2182
2188
|
weight: Scalars['Int'];
|
|
2183
2189
|
customFieldDefinitionId: Scalars['ID'];
|
|
2184
2190
|
comparator: CompassCriteriaBooleanComparatorOptions;
|
|
2191
|
+
comparatorValue: Scalars['Boolean'];
|
|
2185
2192
|
};
|
|
2186
2193
|
export declare type CompassCreateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
2187
2194
|
weight: Scalars['Int'];
|
|
@@ -2232,6 +2239,7 @@ export declare type CompassCreateMetricSourceInput = {
|
|
|
2232
2239
|
metricDefinitionId: Scalars['ID'];
|
|
2233
2240
|
externalMetricSourceId: Scalars['ID'];
|
|
2234
2241
|
url?: Maybe<Scalars['String']>;
|
|
2242
|
+
derived?: Maybe<Scalars['Boolean']>;
|
|
2235
2243
|
};
|
|
2236
2244
|
export declare type CompassCreateMetricSourcePayload = Payload & {
|
|
2237
2245
|
__typename?: 'CompassCreateMetricSourcePayload';
|
|
@@ -2265,8 +2273,7 @@ export declare type CompassCreateTeamCheckinResponseRichText = {
|
|
|
2265
2273
|
adf?: Maybe<Scalars['String']>;
|
|
2266
2274
|
};
|
|
2267
2275
|
export declare enum CompassCriteriaBooleanComparatorOptions {
|
|
2268
|
-
|
|
2269
|
-
IsFalse = "IS_FALSE"
|
|
2276
|
+
Equals = "EQUALS"
|
|
2270
2277
|
}
|
|
2271
2278
|
export declare enum CompassCriteriaNumberComparatorOptions {
|
|
2272
2279
|
Equals = "EQUALS",
|
|
@@ -2617,6 +2624,7 @@ export declare type CompassHasCustomBooleanFieldScorecardCriteria = CompassScore
|
|
|
2617
2624
|
weight: Scalars['Int'];
|
|
2618
2625
|
customFieldDefinition?: Maybe<CompassCustomBooleanFieldDefinition>;
|
|
2619
2626
|
comparator?: Maybe<CompassCriteriaBooleanComparatorOptions>;
|
|
2627
|
+
comparatorValue?: Maybe<Scalars['Boolean']>;
|
|
2620
2628
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
2621
2629
|
};
|
|
2622
2630
|
export declare type CompassHasCustomBooleanFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -2832,6 +2840,7 @@ export declare type CompassMetricSource = {
|
|
|
2832
2840
|
forgeAppId?: Maybe<Scalars['ID']>;
|
|
2833
2841
|
values?: Maybe<CompassMetricSourceValuesQueryResult>;
|
|
2834
2842
|
component?: Maybe<CompassComponent>;
|
|
2843
|
+
derivedFrom?: Maybe<Array<EventSource>>;
|
|
2835
2844
|
};
|
|
2836
2845
|
export declare type CompassMetricSourceValuesArgs = {
|
|
2837
2846
|
query?: Maybe<CompassMetricSourceValuesQuery>;
|
|
@@ -3171,6 +3180,7 @@ export declare type CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
|
3171
3180
|
weight?: Maybe<Scalars['Int']>;
|
|
3172
3181
|
customFieldDefinitionId?: Maybe<Scalars['ID']>;
|
|
3173
3182
|
comparator?: Maybe<CompassCriteriaBooleanComparatorOptions>;
|
|
3183
|
+
comparatorValue?: Maybe<Scalars['Boolean']>;
|
|
3174
3184
|
};
|
|
3175
3185
|
export declare type CompassUpdateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
3176
3186
|
id: Scalars['ID'];
|
|
@@ -3338,13 +3348,13 @@ export declare enum ConfluenceBlogPostStatus {
|
|
|
3338
3348
|
export declare type ConfluenceBlogPostVersion = {
|
|
3339
3349
|
__typename?: 'ConfluenceBlogPostVersion';
|
|
3340
3350
|
author?: Maybe<ConfluenceUserInfo>;
|
|
3341
|
-
createdAt?: Maybe<Scalars['
|
|
3351
|
+
createdAt?: Maybe<Scalars['DateTime']>;
|
|
3342
3352
|
number?: Maybe<Scalars['Int']>;
|
|
3343
3353
|
};
|
|
3344
3354
|
export declare type ConfluenceBlogPostViewerSummary = {
|
|
3345
3355
|
__typename?: 'ConfluenceBlogPostViewerSummary';
|
|
3346
3356
|
lastContribution?: Maybe<ConfluenceContribution>;
|
|
3347
|
-
lastSeenAt?: Maybe<Scalars['
|
|
3357
|
+
lastSeenAt?: Maybe<Scalars['DateTime']>;
|
|
3348
3358
|
};
|
|
3349
3359
|
export declare enum ConfluenceCollaborativeEditingService {
|
|
3350
3360
|
Ncs = "NCS",
|
|
@@ -3456,7 +3466,7 @@ export declare type ConfluenceCreateFooterCommentOnBlogPostInput = {
|
|
|
3456
3466
|
};
|
|
3457
3467
|
export declare type ConfluenceCreateFooterCommentOnBlogPostPayload = Payload & {
|
|
3458
3468
|
__typename?: 'ConfluenceCreateFooterCommentOnBlogPostPayload';
|
|
3459
|
-
comment?: Maybe<
|
|
3469
|
+
comment?: Maybe<ConfluenceFooterComment>;
|
|
3460
3470
|
errors?: Maybe<Array<MutationError>>;
|
|
3461
3471
|
success: Scalars['Boolean'];
|
|
3462
3472
|
};
|
|
@@ -3466,7 +3476,7 @@ export declare type ConfluenceCreateFooterCommentOnPageInput = {
|
|
|
3466
3476
|
};
|
|
3467
3477
|
export declare type ConfluenceCreateFooterCommentOnPagePayload = Payload & {
|
|
3468
3478
|
__typename?: 'ConfluenceCreateFooterCommentOnPagePayload';
|
|
3469
|
-
comment?: Maybe<
|
|
3479
|
+
comment?: Maybe<ConfluenceFooterComment>;
|
|
3470
3480
|
errors?: Maybe<Array<MutationError>>;
|
|
3471
3481
|
success: Scalars['Boolean'];
|
|
3472
3482
|
};
|
|
@@ -3592,13 +3602,13 @@ export declare type ConfluenceInlineTask = {
|
|
|
3592
3602
|
completedBy?: Maybe<ConfluenceUserInfo>;
|
|
3593
3603
|
container?: Maybe<ConfluenceInlineTaskContainer>;
|
|
3594
3604
|
createdBy?: Maybe<ConfluenceUserInfo>;
|
|
3595
|
-
|
|
3596
|
-
|
|
3605
|
+
createdAt?: Maybe<Scalars['DateTime']>;
|
|
3606
|
+
dueAt?: Maybe<Scalars['DateTime']>;
|
|
3597
3607
|
globalId?: Maybe<Scalars['ID']>;
|
|
3598
3608
|
id: Scalars['ID'];
|
|
3599
3609
|
status?: Maybe<ConfluenceInlineTaskStatus>;
|
|
3600
3610
|
taskId?: Maybe<Scalars['ID']>;
|
|
3601
|
-
|
|
3611
|
+
updatedAt?: Maybe<Scalars['DateTime']>;
|
|
3602
3612
|
};
|
|
3603
3613
|
export declare type ConfluenceInlineTaskContainer = ConfluenceBlogPost | ConfluencePage;
|
|
3604
3614
|
export declare enum ConfluenceInlineTaskStatus {
|
|
@@ -3645,7 +3655,6 @@ export declare type ConfluenceMutationApi = {
|
|
|
3645
3655
|
deleteUserProperty?: Maybe<ConfluenceDeleteUserPropertyPayload>;
|
|
3646
3656
|
};
|
|
3647
3657
|
export declare type ConfluenceMutationApiCreateBlogPostArgs = {
|
|
3648
|
-
cloudId: Scalars['ID'];
|
|
3649
3658
|
input: ConfluenceCreateBlogPostInput;
|
|
3650
3659
|
};
|
|
3651
3660
|
export declare type ConfluenceMutationApiCreateBlogPostPropertyArgs = {
|
|
@@ -3820,13 +3829,13 @@ export declare enum ConfluencePageStatus {
|
|
|
3820
3829
|
export declare type ConfluencePageVersion = {
|
|
3821
3830
|
__typename?: 'ConfluencePageVersion';
|
|
3822
3831
|
author?: Maybe<ConfluenceUserInfo>;
|
|
3823
|
-
createdAt?: Maybe<Scalars['
|
|
3832
|
+
createdAt?: Maybe<Scalars['DateTime']>;
|
|
3824
3833
|
number?: Maybe<Scalars['Int']>;
|
|
3825
3834
|
};
|
|
3826
3835
|
export declare type ConfluencePageViewerSummary = {
|
|
3827
3836
|
__typename?: 'ConfluencePageViewerSummary';
|
|
3828
3837
|
lastContribution?: Maybe<ConfluenceContribution>;
|
|
3829
|
-
lastSeenAt?: Maybe<Scalars['
|
|
3838
|
+
lastSeenAt?: Maybe<Scalars['DateTime']>;
|
|
3830
3839
|
};
|
|
3831
3840
|
export declare type ConfluencePublishBlogPostInput = {
|
|
3832
3841
|
id: Scalars['ID'];
|
|
@@ -4108,7 +4117,6 @@ export declare type ConfluenceUpdateValueUserPropertyPayload = Payload & {
|
|
|
4108
4117
|
export declare type ConfluenceUserInfo = {
|
|
4109
4118
|
__typename?: 'ConfluenceUserInfo';
|
|
4110
4119
|
user?: Maybe<User>;
|
|
4111
|
-
personalSpace?: Maybe<ConfluenceSpace>;
|
|
4112
4120
|
};
|
|
4113
4121
|
export declare type ConfluenceUserProperty = {
|
|
4114
4122
|
__typename?: 'ConfluenceUserProperty';
|
|
@@ -5745,11 +5753,12 @@ export declare type DevOpsSummarisedDeployments = {
|
|
|
5745
5753
|
mostRelevantLastUpdated?: Maybe<Scalars['DateTime']>;
|
|
5746
5754
|
deploymentEnvironment?: Maybe<DevOpsEnvironment>;
|
|
5747
5755
|
};
|
|
5748
|
-
export declare type DevOpsThirdPartyRepository = {
|
|
5756
|
+
export declare type DevOpsThirdPartyRepository = CodeRepository & {
|
|
5749
5757
|
__typename?: 'DevOpsThirdPartyRepository';
|
|
5750
5758
|
id: Scalars['ID'];
|
|
5751
5759
|
webUrl?: Maybe<Scalars['URL']>;
|
|
5752
|
-
|
|
5760
|
+
href?: Maybe<Scalars['URL']>;
|
|
5761
|
+
name: Scalars['String'];
|
|
5753
5762
|
avatar?: Maybe<DevOpsAvatar>;
|
|
5754
5763
|
};
|
|
5755
5764
|
export declare type DevOpsTool = Node & {
|
|
@@ -6271,6 +6280,7 @@ export declare type ForgeAlertsConfigData = {
|
|
|
6271
6280
|
description?: Maybe<Scalars['String']>;
|
|
6272
6281
|
environment: Scalars['String'];
|
|
6273
6282
|
isMuted: Scalars['Boolean'];
|
|
6283
|
+
lastTriggeredAt?: Maybe<Scalars['Int']>;
|
|
6274
6284
|
metricName: Scalars['String'];
|
|
6275
6285
|
status: ForgeAlertsStatus;
|
|
6276
6286
|
triggerValue: Scalars['Float'];
|
|
@@ -6325,7 +6335,6 @@ export declare type ForgeMetricsData = {
|
|
|
6325
6335
|
name: Scalars['String'];
|
|
6326
6336
|
type: ForgeMetricsDataType;
|
|
6327
6337
|
series?: Maybe<Array<ForgeMetricsSeries>>;
|
|
6328
|
-
resolution: ForgeMetricsResolution;
|
|
6329
6338
|
};
|
|
6330
6339
|
export declare enum ForgeMetricsDataType {
|
|
6331
6340
|
DateTime = "DATE_TIME",
|
|
@@ -6351,11 +6360,19 @@ export declare type ForgeMetricsErrorsSeries = ForgeMetricsSeries & {
|
|
|
6351
6360
|
groups: Array<ForgeMetricsLabelGroup>;
|
|
6352
6361
|
data: Array<ForgeMetricsErrorsDataPoint>;
|
|
6353
6362
|
};
|
|
6363
|
+
export declare type ForgeMetricsErrorsValueData = ForgeMetricsData & {
|
|
6364
|
+
__typename?: 'ForgeMetricsErrorsValueData';
|
|
6365
|
+
name: Scalars['String'];
|
|
6366
|
+
type: ForgeMetricsDataType;
|
|
6367
|
+
series: Array<ForgeMetricsErrorsSeries>;
|
|
6368
|
+
};
|
|
6369
|
+
export declare type ForgeMetricsErrorsValueResult = ForgeMetricsErrorsValueData | QueryError;
|
|
6354
6370
|
export declare enum ForgeMetricsGroupByDimensions {
|
|
6355
6371
|
UserTier = "USER_TIER",
|
|
6356
6372
|
EnvironmentId = "ENVIRONMENT_ID",
|
|
6357
6373
|
ErrorType = "ERROR_TYPE",
|
|
6358
|
-
Version = "VERSION"
|
|
6374
|
+
Version = "VERSION",
|
|
6375
|
+
ContextAri = "CONTEXT_ARI"
|
|
6359
6376
|
}
|
|
6360
6377
|
export declare type ForgeMetricsInstallationContext = {
|
|
6361
6378
|
__typename?: 'ForgeMetricsInstallationContext';
|
|
@@ -6390,6 +6407,13 @@ export declare type ForgeMetricsInvocationSeries = ForgeMetricsSeries & {
|
|
|
6390
6407
|
data: Array<ForgeMetricsInvocationDataPoint>;
|
|
6391
6408
|
};
|
|
6392
6409
|
export declare type ForgeMetricsInvocationsResult = ForgeMetricsInvocationData | QueryError;
|
|
6410
|
+
export declare type ForgeMetricsInvocationsValueData = ForgeMetricsData & {
|
|
6411
|
+
__typename?: 'ForgeMetricsInvocationsValueData';
|
|
6412
|
+
name: Scalars['String'];
|
|
6413
|
+
type: ForgeMetricsDataType;
|
|
6414
|
+
series: Array<ForgeMetricsInvocationSeries>;
|
|
6415
|
+
};
|
|
6416
|
+
export declare type ForgeMetricsInvocationsValueResult = ForgeMetricsInvocationsValueData | QueryError;
|
|
6393
6417
|
export declare type ForgeMetricsLabelGroup = {
|
|
6394
6418
|
__typename?: 'ForgeMetricsLabelGroup';
|
|
6395
6419
|
key: Scalars['String'];
|
|
@@ -6401,7 +6425,9 @@ export declare type ForgeMetricsQuery = {
|
|
|
6401
6425
|
successRate: ForgeMetricsSuccessRateResult;
|
|
6402
6426
|
successRateValue: ForgeMetricsSuccessRateValueResult;
|
|
6403
6427
|
invocations: ForgeMetricsInvocationsResult;
|
|
6428
|
+
invocationsValue: ForgeMetricsInvocationsValueResult;
|
|
6404
6429
|
errors: ForgeMetricsErrorsResult;
|
|
6430
|
+
errorsValue: ForgeMetricsErrorsValueResult;
|
|
6405
6431
|
sites: ForgeMetricsSitesResult;
|
|
6406
6432
|
};
|
|
6407
6433
|
export declare type ForgeMetricsQuerySuccessRateArgs = {
|
|
@@ -6413,9 +6439,15 @@ export declare type ForgeMetricsQuerySuccessRateValueArgs = {
|
|
|
6413
6439
|
export declare type ForgeMetricsQueryInvocationsArgs = {
|
|
6414
6440
|
query: ForgeMetricsQueryInput;
|
|
6415
6441
|
};
|
|
6442
|
+
export declare type ForgeMetricsQueryInvocationsValueArgs = {
|
|
6443
|
+
query: ForgeMetricsQueryInput;
|
|
6444
|
+
};
|
|
6416
6445
|
export declare type ForgeMetricsQueryErrorsArgs = {
|
|
6417
6446
|
query: ForgeMetricsQueryInput;
|
|
6418
6447
|
};
|
|
6448
|
+
export declare type ForgeMetricsQueryErrorsValueArgs = {
|
|
6449
|
+
query: ForgeMetricsQueryInput;
|
|
6450
|
+
};
|
|
6419
6451
|
export declare type ForgeMetricsQuerySitesArgs = {
|
|
6420
6452
|
query: ForgeMetricsQueryInput;
|
|
6421
6453
|
};
|
|
@@ -6481,7 +6513,6 @@ export declare type ForgeMetricsSuccessRateValueData = ForgeMetricsData & {
|
|
|
6481
6513
|
name: Scalars['String'];
|
|
6482
6514
|
type: ForgeMetricsDataType;
|
|
6483
6515
|
series: Array<ForgeMetricsSuccessRateSeries>;
|
|
6484
|
-
resolution: ForgeMetricsResolution;
|
|
6485
6516
|
};
|
|
6486
6517
|
export declare type ForgeMetricsSuccessRateValueResult = ForgeMetricsSuccessRateValueData | QueryError;
|
|
6487
6518
|
export declare type FortifiedMarketplaceApp = {
|
|
@@ -6747,6 +6778,7 @@ export declare type HelpCenterUpdateCollectionsOrderPayload = Payload & {
|
|
|
6747
6778
|
export declare type HelpObjectStoreArticle = HelpObjectStoreHelpObject & Node & {
|
|
6748
6779
|
__typename?: 'HelpObjectStoreArticle';
|
|
6749
6780
|
id: Scalars['ID'];
|
|
6781
|
+
ari: Scalars['ID'];
|
|
6750
6782
|
title?: Maybe<Scalars['String']>;
|
|
6751
6783
|
description?: Maybe<Scalars['String']>;
|
|
6752
6784
|
icon?: Maybe<HelpObjectStoreIcon>;
|
|
@@ -6771,6 +6803,7 @@ export declare type HelpObjectStoreCreateEntityMappingPayload = Payload & {
|
|
|
6771
6803
|
};
|
|
6772
6804
|
export declare type HelpObjectStoreHelpObject = {
|
|
6773
6805
|
id: Scalars['ID'];
|
|
6806
|
+
ari: Scalars['ID'];
|
|
6774
6807
|
title?: Maybe<Scalars['String']>;
|
|
6775
6808
|
description?: Maybe<Scalars['String']>;
|
|
6776
6809
|
icon?: Maybe<HelpObjectStoreIcon>;
|
|
@@ -6808,13 +6841,14 @@ export declare type HelpObjectStoreQueryApiArticlesArgs = {
|
|
|
6808
6841
|
};
|
|
6809
6842
|
export declare type HelpObjectStoreQueryError = {
|
|
6810
6843
|
__typename?: 'HelpObjectStoreQueryError';
|
|
6811
|
-
|
|
6844
|
+
ari: Scalars['ID'];
|
|
6812
6845
|
message?: Maybe<Scalars['String']>;
|
|
6813
6846
|
extensions?: Maybe<Array<QueryErrorExtension>>;
|
|
6814
6847
|
};
|
|
6815
6848
|
export declare type HelpObjectStoreRequestForm = HelpObjectStoreHelpObject & Node & {
|
|
6816
6849
|
__typename?: 'HelpObjectStoreRequestForm';
|
|
6817
6850
|
id: Scalars['ID'];
|
|
6851
|
+
ari: Scalars['ID'];
|
|
6818
6852
|
title?: Maybe<Scalars['String']>;
|
|
6819
6853
|
description?: Maybe<Scalars['String']>;
|
|
6820
6854
|
icon?: Maybe<HelpObjectStoreIcon>;
|
|
@@ -7474,6 +7508,7 @@ export declare type JiraCmdbField = Node & JiraIssueField & JiraIssueFieldConfig
|
|
|
7474
7508
|
searchUrl?: Maybe<Scalars['String']>;
|
|
7475
7509
|
selectedCmdbObjects?: Maybe<Array<Maybe<JiraCmdbObject>>>;
|
|
7476
7510
|
selectedCmdbObjectsConnection?: Maybe<JiraCmdbObjectConnection>;
|
|
7511
|
+
wasInsightRequestSuccessful?: Maybe<Scalars['Boolean']>;
|
|
7477
7512
|
isInsightAvailable?: Maybe<Scalars['Boolean']>;
|
|
7478
7513
|
cmdbFieldConfig?: Maybe<JiraCmdbFieldConfig>;
|
|
7479
7514
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
@@ -7588,6 +7623,7 @@ export declare type JiraClassicConnectDevOpsProvider = JiraDevOpsProvider & {
|
|
|
7588
7623
|
};
|
|
7589
7624
|
export declare type JiraCmdbAttribute = {
|
|
7590
7625
|
__typename?: 'JiraCmdbAttribute';
|
|
7626
|
+
attributeId?: Maybe<Scalars['String']>;
|
|
7591
7627
|
objectTypeAttributeId?: Maybe<Scalars['String']>;
|
|
7592
7628
|
objectTypeAttribute?: Maybe<JiraCmdbObjectTypeAttribute>;
|
|
7593
7629
|
objectAttributeValues?: Maybe<JiraCmdbObjectAttributeValueConnection>;
|
|
@@ -8566,6 +8602,7 @@ export declare type JiraIssue = Node & {
|
|
|
8566
8602
|
issueTypesForHierarchySame?: Maybe<JiraIssueTypeConnection>;
|
|
8567
8603
|
errorRetrievingData?: Maybe<Scalars['Boolean']>;
|
|
8568
8604
|
storyPointsField?: Maybe<JiraNumberField>;
|
|
8605
|
+
storyPointEstimateField?: Maybe<JiraNumberField>;
|
|
8569
8606
|
screenId?: Maybe<Scalars['Long']>;
|
|
8570
8607
|
};
|
|
8571
8608
|
export declare type JiraIssueFieldsArgs = {
|
|
@@ -10427,6 +10464,7 @@ export declare type JiraProject = Node & {
|
|
|
10427
10464
|
status?: Maybe<JiraProjectStatus>;
|
|
10428
10465
|
similarIssues?: Maybe<JiraSimilarIssues>;
|
|
10429
10466
|
canSetIssueRestriction?: Maybe<Scalars['Boolean']>;
|
|
10467
|
+
navigationMetadata?: Maybe<JiraProjectNavigationMetadata>;
|
|
10430
10468
|
devOpsToolRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
10431
10469
|
repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
10432
10470
|
devOpsServiceRelationships?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
@@ -10678,6 +10716,7 @@ export declare type JiraProjectFilterInput = {
|
|
|
10678
10716
|
keyword?: Maybe<Scalars['String']>;
|
|
10679
10717
|
sortBy?: Maybe<JiraProjectSortInput>;
|
|
10680
10718
|
};
|
|
10719
|
+
export declare type JiraProjectNavigationMetadata = JiraSoftwareProjectNavigationMetadata | JiraServiceManagementProjectNavigationMetadata | JiraWorkManagementProjectNavigationMetadata;
|
|
10681
10720
|
export declare type JiraProjectPermission = {
|
|
10682
10721
|
__typename?: 'JiraProjectPermission';
|
|
10683
10722
|
key: Scalars['String'];
|
|
@@ -11608,6 +11647,11 @@ export declare enum JiraServiceManagementPractice {
|
|
|
11608
11647
|
ChangeManagement = "CHANGE_MANAGEMENT",
|
|
11609
11648
|
PostIncidentReview = "POST_INCIDENT_REVIEW"
|
|
11610
11649
|
}
|
|
11650
|
+
export declare type JiraServiceManagementProjectNavigationMetadata = {
|
|
11651
|
+
__typename?: 'JiraServiceManagementProjectNavigationMetadata';
|
|
11652
|
+
queueId: Scalars['ID'];
|
|
11653
|
+
queueName: Scalars['String'];
|
|
11654
|
+
};
|
|
11611
11655
|
export declare type JiraServiceManagementRequestFeedbackField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
11612
11656
|
__typename?: 'JiraServiceManagementRequestFeedbackField';
|
|
11613
11657
|
id: Scalars['ID'];
|
|
@@ -11937,6 +11981,13 @@ export declare type JiraSingleVersionPickerFieldVersionsArgs = {
|
|
|
11937
11981
|
before?: Maybe<Scalars['String']>;
|
|
11938
11982
|
suggested?: Maybe<Scalars['Boolean']>;
|
|
11939
11983
|
};
|
|
11984
|
+
export declare type JiraSoftwareProjectNavigationMetadata = {
|
|
11985
|
+
__typename?: 'JiraSoftwareProjectNavigationMetadata';
|
|
11986
|
+
id: Scalars['ID'];
|
|
11987
|
+
boardId: Scalars['ID'];
|
|
11988
|
+
boardName: Scalars['String'];
|
|
11989
|
+
isSimpleBoard: Scalars['Boolean'];
|
|
11990
|
+
};
|
|
11940
11991
|
export declare type JiraSprint = Node & {
|
|
11941
11992
|
__typename?: 'JiraSprint';
|
|
11942
11993
|
id: Scalars['ID'];
|
|
@@ -12463,6 +12514,10 @@ export declare type JiraWorkLogEdge = {
|
|
|
12463
12514
|
node?: Maybe<JiraWorklog>;
|
|
12464
12515
|
cursor: Scalars['String'];
|
|
12465
12516
|
};
|
|
12517
|
+
export declare type JiraWorkManagementProjectNavigationMetadata = {
|
|
12518
|
+
__typename?: 'JiraWorkManagementProjectNavigationMetadata';
|
|
12519
|
+
boardName: Scalars['String'];
|
|
12520
|
+
};
|
|
12466
12521
|
export declare type JiraWorklog = Node & {
|
|
12467
12522
|
__typename?: 'JiraWorklog';
|
|
12468
12523
|
id: Scalars['ID'];
|
|
@@ -15215,6 +15270,7 @@ export declare enum RateLimitingCurrency {
|
|
|
15215
15270
|
TeamsCurrency = "TEAMS_CURRENCY",
|
|
15216
15271
|
TeamMembersCurrency = "TEAM_MEMBERS_CURRENCY",
|
|
15217
15272
|
CompassInsertMetricValueCurrency = "COMPASS_INSERT_METRIC_VALUE_CURRENCY",
|
|
15273
|
+
CompassSynchronizeLinkAssociationsCurrency = "COMPASS_SYNCHRONIZE_LINK_ASSOCIATIONS_CURRENCY",
|
|
15218
15274
|
ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
|
|
15219
15275
|
DevopsServiceReadCurrency = "DEVOPS_SERVICE_READ_CURRENCY",
|
|
15220
15276
|
DevopsServiceWriteCurrency = "DEVOPS_SERVICE_WRITE_CURRENCY",
|
|
@@ -15717,6 +15773,7 @@ export declare type RoadmapUserConfiguration = {
|
|
|
15717
15773
|
creationPreferences: RoadmapCreationPreferences;
|
|
15718
15774
|
isDependenciesVisible: Scalars['Boolean'];
|
|
15719
15775
|
isProgressVisible: Scalars['Boolean'];
|
|
15776
|
+
isWarningsVisible: Scalars['Boolean'];
|
|
15720
15777
|
listWidth: Scalars['Long'];
|
|
15721
15778
|
timelineMode: RoadmapTimelineMode;
|
|
15722
15779
|
epicView: RoadmapEpicView;
|
|
@@ -16163,9 +16220,14 @@ export declare type SearchAnalyticsInput = {
|
|
|
16163
16220
|
};
|
|
16164
16221
|
export declare type SearchBoardFilter = {
|
|
16165
16222
|
projectARI?: Maybe<Scalars['ID']>;
|
|
16223
|
+
userARI?: Maybe<Scalars['ID']>;
|
|
16166
16224
|
negateProjectFilter?: Maybe<Scalars['Boolean']>;
|
|
16167
|
-
boardTypes?: Maybe<Array<
|
|
16225
|
+
boardTypes?: Maybe<Array<SearchBoardProductType>>;
|
|
16168
16226
|
};
|
|
16227
|
+
export declare enum SearchBoardProductType {
|
|
16228
|
+
Software = "SOFTWARE",
|
|
16229
|
+
Business = "BUSINESS"
|
|
16230
|
+
}
|
|
16169
16231
|
export declare type SearchConfluenceFilter = {
|
|
16170
16232
|
spacesFilter?: Maybe<Array<Scalars['String']>>;
|
|
16171
16233
|
contributorsFilter?: Maybe<Array<Scalars['String']>>;
|
|
@@ -16231,10 +16293,6 @@ export declare type SearchItemConnection = {
|
|
|
16231
16293
|
pageInfo: PageInfo;
|
|
16232
16294
|
totalCount?: Maybe<Scalars['Int']>;
|
|
16233
16295
|
};
|
|
16234
|
-
export declare enum SearchJiraBoardType {
|
|
16235
|
-
Jsw = "JSW",
|
|
16236
|
-
Jwm = "JWM"
|
|
16237
|
-
}
|
|
16238
16296
|
export declare type SearchJiraFilter = {
|
|
16239
16297
|
boardFilter?: Maybe<SearchBoardFilter>;
|
|
16240
16298
|
projectFilter?: Maybe<SearchJiraProjectFilter>;
|
|
@@ -16284,8 +16342,10 @@ export declare type SearchResultJiraBoard = SearchResult & {
|
|
|
16284
16342
|
type: SearchResultType;
|
|
16285
16343
|
description: Scalars['String'];
|
|
16286
16344
|
favourite: Scalars['Boolean'];
|
|
16287
|
-
boardId?: Maybe<Scalars['
|
|
16345
|
+
boardId?: Maybe<Scalars['ID']>;
|
|
16288
16346
|
container?: Maybe<SearchResultJiraBoardContainer>;
|
|
16347
|
+
product: SearchBoardProductType;
|
|
16348
|
+
isSimpleBoard: Scalars['Boolean'];
|
|
16289
16349
|
};
|
|
16290
16350
|
export declare type SearchResultJiraBoardContainer = SearchResultJiraBoardProjectContainer | SearchResultJiraBoardUserContainer;
|
|
16291
16351
|
export declare type SearchResultJiraBoardProjectContainer = {
|
|
@@ -16313,10 +16373,11 @@ export declare type SearchResultJiraProject = SearchResult & {
|
|
|
16313
16373
|
type: SearchResultType;
|
|
16314
16374
|
description: Scalars['String'];
|
|
16315
16375
|
favourite: Scalars['Boolean'];
|
|
16376
|
+
canView: Scalars['Boolean'];
|
|
16316
16377
|
simplified: Scalars['Boolean'];
|
|
16317
16378
|
landingPageInfo?: Maybe<SearchResultProjectLandingPageInfo>;
|
|
16318
16379
|
};
|
|
16319
|
-
export declare type SearchResultProjectLandingPageInfo = SearchResultSoftwareProjectLandingPageInfo | SearchResultServiceDeskProjectLandingPageInfo;
|
|
16380
|
+
export declare type SearchResultProjectLandingPageInfo = SearchResultSoftwareProjectLandingPageInfo | SearchResultServiceDeskProjectLandingPageInfo | SearchResultWorkManagementProjectLandingPageInfo;
|
|
16320
16381
|
export declare type SearchResultServiceDeskProjectLandingPageInfo = {
|
|
16321
16382
|
__typename?: 'SearchResultServiceDeskProjectLandingPageInfo';
|
|
16322
16383
|
id: Scalars['ID'];
|
|
@@ -16338,6 +16399,10 @@ export declare enum SearchResultType {
|
|
|
16338
16399
|
Plan = "plan",
|
|
16339
16400
|
Project = "project"
|
|
16340
16401
|
}
|
|
16402
|
+
export declare type SearchResultWorkManagementProjectLandingPageInfo = {
|
|
16403
|
+
__typename?: 'SearchResultWorkManagementProjectLandingPageInfo';
|
|
16404
|
+
boardName: Scalars['String'];
|
|
16405
|
+
};
|
|
16341
16406
|
export declare type SearchSpace = {
|
|
16342
16407
|
__typename?: 'SearchSpace';
|
|
16343
16408
|
key: Scalars['String'];
|