@forge/cli-shared 2.6.1 → 2.6.2-next.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
CHANGED
|
@@ -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'];
|
|
@@ -2265,8 +2272,7 @@ export declare type CompassCreateTeamCheckinResponseRichText = {
|
|
|
2265
2272
|
adf?: Maybe<Scalars['String']>;
|
|
2266
2273
|
};
|
|
2267
2274
|
export declare enum CompassCriteriaBooleanComparatorOptions {
|
|
2268
|
-
|
|
2269
|
-
IsFalse = "IS_FALSE"
|
|
2275
|
+
Equals = "EQUALS"
|
|
2270
2276
|
}
|
|
2271
2277
|
export declare enum CompassCriteriaNumberComparatorOptions {
|
|
2272
2278
|
Equals = "EQUALS",
|
|
@@ -2617,6 +2623,7 @@ export declare type CompassHasCustomBooleanFieldScorecardCriteria = CompassScore
|
|
|
2617
2623
|
weight: Scalars['Int'];
|
|
2618
2624
|
customFieldDefinition?: Maybe<CompassCustomBooleanFieldDefinition>;
|
|
2619
2625
|
comparator?: Maybe<CompassCriteriaBooleanComparatorOptions>;
|
|
2626
|
+
comparatorValue?: Maybe<Scalars['Boolean']>;
|
|
2620
2627
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
2621
2628
|
};
|
|
2622
2629
|
export declare type CompassHasCustomBooleanFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -3171,6 +3178,7 @@ export declare type CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
|
3171
3178
|
weight?: Maybe<Scalars['Int']>;
|
|
3172
3179
|
customFieldDefinitionId?: Maybe<Scalars['ID']>;
|
|
3173
3180
|
comparator?: Maybe<CompassCriteriaBooleanComparatorOptions>;
|
|
3181
|
+
comparatorValue?: Maybe<Scalars['Boolean']>;
|
|
3174
3182
|
};
|
|
3175
3183
|
export declare type CompassUpdateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
3176
3184
|
id: Scalars['ID'];
|
|
@@ -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 & {
|
|
@@ -5975,6 +5984,7 @@ export declare type DevOpsToolSort = {
|
|
|
5975
5984
|
name?: Maybe<DevOpsToolSortOrder>;
|
|
5976
5985
|
supportsContainers?: Maybe<DevOpsToolSortOrder>;
|
|
5977
5986
|
integration?: Maybe<DevOpsToolSortOrder>;
|
|
5987
|
+
integrationName?: Maybe<DevOpsToolSortOrder>;
|
|
5978
5988
|
};
|
|
5979
5989
|
export declare enum DevOpsToolSortOrder {
|
|
5980
5990
|
Asc = "ASC",
|
|
@@ -6271,6 +6281,7 @@ export declare type ForgeAlertsConfigData = {
|
|
|
6271
6281
|
description?: Maybe<Scalars['String']>;
|
|
6272
6282
|
environment: Scalars['String'];
|
|
6273
6283
|
isMuted: Scalars['Boolean'];
|
|
6284
|
+
lastTriggeredAt?: Maybe<Scalars['Int']>;
|
|
6274
6285
|
metricName: Scalars['String'];
|
|
6275
6286
|
status: ForgeAlertsStatus;
|
|
6276
6287
|
triggerValue: Scalars['Float'];
|
|
@@ -6325,7 +6336,6 @@ export declare type ForgeMetricsData = {
|
|
|
6325
6336
|
name: Scalars['String'];
|
|
6326
6337
|
type: ForgeMetricsDataType;
|
|
6327
6338
|
series?: Maybe<Array<ForgeMetricsSeries>>;
|
|
6328
|
-
resolution: ForgeMetricsResolution;
|
|
6329
6339
|
};
|
|
6330
6340
|
export declare enum ForgeMetricsDataType {
|
|
6331
6341
|
DateTime = "DATE_TIME",
|
|
@@ -6351,11 +6361,19 @@ export declare type ForgeMetricsErrorsSeries = ForgeMetricsSeries & {
|
|
|
6351
6361
|
groups: Array<ForgeMetricsLabelGroup>;
|
|
6352
6362
|
data: Array<ForgeMetricsErrorsDataPoint>;
|
|
6353
6363
|
};
|
|
6364
|
+
export declare type ForgeMetricsErrorsValueData = ForgeMetricsData & {
|
|
6365
|
+
__typename?: 'ForgeMetricsErrorsValueData';
|
|
6366
|
+
name: Scalars['String'];
|
|
6367
|
+
type: ForgeMetricsDataType;
|
|
6368
|
+
series: Array<ForgeMetricsErrorsSeries>;
|
|
6369
|
+
};
|
|
6370
|
+
export declare type ForgeMetricsErrorsValueResult = ForgeMetricsErrorsValueData | QueryError;
|
|
6354
6371
|
export declare enum ForgeMetricsGroupByDimensions {
|
|
6355
6372
|
UserTier = "USER_TIER",
|
|
6356
6373
|
EnvironmentId = "ENVIRONMENT_ID",
|
|
6357
6374
|
ErrorType = "ERROR_TYPE",
|
|
6358
|
-
Version = "VERSION"
|
|
6375
|
+
Version = "VERSION",
|
|
6376
|
+
ContextAri = "CONTEXT_ARI"
|
|
6359
6377
|
}
|
|
6360
6378
|
export declare type ForgeMetricsInstallationContext = {
|
|
6361
6379
|
__typename?: 'ForgeMetricsInstallationContext';
|
|
@@ -6390,6 +6408,13 @@ export declare type ForgeMetricsInvocationSeries = ForgeMetricsSeries & {
|
|
|
6390
6408
|
data: Array<ForgeMetricsInvocationDataPoint>;
|
|
6391
6409
|
};
|
|
6392
6410
|
export declare type ForgeMetricsInvocationsResult = ForgeMetricsInvocationData | QueryError;
|
|
6411
|
+
export declare type ForgeMetricsInvocationsValueData = ForgeMetricsData & {
|
|
6412
|
+
__typename?: 'ForgeMetricsInvocationsValueData';
|
|
6413
|
+
name: Scalars['String'];
|
|
6414
|
+
type: ForgeMetricsDataType;
|
|
6415
|
+
series: Array<ForgeMetricsInvocationSeries>;
|
|
6416
|
+
};
|
|
6417
|
+
export declare type ForgeMetricsInvocationsValueResult = ForgeMetricsInvocationsValueData | QueryError;
|
|
6393
6418
|
export declare type ForgeMetricsLabelGroup = {
|
|
6394
6419
|
__typename?: 'ForgeMetricsLabelGroup';
|
|
6395
6420
|
key: Scalars['String'];
|
|
@@ -6401,7 +6426,9 @@ export declare type ForgeMetricsQuery = {
|
|
|
6401
6426
|
successRate: ForgeMetricsSuccessRateResult;
|
|
6402
6427
|
successRateValue: ForgeMetricsSuccessRateValueResult;
|
|
6403
6428
|
invocations: ForgeMetricsInvocationsResult;
|
|
6429
|
+
invocationsValue: ForgeMetricsInvocationsValueResult;
|
|
6404
6430
|
errors: ForgeMetricsErrorsResult;
|
|
6431
|
+
errorsValue: ForgeMetricsErrorsValueResult;
|
|
6405
6432
|
sites: ForgeMetricsSitesResult;
|
|
6406
6433
|
};
|
|
6407
6434
|
export declare type ForgeMetricsQuerySuccessRateArgs = {
|
|
@@ -6413,9 +6440,15 @@ export declare type ForgeMetricsQuerySuccessRateValueArgs = {
|
|
|
6413
6440
|
export declare type ForgeMetricsQueryInvocationsArgs = {
|
|
6414
6441
|
query: ForgeMetricsQueryInput;
|
|
6415
6442
|
};
|
|
6443
|
+
export declare type ForgeMetricsQueryInvocationsValueArgs = {
|
|
6444
|
+
query: ForgeMetricsQueryInput;
|
|
6445
|
+
};
|
|
6416
6446
|
export declare type ForgeMetricsQueryErrorsArgs = {
|
|
6417
6447
|
query: ForgeMetricsQueryInput;
|
|
6418
6448
|
};
|
|
6449
|
+
export declare type ForgeMetricsQueryErrorsValueArgs = {
|
|
6450
|
+
query: ForgeMetricsQueryInput;
|
|
6451
|
+
};
|
|
6419
6452
|
export declare type ForgeMetricsQuerySitesArgs = {
|
|
6420
6453
|
query: ForgeMetricsQueryInput;
|
|
6421
6454
|
};
|
|
@@ -6481,7 +6514,6 @@ export declare type ForgeMetricsSuccessRateValueData = ForgeMetricsData & {
|
|
|
6481
6514
|
name: Scalars['String'];
|
|
6482
6515
|
type: ForgeMetricsDataType;
|
|
6483
6516
|
series: Array<ForgeMetricsSuccessRateSeries>;
|
|
6484
|
-
resolution: ForgeMetricsResolution;
|
|
6485
6517
|
};
|
|
6486
6518
|
export declare type ForgeMetricsSuccessRateValueResult = ForgeMetricsSuccessRateValueData | QueryError;
|
|
6487
6519
|
export declare type FortifiedMarketplaceApp = {
|
|
@@ -6747,6 +6779,7 @@ export declare type HelpCenterUpdateCollectionsOrderPayload = Payload & {
|
|
|
6747
6779
|
export declare type HelpObjectStoreArticle = HelpObjectStoreHelpObject & Node & {
|
|
6748
6780
|
__typename?: 'HelpObjectStoreArticle';
|
|
6749
6781
|
id: Scalars['ID'];
|
|
6782
|
+
ari: Scalars['ID'];
|
|
6750
6783
|
title?: Maybe<Scalars['String']>;
|
|
6751
6784
|
description?: Maybe<Scalars['String']>;
|
|
6752
6785
|
icon?: Maybe<HelpObjectStoreIcon>;
|
|
@@ -6771,6 +6804,7 @@ export declare type HelpObjectStoreCreateEntityMappingPayload = Payload & {
|
|
|
6771
6804
|
};
|
|
6772
6805
|
export declare type HelpObjectStoreHelpObject = {
|
|
6773
6806
|
id: Scalars['ID'];
|
|
6807
|
+
ari: Scalars['ID'];
|
|
6774
6808
|
title?: Maybe<Scalars['String']>;
|
|
6775
6809
|
description?: Maybe<Scalars['String']>;
|
|
6776
6810
|
icon?: Maybe<HelpObjectStoreIcon>;
|
|
@@ -6808,13 +6842,14 @@ export declare type HelpObjectStoreQueryApiArticlesArgs = {
|
|
|
6808
6842
|
};
|
|
6809
6843
|
export declare type HelpObjectStoreQueryError = {
|
|
6810
6844
|
__typename?: 'HelpObjectStoreQueryError';
|
|
6811
|
-
|
|
6845
|
+
ari: Scalars['ID'];
|
|
6812
6846
|
message?: Maybe<Scalars['String']>;
|
|
6813
6847
|
extensions?: Maybe<Array<QueryErrorExtension>>;
|
|
6814
6848
|
};
|
|
6815
6849
|
export declare type HelpObjectStoreRequestForm = HelpObjectStoreHelpObject & Node & {
|
|
6816
6850
|
__typename?: 'HelpObjectStoreRequestForm';
|
|
6817
6851
|
id: Scalars['ID'];
|
|
6852
|
+
ari: Scalars['ID'];
|
|
6818
6853
|
title?: Maybe<Scalars['String']>;
|
|
6819
6854
|
description?: Maybe<Scalars['String']>;
|
|
6820
6855
|
icon?: Maybe<HelpObjectStoreIcon>;
|
|
@@ -7474,6 +7509,7 @@ export declare type JiraCmdbField = Node & JiraIssueField & JiraIssueFieldConfig
|
|
|
7474
7509
|
searchUrl?: Maybe<Scalars['String']>;
|
|
7475
7510
|
selectedCmdbObjects?: Maybe<Array<Maybe<JiraCmdbObject>>>;
|
|
7476
7511
|
selectedCmdbObjectsConnection?: Maybe<JiraCmdbObjectConnection>;
|
|
7512
|
+
wasInsightRequestSuccessful?: Maybe<Scalars['Boolean']>;
|
|
7477
7513
|
isInsightAvailable?: Maybe<Scalars['Boolean']>;
|
|
7478
7514
|
cmdbFieldConfig?: Maybe<JiraCmdbFieldConfig>;
|
|
7479
7515
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
@@ -7588,6 +7624,7 @@ export declare type JiraClassicConnectDevOpsProvider = JiraDevOpsProvider & {
|
|
|
7588
7624
|
};
|
|
7589
7625
|
export declare type JiraCmdbAttribute = {
|
|
7590
7626
|
__typename?: 'JiraCmdbAttribute';
|
|
7627
|
+
attributeId?: Maybe<Scalars['String']>;
|
|
7591
7628
|
objectTypeAttributeId?: Maybe<Scalars['String']>;
|
|
7592
7629
|
objectTypeAttribute?: Maybe<JiraCmdbObjectTypeAttribute>;
|
|
7593
7630
|
objectAttributeValues?: Maybe<JiraCmdbObjectAttributeValueConnection>;
|
|
@@ -15215,6 +15252,7 @@ export declare enum RateLimitingCurrency {
|
|
|
15215
15252
|
TeamsCurrency = "TEAMS_CURRENCY",
|
|
15216
15253
|
TeamMembersCurrency = "TEAM_MEMBERS_CURRENCY",
|
|
15217
15254
|
CompassInsertMetricValueCurrency = "COMPASS_INSERT_METRIC_VALUE_CURRENCY",
|
|
15255
|
+
CompassSynchronizeLinkAssociationsCurrency = "COMPASS_SYNCHRONIZE_LINK_ASSOCIATIONS_CURRENCY",
|
|
15218
15256
|
ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
|
|
15219
15257
|
DevopsServiceReadCurrency = "DEVOPS_SERVICE_READ_CURRENCY",
|
|
15220
15258
|
DevopsServiceWriteCurrency = "DEVOPS_SERVICE_WRITE_CURRENCY",
|
|
@@ -15717,6 +15755,7 @@ export declare type RoadmapUserConfiguration = {
|
|
|
15717
15755
|
creationPreferences: RoadmapCreationPreferences;
|
|
15718
15756
|
isDependenciesVisible: Scalars['Boolean'];
|
|
15719
15757
|
isProgressVisible: Scalars['Boolean'];
|
|
15758
|
+
isWarningsVisible: Scalars['Boolean'];
|
|
15720
15759
|
listWidth: Scalars['Long'];
|
|
15721
15760
|
timelineMode: RoadmapTimelineMode;
|
|
15722
15761
|
epicView: RoadmapEpicView;
|