@forge/cli-shared 2.4.0-next.8 → 2.4.1-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,40 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.4.1-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [1a8d47c0]
|
|
8
|
+
- @forge/manifest@3.6.0-next.1
|
|
9
|
+
|
|
10
|
+
## 2.4.1-next.0
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [01371351]
|
|
15
|
+
- @forge/manifest@3.5.1-next.0
|
|
16
|
+
|
|
17
|
+
## 2.4.0
|
|
18
|
+
|
|
19
|
+
### Minor Changes
|
|
20
|
+
|
|
21
|
+
- f33aada: Fix vulnerability dependencies
|
|
22
|
+
- 726ef79: Fix dependency vulnerabilities
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- Updated dependencies [3d82376]
|
|
27
|
+
- Updated dependencies [d094c69]
|
|
28
|
+
- Updated dependencies [ba674590]
|
|
29
|
+
- Updated dependencies [f3ac287]
|
|
30
|
+
- Updated dependencies [d196b41]
|
|
31
|
+
- Updated dependencies [e411a29]
|
|
32
|
+
- Updated dependencies [0accde8]
|
|
33
|
+
- Updated dependencies [a3bfe81]
|
|
34
|
+
- Updated dependencies [02839be]
|
|
35
|
+
- Updated dependencies [ffb508a]
|
|
36
|
+
- @forge/manifest@3.5.0
|
|
37
|
+
|
|
3
38
|
## 2.4.0-next.8
|
|
4
39
|
|
|
5
40
|
### Patch Changes
|
|
@@ -303,6 +303,7 @@ export declare type AddPolarisColumnInput = {
|
|
|
303
303
|
width?: Maybe<Scalars['Int']>;
|
|
304
304
|
heading?: Maybe<Scalars['String']>;
|
|
305
305
|
};
|
|
306
|
+
export declare type Admin = JiraUser | JiraUserGroup;
|
|
306
307
|
export declare enum ApiContext {
|
|
307
308
|
Devops = "DEVOPS"
|
|
308
309
|
}
|
|
@@ -1258,6 +1259,9 @@ export declare type BoardScope = Node & {
|
|
|
1258
1259
|
customFilters?: Maybe<Array<Maybe<CustomFilter>>>;
|
|
1259
1260
|
filteredCardIds?: Maybe<Array<Maybe<Scalars['ID']>>>;
|
|
1260
1261
|
name?: Maybe<Scalars['String']>;
|
|
1262
|
+
admins?: Maybe<Array<Maybe<Admin>>>;
|
|
1263
|
+
canAdministerBoard?: Maybe<Scalars['Boolean']>;
|
|
1264
|
+
jql?: Maybe<Scalars['String']>;
|
|
1261
1265
|
};
|
|
1262
1266
|
export declare type BoardScopeSprintsArgs = {
|
|
1263
1267
|
state?: Maybe<Array<Maybe<SprintState>>>;
|
|
@@ -1607,13 +1611,13 @@ export declare type CompassBuildEvent = CompassEvent & {
|
|
|
1607
1611
|
export declare type CompassBuildEventPipeline = {
|
|
1608
1612
|
__typename?: 'CompassBuildEventPipeline';
|
|
1609
1613
|
pipelineId: Scalars['String'];
|
|
1610
|
-
url
|
|
1611
|
-
displayName
|
|
1614
|
+
url?: Maybe<Scalars['String']>;
|
|
1615
|
+
displayName?: Maybe<Scalars['String']>;
|
|
1612
1616
|
};
|
|
1613
1617
|
export declare type CompassBuildEventPipelineInput = {
|
|
1614
1618
|
pipelineId: Scalars['String'];
|
|
1615
|
-
url
|
|
1616
|
-
displayName
|
|
1619
|
+
url?: Maybe<Scalars['String']>;
|
|
1620
|
+
displayName?: Maybe<Scalars['String']>;
|
|
1617
1621
|
};
|
|
1618
1622
|
export declare type CompassBuildEventProperties = {
|
|
1619
1623
|
__typename?: 'CompassBuildEventProperties';
|
|
@@ -1684,6 +1688,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
1684
1688
|
createMetricSource?: Maybe<CompassCreateMetricSourcePayload>;
|
|
1685
1689
|
deleteMetricSource?: Maybe<CompassDeleteMetricSourcePayload>;
|
|
1686
1690
|
insertMetricValue?: Maybe<CompassInsertMetricValuePayload>;
|
|
1691
|
+
insertMetricValueByExternalId?: Maybe<CompassInsertMetricValueByExternalIdPayload>;
|
|
1687
1692
|
synchronizeLinkAssociations?: Maybe<CompassSynchronizeLinkAssociationsPayload>;
|
|
1688
1693
|
createCustomFieldDefinition?: Maybe<CompassCreateCustomFieldDefinitionPayload>;
|
|
1689
1694
|
updateCustomFieldDefinition?: Maybe<CompassUpdateCustomFieldDefinitionPayload>;
|
|
@@ -1834,6 +1839,9 @@ export declare type CompassCatalogMutationApiDeleteMetricSourceArgs = {
|
|
|
1834
1839
|
export declare type CompassCatalogMutationApiInsertMetricValueArgs = {
|
|
1835
1840
|
input: CompassInsertMetricValueInput;
|
|
1836
1841
|
};
|
|
1842
|
+
export declare type CompassCatalogMutationApiInsertMetricValueByExternalIdArgs = {
|
|
1843
|
+
input: CompassInsertMetricValueByExternalIdInput;
|
|
1844
|
+
};
|
|
1837
1845
|
export declare type CompassCatalogMutationApiSynchronizeLinkAssociationsArgs = {
|
|
1838
1846
|
input?: Maybe<CompassSynchronizeLinkAssociationsInput>;
|
|
1839
1847
|
};
|
|
@@ -2564,6 +2572,17 @@ export declare enum CompassIncidentEventState {
|
|
|
2564
2572
|
Closed = "CLOSED",
|
|
2565
2573
|
Deleted = "DELETED"
|
|
2566
2574
|
}
|
|
2575
|
+
export declare type CompassInsertMetricValueByExternalIdInput = {
|
|
2576
|
+
cloudId: Scalars['ID'];
|
|
2577
|
+
metricDefinitionId: Scalars['ID'];
|
|
2578
|
+
externalMetricSourceId: Scalars['ID'];
|
|
2579
|
+
value: CompassMetricValueInput;
|
|
2580
|
+
};
|
|
2581
|
+
export declare type CompassInsertMetricValueByExternalIdPayload = Payload & {
|
|
2582
|
+
__typename?: 'CompassInsertMetricValueByExternalIdPayload';
|
|
2583
|
+
success: Scalars['Boolean'];
|
|
2584
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2585
|
+
};
|
|
2567
2586
|
export declare type CompassInsertMetricValueInput = {
|
|
2568
2587
|
metricSourceId: Scalars['ID'];
|
|
2569
2588
|
value: CompassMetricValueInput;
|
|
@@ -5263,15 +5282,16 @@ export declare type DevOpsTool = Node & {
|
|
|
5263
5282
|
avatar?: Maybe<DevOpsToolAvatar>;
|
|
5264
5283
|
group: DevOpsToolGroup;
|
|
5265
5284
|
supportsContainers: Scalars['Boolean'];
|
|
5266
|
-
containerIntegration?: Maybe<DevOpsToolContainerIntegration>;
|
|
5267
5285
|
integration?: Maybe<DevOpsToolIntegration>;
|
|
5268
5286
|
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
5287
|
+
auth?: Maybe<DevOpsToolAuth>;
|
|
5269
5288
|
};
|
|
5270
5289
|
export declare type DevOpsToolNamespacesArgs = {
|
|
5271
5290
|
query?: Maybe<Scalars['String']>;
|
|
5272
5291
|
first?: Maybe<Scalars['Int']>;
|
|
5273
5292
|
after?: Maybe<Scalars['String']>;
|
|
5274
5293
|
};
|
|
5294
|
+
export declare type DevOpsToolAuth = DevOpsToolDefaultAuth | DevOpsToolOAuth;
|
|
5275
5295
|
export declare type DevOpsToolAvatar = {
|
|
5276
5296
|
__typename?: 'DevOpsToolAvatar';
|
|
5277
5297
|
url: Scalars['URL'];
|
|
@@ -5284,6 +5304,23 @@ export declare type DevOpsToolBitbucketCreate = DevOpsToolContainerCreationSpeci
|
|
|
5284
5304
|
name: Scalars['String'];
|
|
5285
5305
|
};
|
|
5286
5306
|
export declare type DevOpsToolCanContainerBeCreated = DevOpsToolContainerCanBeCreated | DevOpsToolContainerNameConflict | DevOpsToolContainerKeyConflict | DevOpsToolContainerKeyCannotBeGenerated | DevOpsToolUnknownTool;
|
|
5307
|
+
export declare type DevOpsToolCategory = {
|
|
5308
|
+
__typename?: 'DevOpsToolCategory';
|
|
5309
|
+
id: Scalars['String'];
|
|
5310
|
+
name: Scalars['String'];
|
|
5311
|
+
groupId: Scalars['String'];
|
|
5312
|
+
};
|
|
5313
|
+
export declare type DevOpsToolCategoryConnection = {
|
|
5314
|
+
__typename?: 'DevOpsToolCategoryConnection';
|
|
5315
|
+
edges?: Maybe<Array<Maybe<DevOpsToolCategoryEdge>>>;
|
|
5316
|
+
nodes?: Maybe<Array<Maybe<DevOpsToolCategory>>>;
|
|
5317
|
+
pageInfo: PageInfo;
|
|
5318
|
+
};
|
|
5319
|
+
export declare type DevOpsToolCategoryEdge = {
|
|
5320
|
+
__typename?: 'DevOpsToolCategoryEdge';
|
|
5321
|
+
cursor: Scalars['String'];
|
|
5322
|
+
node?: Maybe<DevOpsToolCategory>;
|
|
5323
|
+
};
|
|
5287
5324
|
export declare type DevOpsToolConfluenceCreate = DevOpsToolContainerCreationSpecification & {
|
|
5288
5325
|
__typename?: 'DevOpsToolConfluenceCreate';
|
|
5289
5326
|
requestId: Scalars['String'];
|
|
@@ -5329,22 +5366,6 @@ export declare type DevOpsToolContainerEdge = {
|
|
|
5329
5366
|
cursor: Scalars['String'];
|
|
5330
5367
|
node?: Maybe<DevOpsToolContainer>;
|
|
5331
5368
|
};
|
|
5332
|
-
export declare type DevOpsToolContainerIntegration = {
|
|
5333
|
-
containerType: Scalars['String'];
|
|
5334
|
-
};
|
|
5335
|
-
export declare type DevOpsToolContainerIntegrationApp = DevOpsToolContainerIntegration & {
|
|
5336
|
-
__typename?: 'DevOpsToolContainerIntegrationApp';
|
|
5337
|
-
containerType: Scalars['String'];
|
|
5338
|
-
appKey: Scalars['String'];
|
|
5339
|
-
installed: Scalars['Boolean'];
|
|
5340
|
-
oauthUrl?: Maybe<Scalars['String']>;
|
|
5341
|
-
};
|
|
5342
|
-
export declare type DevOpsToolContainerIntegrationProduct = DevOpsToolContainerIntegration & {
|
|
5343
|
-
__typename?: 'DevOpsToolContainerIntegrationProduct';
|
|
5344
|
-
containerType: Scalars['String'];
|
|
5345
|
-
productKey: Scalars['String'];
|
|
5346
|
-
available: Scalars['Boolean'];
|
|
5347
|
-
};
|
|
5348
5369
|
export declare type DevOpsToolContainerKeyCannotBeGenerated = {
|
|
5349
5370
|
__typename?: 'DevOpsToolContainerKeyCannotBeGenerated';
|
|
5350
5371
|
name?: Maybe<Scalars['String']>;
|
|
@@ -5358,6 +5379,10 @@ export declare type DevOpsToolContainerNameConflict = {
|
|
|
5358
5379
|
__typename?: 'DevOpsToolContainerNameConflict';
|
|
5359
5380
|
name?: Maybe<Scalars['String']>;
|
|
5360
5381
|
};
|
|
5382
|
+
export declare type DevOpsToolDefaultAuth = {
|
|
5383
|
+
__typename?: 'DevOpsToolDefaultAuth';
|
|
5384
|
+
authenticated: Scalars['Boolean'];
|
|
5385
|
+
};
|
|
5361
5386
|
export declare type DevOpsToolEdge = {
|
|
5362
5387
|
__typename?: 'DevOpsToolEdge';
|
|
5363
5388
|
cursor: Scalars['String'];
|
|
@@ -5379,12 +5404,29 @@ export declare type DevOpsToolGroup = {
|
|
|
5379
5404
|
__typename?: 'DevOpsToolGroup';
|
|
5380
5405
|
groupId: Scalars['String'];
|
|
5381
5406
|
groupName: Scalars['String'];
|
|
5407
|
+
categories?: Maybe<DevOpsToolCategoryConnection>;
|
|
5408
|
+
};
|
|
5409
|
+
export declare type DevOpsToolGroupCategoriesArgs = {
|
|
5410
|
+
first?: Maybe<Scalars['Int']>;
|
|
5411
|
+
after?: Maybe<Scalars['String']>;
|
|
5412
|
+
};
|
|
5413
|
+
export declare type DevOpsToolGroupConnection = {
|
|
5414
|
+
__typename?: 'DevOpsToolGroupConnection';
|
|
5415
|
+
edges?: Maybe<Array<Maybe<DevOpsToolGroupEdge>>>;
|
|
5416
|
+
nodes?: Maybe<Array<Maybe<DevOpsToolGroup>>>;
|
|
5417
|
+
pageInfo: PageInfo;
|
|
5418
|
+
};
|
|
5419
|
+
export declare type DevOpsToolGroupEdge = {
|
|
5420
|
+
__typename?: 'DevOpsToolGroupEdge';
|
|
5421
|
+
cursor: Scalars['String'];
|
|
5422
|
+
node?: Maybe<DevOpsToolGroup>;
|
|
5382
5423
|
};
|
|
5383
5424
|
export declare type DevOpsToolIntegration = DevOpsToolIntegrationApp | DevOpsToolIntegrationProduct;
|
|
5384
5425
|
export declare type DevOpsToolIntegrationApp = {
|
|
5385
5426
|
__typename?: 'DevOpsToolIntegrationApp';
|
|
5386
5427
|
appKey: Scalars['String'];
|
|
5387
5428
|
appName: Scalars['String'];
|
|
5429
|
+
marketplaceType: Scalars['String'];
|
|
5388
5430
|
installed: Scalars['Boolean'];
|
|
5389
5431
|
iconUrl?: Maybe<Scalars['String']>;
|
|
5390
5432
|
};
|
|
@@ -5432,6 +5474,11 @@ export declare enum DevOpsToolNavbarConnectionStateTab {
|
|
|
5432
5474
|
OncallTab = "ONCALL_TAB",
|
|
5433
5475
|
PagesTab = "PAGES_TAB"
|
|
5434
5476
|
}
|
|
5477
|
+
export declare type DevOpsToolOAuth = {
|
|
5478
|
+
__typename?: 'DevOpsToolOAuth';
|
|
5479
|
+
authenticated: Scalars['Boolean'];
|
|
5480
|
+
oauthUrl: Scalars['String'];
|
|
5481
|
+
};
|
|
5435
5482
|
export declare type DevOpsToolOpsgenieCreate = DevOpsToolContainerCreationSpecification & {
|
|
5436
5483
|
__typename?: 'DevOpsToolOpsgenieCreate';
|
|
5437
5484
|
requestId: Scalars['String'];
|
|
@@ -5460,6 +5507,7 @@ export declare type DevOpsTools = {
|
|
|
5460
5507
|
container?: Maybe<DevOpsToolContainer>;
|
|
5461
5508
|
navbarConnectionState?: Maybe<DevOpsToolNavbarConnectionState>;
|
|
5462
5509
|
canContainerBeCreated?: Maybe<DevOpsToolCanContainerBeCreated>;
|
|
5510
|
+
groups?: Maybe<DevOpsToolGroupConnection>;
|
|
5463
5511
|
};
|
|
5464
5512
|
export declare type DevOpsToolsToolsArgs = {
|
|
5465
5513
|
cloudId: Scalars['ID'];
|
|
@@ -5489,6 +5537,10 @@ export declare type DevOpsToolsCanContainerBeCreatedArgs = {
|
|
|
5489
5537
|
namespaceId: Scalars['String'];
|
|
5490
5538
|
containerName: Scalars['String'];
|
|
5491
5539
|
};
|
|
5540
|
+
export declare type DevOpsToolsGroupsArgs = {
|
|
5541
|
+
first?: Maybe<Scalars['Int']>;
|
|
5542
|
+
after?: Maybe<Scalars['String']>;
|
|
5543
|
+
};
|
|
5492
5544
|
export declare type DevStatus = {
|
|
5493
5545
|
__typename?: 'DevStatus';
|
|
5494
5546
|
activity: DevStatusActivity;
|
|
@@ -5724,6 +5776,11 @@ export declare enum ForgeMetricsGroupByDimensions {
|
|
|
5724
5776
|
EnvironmentId = "ENVIRONMENT_ID",
|
|
5725
5777
|
ErrorType = "ERROR_TYPE"
|
|
5726
5778
|
}
|
|
5779
|
+
export declare type ForgeMetricsInstallationContext = {
|
|
5780
|
+
__typename?: 'ForgeMetricsInstallationContext';
|
|
5781
|
+
tenantContext?: Maybe<TenantContext>;
|
|
5782
|
+
contextAri: Scalars['ID'];
|
|
5783
|
+
};
|
|
5727
5784
|
export declare type ForgeMetricsIntervalInput = {
|
|
5728
5785
|
start: Scalars['DateTime'];
|
|
5729
5786
|
end: Scalars['DateTime'];
|
|
@@ -5758,6 +5815,7 @@ export declare type ForgeMetricsQuery = {
|
|
|
5758
5815
|
successRateValue: ForgeMetricsSuccessRateValueResult;
|
|
5759
5816
|
invocations: ForgeMetricsInvocationsResult;
|
|
5760
5817
|
errors: ForgeMetricsErrorsResult;
|
|
5818
|
+
sites: ForgeMetricsSitesResult;
|
|
5761
5819
|
};
|
|
5762
5820
|
export declare type ForgeMetricsQuerySuccessRateArgs = {
|
|
5763
5821
|
query: ForgeMetricsQueryInput;
|
|
@@ -5771,6 +5829,9 @@ export declare type ForgeMetricsQueryInvocationsArgs = {
|
|
|
5771
5829
|
export declare type ForgeMetricsQueryErrorsArgs = {
|
|
5772
5830
|
query: ForgeMetricsQueryInput;
|
|
5773
5831
|
};
|
|
5832
|
+
export declare type ForgeMetricsQuerySitesArgs = {
|
|
5833
|
+
query: ForgeMetricsQueryInput;
|
|
5834
|
+
};
|
|
5774
5835
|
export declare type ForgeMetricsQueryFilters = {
|
|
5775
5836
|
environment?: Maybe<Scalars['ID']>;
|
|
5776
5837
|
contextAris?: Maybe<Array<Scalars['ID']>>;
|
|
@@ -5792,6 +5853,23 @@ export declare enum ForgeMetricsResolutionUnit {
|
|
|
5792
5853
|
export declare type ForgeMetricsSeries = {
|
|
5793
5854
|
groups: Array<ForgeMetricsLabelGroup>;
|
|
5794
5855
|
};
|
|
5856
|
+
export declare enum ForgeMetricsSiteFilterCategory {
|
|
5857
|
+
LowestSuccessRate = "LOWEST_SUCCESS_RATE",
|
|
5858
|
+
HighestInvocationCount = "HIGHEST_INVOCATION_COUNT",
|
|
5859
|
+
HighestNumberOfErrors = "HIGHEST_NUMBER_OF_ERRORS",
|
|
5860
|
+
HighestNumberOfUsers = "HIGHEST_NUMBER_OF_USERS",
|
|
5861
|
+
All = "ALL"
|
|
5862
|
+
}
|
|
5863
|
+
export declare type ForgeMetricsSitesByCategory = {
|
|
5864
|
+
__typename?: 'ForgeMetricsSitesByCategory';
|
|
5865
|
+
category: ForgeMetricsSiteFilterCategory;
|
|
5866
|
+
installationContexts: Array<ForgeMetricsInstallationContext>;
|
|
5867
|
+
};
|
|
5868
|
+
export declare type ForgeMetricsSitesData = {
|
|
5869
|
+
__typename?: 'ForgeMetricsSitesData';
|
|
5870
|
+
data: Array<ForgeMetricsSitesByCategory>;
|
|
5871
|
+
};
|
|
5872
|
+
export declare type ForgeMetricsSitesResult = ForgeMetricsSitesData | QueryError;
|
|
5795
5873
|
export declare type ForgeMetricsSuccessRateData = ForgeMetricsData & {
|
|
5796
5874
|
__typename?: 'ForgeMetricsSuccessRateData';
|
|
5797
5875
|
name: Scalars['String'];
|
|
@@ -6003,6 +6081,20 @@ export declare type HelpObjectStoreArticle = HelpObjectStoreHelpObject & Node &
|
|
|
6003
6081
|
entityProjectId?: Maybe<Scalars['String']>;
|
|
6004
6082
|
};
|
|
6005
6083
|
export declare type HelpObjectStoreArticleResult = HelpObjectStoreArticle | QueryError;
|
|
6084
|
+
export declare type HelpObjectStoreBulkCreateEntityMappingInput = {
|
|
6085
|
+
helpObjectStoreCreateEntityMappingInputItems: Array<HelpObjectStoreCreateEntityMappingInput>;
|
|
6086
|
+
};
|
|
6087
|
+
export declare type HelpObjectStoreCreateEntityMappingInput = {
|
|
6088
|
+
entityId: Scalars['String'];
|
|
6089
|
+
projectId: Scalars['String'];
|
|
6090
|
+
type: HelpObjectStoreJsmEntityType;
|
|
6091
|
+
};
|
|
6092
|
+
export declare type HelpObjectStoreCreateEntityMappingPayload = Payload & {
|
|
6093
|
+
__typename?: 'HelpObjectStoreCreateEntityMappingPayload';
|
|
6094
|
+
success: Scalars['Boolean'];
|
|
6095
|
+
errors?: Maybe<Array<MutationError>>;
|
|
6096
|
+
entityMappingDetails?: Maybe<Array<HelpObjectStoreSuccessfullyCreatedEntityMappingDetail>>;
|
|
6097
|
+
};
|
|
6006
6098
|
export declare type HelpObjectStoreHelpObject = {
|
|
6007
6099
|
id: Scalars['ID'];
|
|
6008
6100
|
title: Scalars['String'];
|
|
@@ -6018,6 +6110,17 @@ export declare type HelpObjectStoreIcon = {
|
|
|
6018
6110
|
__typename?: 'HelpObjectStoreIcon';
|
|
6019
6111
|
iconUrl: Scalars['URL'];
|
|
6020
6112
|
};
|
|
6113
|
+
export declare enum HelpObjectStoreJsmEntityType {
|
|
6114
|
+
RequestForm = "REQUEST_FORM",
|
|
6115
|
+
Article = "ARTICLE"
|
|
6116
|
+
}
|
|
6117
|
+
export declare type HelpObjectStoreMutationApi = {
|
|
6118
|
+
__typename?: 'HelpObjectStoreMutationApi';
|
|
6119
|
+
createEntityMapping?: Maybe<HelpObjectStoreCreateEntityMappingPayload>;
|
|
6120
|
+
};
|
|
6121
|
+
export declare type HelpObjectStoreMutationApiCreateEntityMappingArgs = {
|
|
6122
|
+
input: HelpObjectStoreBulkCreateEntityMappingInput;
|
|
6123
|
+
};
|
|
6021
6124
|
export declare type HelpObjectStoreQueryApi = {
|
|
6022
6125
|
__typename?: 'HelpObjectStoreQueryApi';
|
|
6023
6126
|
requestForms?: Maybe<Array<Maybe<HelpObjectStoreRequestFormResult>>>;
|
|
@@ -6040,6 +6143,12 @@ export declare type HelpObjectStoreRequestForm = HelpObjectStoreHelpObject & Nod
|
|
|
6040
6143
|
entityProjectId?: Maybe<Scalars['String']>;
|
|
6041
6144
|
};
|
|
6042
6145
|
export declare type HelpObjectStoreRequestFormResult = HelpObjectStoreRequestForm | QueryError;
|
|
6146
|
+
export declare type HelpObjectStoreSuccessfullyCreatedEntityMappingDetail = {
|
|
6147
|
+
__typename?: 'HelpObjectStoreSuccessfullyCreatedEntityMappingDetail';
|
|
6148
|
+
id: Scalars['ID'];
|
|
6149
|
+
entityId: Scalars['String'];
|
|
6150
|
+
projectId: Scalars['String'];
|
|
6151
|
+
};
|
|
6043
6152
|
export declare type HostedResourcePreSignedUrl = {
|
|
6044
6153
|
__typename?: 'HostedResourcePreSignedUrl';
|
|
6045
6154
|
uploadUrl: Scalars['String'];
|
|
@@ -7619,6 +7728,7 @@ export declare type JiraIssue = Node & {
|
|
|
7619
7728
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
7620
7729
|
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
7621
7730
|
fieldSetsForIssueSearchView?: Maybe<JiraIssueFieldSetConnection>;
|
|
7731
|
+
fieldSetsById?: Maybe<JiraIssueFieldSetConnection>;
|
|
7622
7732
|
issueLinks?: Maybe<JiraIssueLinkConnection>;
|
|
7623
7733
|
childIssues?: Maybe<JiraChildIssues>;
|
|
7624
7734
|
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
@@ -7629,6 +7739,7 @@ export declare type JiraIssue = Node & {
|
|
|
7629
7739
|
issueTypesForHierarchyBelow?: Maybe<JiraIssueTypeConnection>;
|
|
7630
7740
|
issueTypesForHierarchyAbove?: Maybe<JiraIssueTypeConnection>;
|
|
7631
7741
|
issueTypesForHierarchySame?: Maybe<JiraIssueTypeConnection>;
|
|
7742
|
+
errorRetrievingData?: Maybe<Scalars['Boolean']>;
|
|
7632
7743
|
};
|
|
7633
7744
|
export declare type JiraIssueFieldsArgs = {
|
|
7634
7745
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -7675,6 +7786,13 @@ export declare type JiraIssueFieldSetsForIssueSearchViewArgs = {
|
|
|
7675
7786
|
last?: Maybe<Scalars['Int']>;
|
|
7676
7787
|
before?: Maybe<Scalars['String']>;
|
|
7677
7788
|
};
|
|
7789
|
+
export declare type JiraIssueFieldSetsByIdArgs = {
|
|
7790
|
+
fieldSetIds: Array<Scalars['String']>;
|
|
7791
|
+
first?: Maybe<Scalars['Int']>;
|
|
7792
|
+
after?: Maybe<Scalars['String']>;
|
|
7793
|
+
last?: Maybe<Scalars['Int']>;
|
|
7794
|
+
before?: Maybe<Scalars['String']>;
|
|
7795
|
+
};
|
|
7678
7796
|
export declare type JiraIssueIssueLinksArgs = {
|
|
7679
7797
|
first?: Maybe<Scalars['Int']>;
|
|
7680
7798
|
after?: Maybe<Scalars['String']>;
|
|
@@ -8198,6 +8316,7 @@ export declare type JiraIssueSearchFieldConfigSet = {
|
|
|
8198
8316
|
fieldConfigSetId?: Maybe<Scalars['String']>;
|
|
8199
8317
|
displayName?: Maybe<Scalars['String']>;
|
|
8200
8318
|
fieldType?: Maybe<Scalars['String']>;
|
|
8319
|
+
jqlTerm?: Maybe<Scalars['String']>;
|
|
8201
8320
|
isSortable?: Maybe<Scalars['Boolean']>;
|
|
8202
8321
|
isSelected?: Maybe<Scalars['Boolean']>;
|
|
8203
8322
|
};
|
|
@@ -9714,6 +9833,7 @@ export declare type JiraQuery = {
|
|
|
9714
9833
|
issueContainersByTypeByKey: JiraIssueItemContainersResult;
|
|
9715
9834
|
issueByKey?: Maybe<JiraIssue>;
|
|
9716
9835
|
issueById?: Maybe<JiraIssue>;
|
|
9836
|
+
issue?: Maybe<JiraIssue>;
|
|
9717
9837
|
issuesById?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
9718
9838
|
screenIdByIssueId?: Maybe<Scalars['Long']>;
|
|
9719
9839
|
screenIdByIssueKey?: Maybe<Scalars['Long']>;
|
|
@@ -9728,6 +9848,7 @@ export declare type JiraQuery = {
|
|
|
9728
9848
|
getPermissionSchemeGrantsHierarchy: Array<JiraPermissionGrants>;
|
|
9729
9849
|
issueHierarchyConfig: JiraIssueHierarchyConfigurationQuery;
|
|
9730
9850
|
issueHierarchyLimits: JiraIssueHierarchyLimits;
|
|
9851
|
+
lockedIssueTypeIds: Array<Scalars['ID']>;
|
|
9731
9852
|
version?: Maybe<JiraVersionResult>;
|
|
9732
9853
|
versionsForProject?: Maybe<JiraVersionConnection>;
|
|
9733
9854
|
versionDetailPage?: Maybe<JiraVersionDetailPage>;
|
|
@@ -9793,6 +9914,9 @@ export declare type JiraQueryIssueByKeyArgs = {
|
|
|
9793
9914
|
export declare type JiraQueryIssueByIdArgs = {
|
|
9794
9915
|
id: Scalars['ID'];
|
|
9795
9916
|
};
|
|
9917
|
+
export declare type JiraQueryIssueArgs = {
|
|
9918
|
+
id?: Maybe<Scalars['ID']>;
|
|
9919
|
+
};
|
|
9796
9920
|
export declare type JiraQueryIssuesByIdArgs = {
|
|
9797
9921
|
ids: Array<Scalars['ID']>;
|
|
9798
9922
|
};
|
|
@@ -9854,6 +9978,9 @@ export declare type JiraQueryIssueHierarchyConfigArgs = {
|
|
|
9854
9978
|
export declare type JiraQueryIssueHierarchyLimitsArgs = {
|
|
9855
9979
|
cloudId: Scalars['ID'];
|
|
9856
9980
|
};
|
|
9981
|
+
export declare type JiraQueryLockedIssueTypeIdsArgs = {
|
|
9982
|
+
cloudId: Scalars['ID'];
|
|
9983
|
+
};
|
|
9857
9984
|
export declare type JiraQueryVersionArgs = {
|
|
9858
9985
|
id: Scalars['ID'];
|
|
9859
9986
|
};
|
|
@@ -10941,6 +11068,7 @@ export declare type JiraTeamView = {
|
|
|
10941
11068
|
__typename?: 'JiraTeamView';
|
|
10942
11069
|
jiraSuppliedId: Scalars['ID'];
|
|
10943
11070
|
jiraSuppliedTeamId: Scalars['String'];
|
|
11071
|
+
jiraSuppliedVisibility?: Maybe<Scalars['Boolean']>;
|
|
10944
11072
|
jiraSuppliedName?: Maybe<Scalars['String']>;
|
|
10945
11073
|
jiraSuppliedAvatar?: Maybe<JiraAvatar>;
|
|
10946
11074
|
fullTeam?: Maybe<Team>;
|
|
@@ -11013,6 +11141,13 @@ export declare type JiraUrlField = Node & JiraIssueField & JiraIssueFieldConfigu
|
|
|
11013
11141
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
11014
11142
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
11015
11143
|
};
|
|
11144
|
+
export declare type JiraUser = {
|
|
11145
|
+
__typename?: 'JiraUser';
|
|
11146
|
+
accountId?: Maybe<Scalars['String']>;
|
|
11147
|
+
displayName?: Maybe<Scalars['String']>;
|
|
11148
|
+
avatarUrl?: Maybe<Scalars['String']>;
|
|
11149
|
+
email?: Maybe<Scalars['String']>;
|
|
11150
|
+
};
|
|
11016
11151
|
export declare type JiraUserConnection = {
|
|
11017
11152
|
__typename?: 'JiraUserConnection';
|
|
11018
11153
|
pageInfo: PageInfo;
|
|
@@ -11034,6 +11169,11 @@ export declare type JiraUserGrantTypeValue = Node & {
|
|
|
11034
11169
|
id: Scalars['ID'];
|
|
11035
11170
|
user?: Maybe<User>;
|
|
11036
11171
|
};
|
|
11172
|
+
export declare type JiraUserGroup = {
|
|
11173
|
+
__typename?: 'JiraUserGroup';
|
|
11174
|
+
accountId?: Maybe<Scalars['String']>;
|
|
11175
|
+
displayName?: Maybe<Scalars['String']>;
|
|
11176
|
+
};
|
|
11037
11177
|
export declare type JiraUserIssueFieldConfiguration = {
|
|
11038
11178
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
11039
11179
|
};
|
|
@@ -11127,6 +11267,7 @@ export declare type JiraVersionWarningConfig = {
|
|
|
11127
11267
|
openReview?: Maybe<JiraVersionWarningConfigState>;
|
|
11128
11268
|
unreviewedCode?: Maybe<JiraVersionWarningConfigState>;
|
|
11129
11269
|
failingBuild?: Maybe<JiraVersionWarningConfigState>;
|
|
11270
|
+
canEdit?: Maybe<Scalars['Boolean']>;
|
|
11130
11271
|
};
|
|
11131
11272
|
export declare enum JiraVersionWarningConfigState {
|
|
11132
11273
|
Enabled = "ENABLED",
|
|
@@ -11670,6 +11811,7 @@ export declare type Mutation = {
|
|
|
11670
11811
|
createJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipCreatePayload>;
|
|
11671
11812
|
deleteJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipDeletePayload>;
|
|
11672
11813
|
shepherd?: Maybe<ShepherdMutation>;
|
|
11814
|
+
helpObjectStore?: Maybe<HelpObjectStoreMutationApi>;
|
|
11673
11815
|
jsw?: Maybe<JswMutation>;
|
|
11674
11816
|
createColumn?: Maybe<CreateColumnOutput>;
|
|
11675
11817
|
setColumnName?: Maybe<SetColumnNameOutput>;
|
|
@@ -13487,6 +13629,7 @@ export declare type Query = {
|
|
|
13487
13629
|
releaseNote: ContentPlatformReleaseNote;
|
|
13488
13630
|
practicePages: ContentPlatformPracticePagesConnection;
|
|
13489
13631
|
practicePage: ContentPlatformPracticePage;
|
|
13632
|
+
smarts?: Maybe<SmartsQueryApi>;
|
|
13490
13633
|
devOpsTools?: Maybe<DevOpsTools>;
|
|
13491
13634
|
search?: Maybe<SearchQueryApi>;
|
|
13492
13635
|
townsquare?: Maybe<TownsquareQueryApi>;
|
|
@@ -14263,6 +14406,7 @@ export declare type RoadmapProjectConfiguration = {
|
|
|
14263
14406
|
defaultItemTypeId?: Maybe<Scalars['String']>;
|
|
14264
14407
|
versions?: Maybe<Array<RoadmapVersion>>;
|
|
14265
14408
|
components?: Maybe<Array<RoadmapComponent>>;
|
|
14409
|
+
isReleasesFeatureEnabled: Scalars['Boolean'];
|
|
14266
14410
|
};
|
|
14267
14411
|
export declare type RoadmapProjectPermissions = {
|
|
14268
14412
|
__typename?: 'RoadmapProjectPermissions';
|
|
@@ -14391,6 +14535,7 @@ export declare type RoadmapVersion = {
|
|
|
14391
14535
|
id: Scalars['ID'];
|
|
14392
14536
|
name: Scalars['String'];
|
|
14393
14537
|
status: RoadmapVersionStatus;
|
|
14538
|
+
releaseDate?: Maybe<Scalars['Date']>;
|
|
14394
14539
|
};
|
|
14395
14540
|
export declare enum RoadmapVersionStatus {
|
|
14396
14541
|
Released = "RELEASED",
|
|
@@ -14473,6 +14618,7 @@ export declare enum Scope {
|
|
|
14473
14618
|
ReadAccount = "READ_ACCOUNT",
|
|
14474
14619
|
ViewUserprofile = "VIEW_USERPROFILE",
|
|
14475
14620
|
IdentityAtlassianExternal = "IDENTITY_ATLASSIAN_EXTERNAL",
|
|
14621
|
+
CompassAtlassianExternal = "COMPASS_ATLASSIAN_EXTERNAL",
|
|
14476
14622
|
ReadCompassComponent = "READ_COMPASS_COMPONENT",
|
|
14477
14623
|
WriteCompassComponent = "WRITE_COMPASS_COMPONENT",
|
|
14478
14624
|
ReadCompassScorecard = "READ_COMPASS_SCORECARD",
|
|
@@ -15028,6 +15174,63 @@ export declare enum ShepherdWebhookType {
|
|
|
15028
15174
|
Custom = "CUSTOM",
|
|
15029
15175
|
Slack = "SLACK"
|
|
15030
15176
|
}
|
|
15177
|
+
export declare type SmartsContext = {
|
|
15178
|
+
userId: Scalars['String'];
|
|
15179
|
+
tenantId: Scalars['String'];
|
|
15180
|
+
product?: Maybe<Scalars['String']>;
|
|
15181
|
+
containerId?: Maybe<Scalars['String']>;
|
|
15182
|
+
objectId?: Maybe<Scalars['String']>;
|
|
15183
|
+
additionalContextList?: Maybe<Array<SmartsKeyValue>>;
|
|
15184
|
+
};
|
|
15185
|
+
export declare type SmartsKeyValue = {
|
|
15186
|
+
key: Scalars['String'];
|
|
15187
|
+
value: Scalars['String'];
|
|
15188
|
+
};
|
|
15189
|
+
export declare type SmartsModelRequestParams = {
|
|
15190
|
+
caller: Scalars['String'];
|
|
15191
|
+
experience: Scalars['String'];
|
|
15192
|
+
};
|
|
15193
|
+
export declare type SmartsQueryApi = {
|
|
15194
|
+
__typename?: 'SmartsQueryApi';
|
|
15195
|
+
recommendedContainer?: Maybe<Array<Maybe<SmartsRecommendedContainer>>>;
|
|
15196
|
+
recommendedUser?: Maybe<Array<Maybe<SmartsRecommendedUser>>>;
|
|
15197
|
+
recommendedObject?: Maybe<Array<Maybe<SmartsRecommendedObject>>>;
|
|
15198
|
+
};
|
|
15199
|
+
export declare type SmartsQueryApiRecommendedContainerArgs = {
|
|
15200
|
+
recommendationsQuery: SmartsRecommendationsQuery;
|
|
15201
|
+
};
|
|
15202
|
+
export declare type SmartsQueryApiRecommendedUserArgs = {
|
|
15203
|
+
recommendationsQuery: SmartsRecommendationsQuery;
|
|
15204
|
+
};
|
|
15205
|
+
export declare type SmartsQueryApiRecommendedObjectArgs = {
|
|
15206
|
+
recommendationsQuery: SmartsRecommendationsQuery;
|
|
15207
|
+
};
|
|
15208
|
+
export declare type SmartsRecommendationsQuery = {
|
|
15209
|
+
context: SmartsContext;
|
|
15210
|
+
modelRequestParams: SmartsModelRequestParams;
|
|
15211
|
+
sessionId?: Maybe<Scalars['String']>;
|
|
15212
|
+
requestingUserId: Scalars['String'];
|
|
15213
|
+
maxNumberOfResults?: Maybe<Scalars['Int']>;
|
|
15214
|
+
};
|
|
15215
|
+
export declare type SmartsRecommendedContainer = {
|
|
15216
|
+
__typename?: 'SmartsRecommendedContainer';
|
|
15217
|
+
id: Scalars['ID'];
|
|
15218
|
+
score?: Maybe<Scalars['Float']>;
|
|
15219
|
+
container?: Maybe<ConfluenceSpace>;
|
|
15220
|
+
};
|
|
15221
|
+
export declare type SmartsRecommendedObject = {
|
|
15222
|
+
__typename?: 'SmartsRecommendedObject';
|
|
15223
|
+
id: Scalars['ID'];
|
|
15224
|
+
score?: Maybe<Scalars['Float']>;
|
|
15225
|
+
object?: Maybe<SmartsRecommendedObjectData>;
|
|
15226
|
+
};
|
|
15227
|
+
export declare type SmartsRecommendedObjectData = ConfluencePage | ConfluenceBlogPost;
|
|
15228
|
+
export declare type SmartsRecommendedUser = {
|
|
15229
|
+
__typename?: 'SmartsRecommendedUser';
|
|
15230
|
+
id: Scalars['ID'];
|
|
15231
|
+
score?: Maybe<Scalars['Float']>;
|
|
15232
|
+
user?: Maybe<User>;
|
|
15233
|
+
};
|
|
15031
15234
|
export declare type SoftwareBoard = {
|
|
15032
15235
|
__typename?: 'SoftwareBoard';
|
|
15033
15236
|
id?: Maybe<Scalars['ID']>;
|