@forge/cli-shared 2.4.0 → 2.4.1-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
|
@@ -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,8 @@ 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']>;
|
|
1261
1264
|
};
|
|
1262
1265
|
export declare type BoardScopeSprintsArgs = {
|
|
1263
1266
|
state?: Maybe<Array<Maybe<SprintState>>>;
|
|
@@ -1684,6 +1687,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
1684
1687
|
createMetricSource?: Maybe<CompassCreateMetricSourcePayload>;
|
|
1685
1688
|
deleteMetricSource?: Maybe<CompassDeleteMetricSourcePayload>;
|
|
1686
1689
|
insertMetricValue?: Maybe<CompassInsertMetricValuePayload>;
|
|
1690
|
+
insertMetricValueByExternalId?: Maybe<CompassInsertMetricValueByExternalIdPayload>;
|
|
1687
1691
|
synchronizeLinkAssociations?: Maybe<CompassSynchronizeLinkAssociationsPayload>;
|
|
1688
1692
|
createCustomFieldDefinition?: Maybe<CompassCreateCustomFieldDefinitionPayload>;
|
|
1689
1693
|
updateCustomFieldDefinition?: Maybe<CompassUpdateCustomFieldDefinitionPayload>;
|
|
@@ -1834,6 +1838,9 @@ export declare type CompassCatalogMutationApiDeleteMetricSourceArgs = {
|
|
|
1834
1838
|
export declare type CompassCatalogMutationApiInsertMetricValueArgs = {
|
|
1835
1839
|
input: CompassInsertMetricValueInput;
|
|
1836
1840
|
};
|
|
1841
|
+
export declare type CompassCatalogMutationApiInsertMetricValueByExternalIdArgs = {
|
|
1842
|
+
input: CompassInsertMetricValueByExternalIdInput;
|
|
1843
|
+
};
|
|
1837
1844
|
export declare type CompassCatalogMutationApiSynchronizeLinkAssociationsArgs = {
|
|
1838
1845
|
input?: Maybe<CompassSynchronizeLinkAssociationsInput>;
|
|
1839
1846
|
};
|
|
@@ -2564,6 +2571,16 @@ export declare enum CompassIncidentEventState {
|
|
|
2564
2571
|
Closed = "CLOSED",
|
|
2565
2572
|
Deleted = "DELETED"
|
|
2566
2573
|
}
|
|
2574
|
+
export declare type CompassInsertMetricValueByExternalIdInput = {
|
|
2575
|
+
metricDefinitionId: Scalars['ID'];
|
|
2576
|
+
externalMetricSourceId: Scalars['ID'];
|
|
2577
|
+
value: CompassMetricValueInput;
|
|
2578
|
+
};
|
|
2579
|
+
export declare type CompassInsertMetricValueByExternalIdPayload = Payload & {
|
|
2580
|
+
__typename?: 'CompassInsertMetricValueByExternalIdPayload';
|
|
2581
|
+
success: Scalars['Boolean'];
|
|
2582
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2583
|
+
};
|
|
2567
2584
|
export declare type CompassInsertMetricValueInput = {
|
|
2568
2585
|
metricSourceId: Scalars['ID'];
|
|
2569
2586
|
value: CompassMetricValueInput;
|
|
@@ -5266,12 +5283,14 @@ export declare type DevOpsTool = Node & {
|
|
|
5266
5283
|
containerIntegration?: Maybe<DevOpsToolContainerIntegration>;
|
|
5267
5284
|
integration?: Maybe<DevOpsToolIntegration>;
|
|
5268
5285
|
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
5286
|
+
auth?: Maybe<DevOpsToolAuth>;
|
|
5269
5287
|
};
|
|
5270
5288
|
export declare type DevOpsToolNamespacesArgs = {
|
|
5271
5289
|
query?: Maybe<Scalars['String']>;
|
|
5272
5290
|
first?: Maybe<Scalars['Int']>;
|
|
5273
5291
|
after?: Maybe<Scalars['String']>;
|
|
5274
5292
|
};
|
|
5293
|
+
export declare type DevOpsToolAuth = DevOpsToolDefaultAuth | DevOpsToolOAuth;
|
|
5275
5294
|
export declare type DevOpsToolAvatar = {
|
|
5276
5295
|
__typename?: 'DevOpsToolAvatar';
|
|
5277
5296
|
url: Scalars['URL'];
|
|
@@ -5284,6 +5303,23 @@ export declare type DevOpsToolBitbucketCreate = DevOpsToolContainerCreationSpeci
|
|
|
5284
5303
|
name: Scalars['String'];
|
|
5285
5304
|
};
|
|
5286
5305
|
export declare type DevOpsToolCanContainerBeCreated = DevOpsToolContainerCanBeCreated | DevOpsToolContainerNameConflict | DevOpsToolContainerKeyConflict | DevOpsToolContainerKeyCannotBeGenerated | DevOpsToolUnknownTool;
|
|
5306
|
+
export declare type DevOpsToolCategory = {
|
|
5307
|
+
__typename?: 'DevOpsToolCategory';
|
|
5308
|
+
id: Scalars['String'];
|
|
5309
|
+
name: Scalars['String'];
|
|
5310
|
+
groupId: Scalars['String'];
|
|
5311
|
+
};
|
|
5312
|
+
export declare type DevOpsToolCategoryConnection = {
|
|
5313
|
+
__typename?: 'DevOpsToolCategoryConnection';
|
|
5314
|
+
edges?: Maybe<Array<Maybe<DevOpsToolCategoryEdge>>>;
|
|
5315
|
+
nodes?: Maybe<Array<Maybe<DevOpsToolCategory>>>;
|
|
5316
|
+
pageInfo: PageInfo;
|
|
5317
|
+
};
|
|
5318
|
+
export declare type DevOpsToolCategoryEdge = {
|
|
5319
|
+
__typename?: 'DevOpsToolCategoryEdge';
|
|
5320
|
+
cursor: Scalars['String'];
|
|
5321
|
+
node?: Maybe<DevOpsToolCategory>;
|
|
5322
|
+
};
|
|
5287
5323
|
export declare type DevOpsToolConfluenceCreate = DevOpsToolContainerCreationSpecification & {
|
|
5288
5324
|
__typename?: 'DevOpsToolConfluenceCreate';
|
|
5289
5325
|
requestId: Scalars['String'];
|
|
@@ -5358,6 +5394,10 @@ export declare type DevOpsToolContainerNameConflict = {
|
|
|
5358
5394
|
__typename?: 'DevOpsToolContainerNameConflict';
|
|
5359
5395
|
name?: Maybe<Scalars['String']>;
|
|
5360
5396
|
};
|
|
5397
|
+
export declare type DevOpsToolDefaultAuth = {
|
|
5398
|
+
__typename?: 'DevOpsToolDefaultAuth';
|
|
5399
|
+
authenticated: Scalars['Boolean'];
|
|
5400
|
+
};
|
|
5361
5401
|
export declare type DevOpsToolEdge = {
|
|
5362
5402
|
__typename?: 'DevOpsToolEdge';
|
|
5363
5403
|
cursor: Scalars['String'];
|
|
@@ -5379,6 +5419,22 @@ export declare type DevOpsToolGroup = {
|
|
|
5379
5419
|
__typename?: 'DevOpsToolGroup';
|
|
5380
5420
|
groupId: Scalars['String'];
|
|
5381
5421
|
groupName: Scalars['String'];
|
|
5422
|
+
categories?: Maybe<DevOpsToolCategoryConnection>;
|
|
5423
|
+
};
|
|
5424
|
+
export declare type DevOpsToolGroupCategoriesArgs = {
|
|
5425
|
+
first?: Maybe<Scalars['Int']>;
|
|
5426
|
+
after?: Maybe<Scalars['String']>;
|
|
5427
|
+
};
|
|
5428
|
+
export declare type DevOpsToolGroupConnection = {
|
|
5429
|
+
__typename?: 'DevOpsToolGroupConnection';
|
|
5430
|
+
edges?: Maybe<Array<Maybe<DevOpsToolGroupEdge>>>;
|
|
5431
|
+
nodes?: Maybe<Array<Maybe<DevOpsToolGroup>>>;
|
|
5432
|
+
pageInfo: PageInfo;
|
|
5433
|
+
};
|
|
5434
|
+
export declare type DevOpsToolGroupEdge = {
|
|
5435
|
+
__typename?: 'DevOpsToolGroupEdge';
|
|
5436
|
+
cursor: Scalars['String'];
|
|
5437
|
+
node?: Maybe<DevOpsToolGroup>;
|
|
5382
5438
|
};
|
|
5383
5439
|
export declare type DevOpsToolIntegration = DevOpsToolIntegrationApp | DevOpsToolIntegrationProduct;
|
|
5384
5440
|
export declare type DevOpsToolIntegrationApp = {
|
|
@@ -5432,6 +5488,11 @@ export declare enum DevOpsToolNavbarConnectionStateTab {
|
|
|
5432
5488
|
OncallTab = "ONCALL_TAB",
|
|
5433
5489
|
PagesTab = "PAGES_TAB"
|
|
5434
5490
|
}
|
|
5491
|
+
export declare type DevOpsToolOAuth = {
|
|
5492
|
+
__typename?: 'DevOpsToolOAuth';
|
|
5493
|
+
authenticated: Scalars['Boolean'];
|
|
5494
|
+
oauthUrl: Scalars['String'];
|
|
5495
|
+
};
|
|
5435
5496
|
export declare type DevOpsToolOpsgenieCreate = DevOpsToolContainerCreationSpecification & {
|
|
5436
5497
|
__typename?: 'DevOpsToolOpsgenieCreate';
|
|
5437
5498
|
requestId: Scalars['String'];
|
|
@@ -5460,6 +5521,7 @@ export declare type DevOpsTools = {
|
|
|
5460
5521
|
container?: Maybe<DevOpsToolContainer>;
|
|
5461
5522
|
navbarConnectionState?: Maybe<DevOpsToolNavbarConnectionState>;
|
|
5462
5523
|
canContainerBeCreated?: Maybe<DevOpsToolCanContainerBeCreated>;
|
|
5524
|
+
groups?: Maybe<DevOpsToolGroupConnection>;
|
|
5463
5525
|
};
|
|
5464
5526
|
export declare type DevOpsToolsToolsArgs = {
|
|
5465
5527
|
cloudId: Scalars['ID'];
|
|
@@ -5489,6 +5551,10 @@ export declare type DevOpsToolsCanContainerBeCreatedArgs = {
|
|
|
5489
5551
|
namespaceId: Scalars['String'];
|
|
5490
5552
|
containerName: Scalars['String'];
|
|
5491
5553
|
};
|
|
5554
|
+
export declare type DevOpsToolsGroupsArgs = {
|
|
5555
|
+
first?: Maybe<Scalars['Int']>;
|
|
5556
|
+
after?: Maybe<Scalars['String']>;
|
|
5557
|
+
};
|
|
5492
5558
|
export declare type DevStatus = {
|
|
5493
5559
|
__typename?: 'DevStatus';
|
|
5494
5560
|
activity: DevStatusActivity;
|
|
@@ -5724,6 +5790,11 @@ export declare enum ForgeMetricsGroupByDimensions {
|
|
|
5724
5790
|
EnvironmentId = "ENVIRONMENT_ID",
|
|
5725
5791
|
ErrorType = "ERROR_TYPE"
|
|
5726
5792
|
}
|
|
5793
|
+
export declare type ForgeMetricsInstallationContext = {
|
|
5794
|
+
__typename?: 'ForgeMetricsInstallationContext';
|
|
5795
|
+
tenantContext?: Maybe<TenantContext>;
|
|
5796
|
+
contextAri: Scalars['ID'];
|
|
5797
|
+
};
|
|
5727
5798
|
export declare type ForgeMetricsIntervalInput = {
|
|
5728
5799
|
start: Scalars['DateTime'];
|
|
5729
5800
|
end: Scalars['DateTime'];
|
|
@@ -5758,6 +5829,7 @@ export declare type ForgeMetricsQuery = {
|
|
|
5758
5829
|
successRateValue: ForgeMetricsSuccessRateValueResult;
|
|
5759
5830
|
invocations: ForgeMetricsInvocationsResult;
|
|
5760
5831
|
errors: ForgeMetricsErrorsResult;
|
|
5832
|
+
sites: ForgeMetricsSitesResult;
|
|
5761
5833
|
};
|
|
5762
5834
|
export declare type ForgeMetricsQuerySuccessRateArgs = {
|
|
5763
5835
|
query: ForgeMetricsQueryInput;
|
|
@@ -5771,6 +5843,9 @@ export declare type ForgeMetricsQueryInvocationsArgs = {
|
|
|
5771
5843
|
export declare type ForgeMetricsQueryErrorsArgs = {
|
|
5772
5844
|
query: ForgeMetricsQueryInput;
|
|
5773
5845
|
};
|
|
5846
|
+
export declare type ForgeMetricsQuerySitesArgs = {
|
|
5847
|
+
query: ForgeMetricsQueryInput;
|
|
5848
|
+
};
|
|
5774
5849
|
export declare type ForgeMetricsQueryFilters = {
|
|
5775
5850
|
environment?: Maybe<Scalars['ID']>;
|
|
5776
5851
|
contextAris?: Maybe<Array<Scalars['ID']>>;
|
|
@@ -5792,6 +5867,23 @@ export declare enum ForgeMetricsResolutionUnit {
|
|
|
5792
5867
|
export declare type ForgeMetricsSeries = {
|
|
5793
5868
|
groups: Array<ForgeMetricsLabelGroup>;
|
|
5794
5869
|
};
|
|
5870
|
+
export declare enum ForgeMetricsSiteFilterCategory {
|
|
5871
|
+
LowestSuccessRate = "LOWEST_SUCCESS_RATE",
|
|
5872
|
+
HighestInvocationCount = "HIGHEST_INVOCATION_COUNT",
|
|
5873
|
+
HighestNumberOfErrors = "HIGHEST_NUMBER_OF_ERRORS",
|
|
5874
|
+
HighestNumberOfUsers = "HIGHEST_NUMBER_OF_USERS",
|
|
5875
|
+
All = "ALL"
|
|
5876
|
+
}
|
|
5877
|
+
export declare type ForgeMetricsSitesByCategory = {
|
|
5878
|
+
__typename?: 'ForgeMetricsSitesByCategory';
|
|
5879
|
+
category: ForgeMetricsSiteFilterCategory;
|
|
5880
|
+
installationContexts: Array<ForgeMetricsInstallationContext>;
|
|
5881
|
+
};
|
|
5882
|
+
export declare type ForgeMetricsSitesData = {
|
|
5883
|
+
__typename?: 'ForgeMetricsSitesData';
|
|
5884
|
+
data: Array<ForgeMetricsSitesByCategory>;
|
|
5885
|
+
};
|
|
5886
|
+
export declare type ForgeMetricsSitesResult = ForgeMetricsSitesData | QueryError;
|
|
5795
5887
|
export declare type ForgeMetricsSuccessRateData = ForgeMetricsData & {
|
|
5796
5888
|
__typename?: 'ForgeMetricsSuccessRateData';
|
|
5797
5889
|
name: Scalars['String'];
|
|
@@ -6003,6 +6095,20 @@ export declare type HelpObjectStoreArticle = HelpObjectStoreHelpObject & Node &
|
|
|
6003
6095
|
entityProjectId?: Maybe<Scalars['String']>;
|
|
6004
6096
|
};
|
|
6005
6097
|
export declare type HelpObjectStoreArticleResult = HelpObjectStoreArticle | QueryError;
|
|
6098
|
+
export declare type HelpObjectStoreBulkCreateEntityMappingInput = {
|
|
6099
|
+
helpObjectStoreCreateEntityMappingInputItems: Array<HelpObjectStoreCreateEntityMappingInput>;
|
|
6100
|
+
};
|
|
6101
|
+
export declare type HelpObjectStoreCreateEntityMappingInput = {
|
|
6102
|
+
entityId: Scalars['String'];
|
|
6103
|
+
projectId: Scalars['String'];
|
|
6104
|
+
type: HelpObjectStoreJsmEntityType;
|
|
6105
|
+
};
|
|
6106
|
+
export declare type HelpObjectStoreCreateEntityMappingPayload = Payload & {
|
|
6107
|
+
__typename?: 'HelpObjectStoreCreateEntityMappingPayload';
|
|
6108
|
+
success: Scalars['Boolean'];
|
|
6109
|
+
errors?: Maybe<Array<MutationError>>;
|
|
6110
|
+
entityMappingDetails?: Maybe<Array<HelpObjectStoreSuccessfullyCreatedEntityMappingDetail>>;
|
|
6111
|
+
};
|
|
6006
6112
|
export declare type HelpObjectStoreHelpObject = {
|
|
6007
6113
|
id: Scalars['ID'];
|
|
6008
6114
|
title: Scalars['String'];
|
|
@@ -6018,6 +6124,17 @@ export declare type HelpObjectStoreIcon = {
|
|
|
6018
6124
|
__typename?: 'HelpObjectStoreIcon';
|
|
6019
6125
|
iconUrl: Scalars['URL'];
|
|
6020
6126
|
};
|
|
6127
|
+
export declare enum HelpObjectStoreJsmEntityType {
|
|
6128
|
+
RequestForm = "REQUEST_FORM",
|
|
6129
|
+
Article = "ARTICLE"
|
|
6130
|
+
}
|
|
6131
|
+
export declare type HelpObjectStoreMutationApi = {
|
|
6132
|
+
__typename?: 'HelpObjectStoreMutationApi';
|
|
6133
|
+
createEntityMapping?: Maybe<HelpObjectStoreCreateEntityMappingPayload>;
|
|
6134
|
+
};
|
|
6135
|
+
export declare type HelpObjectStoreMutationApiCreateEntityMappingArgs = {
|
|
6136
|
+
input: HelpObjectStoreBulkCreateEntityMappingInput;
|
|
6137
|
+
};
|
|
6021
6138
|
export declare type HelpObjectStoreQueryApi = {
|
|
6022
6139
|
__typename?: 'HelpObjectStoreQueryApi';
|
|
6023
6140
|
requestForms?: Maybe<Array<Maybe<HelpObjectStoreRequestFormResult>>>;
|
|
@@ -6040,6 +6157,12 @@ export declare type HelpObjectStoreRequestForm = HelpObjectStoreHelpObject & Nod
|
|
|
6040
6157
|
entityProjectId?: Maybe<Scalars['String']>;
|
|
6041
6158
|
};
|
|
6042
6159
|
export declare type HelpObjectStoreRequestFormResult = HelpObjectStoreRequestForm | QueryError;
|
|
6160
|
+
export declare type HelpObjectStoreSuccessfullyCreatedEntityMappingDetail = {
|
|
6161
|
+
__typename?: 'HelpObjectStoreSuccessfullyCreatedEntityMappingDetail';
|
|
6162
|
+
id: Scalars['ID'];
|
|
6163
|
+
entityId: Scalars['String'];
|
|
6164
|
+
projectId: Scalars['String'];
|
|
6165
|
+
};
|
|
6043
6166
|
export declare type HostedResourcePreSignedUrl = {
|
|
6044
6167
|
__typename?: 'HostedResourcePreSignedUrl';
|
|
6045
6168
|
uploadUrl: Scalars['String'];
|
|
@@ -7619,6 +7742,7 @@ export declare type JiraIssue = Node & {
|
|
|
7619
7742
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
7620
7743
|
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
7621
7744
|
fieldSetsForIssueSearchView?: Maybe<JiraIssueFieldSetConnection>;
|
|
7745
|
+
fieldSetsById?: Maybe<JiraIssueFieldSetConnection>;
|
|
7622
7746
|
issueLinks?: Maybe<JiraIssueLinkConnection>;
|
|
7623
7747
|
childIssues?: Maybe<JiraChildIssues>;
|
|
7624
7748
|
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
@@ -7675,6 +7799,13 @@ export declare type JiraIssueFieldSetsForIssueSearchViewArgs = {
|
|
|
7675
7799
|
last?: Maybe<Scalars['Int']>;
|
|
7676
7800
|
before?: Maybe<Scalars['String']>;
|
|
7677
7801
|
};
|
|
7802
|
+
export declare type JiraIssueFieldSetsByIdArgs = {
|
|
7803
|
+
fieldSetIds: Array<Scalars['String']>;
|
|
7804
|
+
first?: Maybe<Scalars['Int']>;
|
|
7805
|
+
after?: Maybe<Scalars['String']>;
|
|
7806
|
+
last?: Maybe<Scalars['Int']>;
|
|
7807
|
+
before?: Maybe<Scalars['String']>;
|
|
7808
|
+
};
|
|
7678
7809
|
export declare type JiraIssueIssueLinksArgs = {
|
|
7679
7810
|
first?: Maybe<Scalars['Int']>;
|
|
7680
7811
|
after?: Maybe<Scalars['String']>;
|
|
@@ -11018,6 +11149,13 @@ export declare type JiraUrlField = Node & JiraIssueField & JiraIssueFieldConfigu
|
|
|
11018
11149
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
11019
11150
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
11020
11151
|
};
|
|
11152
|
+
export declare type JiraUser = {
|
|
11153
|
+
__typename?: 'JiraUser';
|
|
11154
|
+
accountId?: Maybe<Scalars['String']>;
|
|
11155
|
+
displayName?: Maybe<Scalars['String']>;
|
|
11156
|
+
avatarUrl?: Maybe<Scalars['String']>;
|
|
11157
|
+
email?: Maybe<Scalars['String']>;
|
|
11158
|
+
};
|
|
11021
11159
|
export declare type JiraUserConnection = {
|
|
11022
11160
|
__typename?: 'JiraUserConnection';
|
|
11023
11161
|
pageInfo: PageInfo;
|
|
@@ -11039,6 +11177,11 @@ export declare type JiraUserGrantTypeValue = Node & {
|
|
|
11039
11177
|
id: Scalars['ID'];
|
|
11040
11178
|
user?: Maybe<User>;
|
|
11041
11179
|
};
|
|
11180
|
+
export declare type JiraUserGroup = {
|
|
11181
|
+
__typename?: 'JiraUserGroup';
|
|
11182
|
+
accountId?: Maybe<Scalars['String']>;
|
|
11183
|
+
displayName?: Maybe<Scalars['String']>;
|
|
11184
|
+
};
|
|
11042
11185
|
export declare type JiraUserIssueFieldConfiguration = {
|
|
11043
11186
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
11044
11187
|
};
|
|
@@ -11675,6 +11818,7 @@ export declare type Mutation = {
|
|
|
11675
11818
|
createJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipCreatePayload>;
|
|
11676
11819
|
deleteJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipDeletePayload>;
|
|
11677
11820
|
shepherd?: Maybe<ShepherdMutation>;
|
|
11821
|
+
helpObjectStore?: Maybe<HelpObjectStoreMutationApi>;
|
|
11678
11822
|
jsw?: Maybe<JswMutation>;
|
|
11679
11823
|
createColumn?: Maybe<CreateColumnOutput>;
|
|
11680
11824
|
setColumnName?: Maybe<SetColumnNameOutput>;
|
|
@@ -13492,6 +13636,7 @@ export declare type Query = {
|
|
|
13492
13636
|
releaseNote: ContentPlatformReleaseNote;
|
|
13493
13637
|
practicePages: ContentPlatformPracticePagesConnection;
|
|
13494
13638
|
practicePage: ContentPlatformPracticePage;
|
|
13639
|
+
smarts?: Maybe<SmartsQueryApi>;
|
|
13495
13640
|
devOpsTools?: Maybe<DevOpsTools>;
|
|
13496
13641
|
search?: Maybe<SearchQueryApi>;
|
|
13497
13642
|
townsquare?: Maybe<TownsquareQueryApi>;
|
|
@@ -15033,6 +15178,63 @@ export declare enum ShepherdWebhookType {
|
|
|
15033
15178
|
Custom = "CUSTOM",
|
|
15034
15179
|
Slack = "SLACK"
|
|
15035
15180
|
}
|
|
15181
|
+
export declare type SmartsContext = {
|
|
15182
|
+
userId: Scalars['String'];
|
|
15183
|
+
tenantId: Scalars['String'];
|
|
15184
|
+
product?: Maybe<Scalars['String']>;
|
|
15185
|
+
containerId?: Maybe<Scalars['String']>;
|
|
15186
|
+
objectId?: Maybe<Scalars['String']>;
|
|
15187
|
+
additionalContextList?: Maybe<Array<SmartsKeyValue>>;
|
|
15188
|
+
};
|
|
15189
|
+
export declare type SmartsKeyValue = {
|
|
15190
|
+
key: Scalars['String'];
|
|
15191
|
+
value: Scalars['String'];
|
|
15192
|
+
};
|
|
15193
|
+
export declare type SmartsModelRequestParams = {
|
|
15194
|
+
caller: Scalars['String'];
|
|
15195
|
+
experience: Scalars['String'];
|
|
15196
|
+
};
|
|
15197
|
+
export declare type SmartsQueryApi = {
|
|
15198
|
+
__typename?: 'SmartsQueryApi';
|
|
15199
|
+
recommendedContainer?: Maybe<Array<Maybe<SmartsRecommendedContainer>>>;
|
|
15200
|
+
recommendedUser?: Maybe<Array<Maybe<SmartsRecommendedUser>>>;
|
|
15201
|
+
recommendedObject?: Maybe<Array<Maybe<SmartsRecommendedObject>>>;
|
|
15202
|
+
};
|
|
15203
|
+
export declare type SmartsQueryApiRecommendedContainerArgs = {
|
|
15204
|
+
recommendationsQuery: SmartsRecommendationsQuery;
|
|
15205
|
+
};
|
|
15206
|
+
export declare type SmartsQueryApiRecommendedUserArgs = {
|
|
15207
|
+
recommendationsQuery: SmartsRecommendationsQuery;
|
|
15208
|
+
};
|
|
15209
|
+
export declare type SmartsQueryApiRecommendedObjectArgs = {
|
|
15210
|
+
recommendationsQuery: SmartsRecommendationsQuery;
|
|
15211
|
+
};
|
|
15212
|
+
export declare type SmartsRecommendationsQuery = {
|
|
15213
|
+
context: SmartsContext;
|
|
15214
|
+
modelRequestParams: SmartsModelRequestParams;
|
|
15215
|
+
smartsSessionId?: Maybe<Scalars['String']>;
|
|
15216
|
+
requestingUserId: Scalars['String'];
|
|
15217
|
+
maxNumberOfResults?: Maybe<Scalars['Int']>;
|
|
15218
|
+
};
|
|
15219
|
+
export declare type SmartsRecommendedContainer = {
|
|
15220
|
+
__typename?: 'SmartsRecommendedContainer';
|
|
15221
|
+
id: Scalars['ID'];
|
|
15222
|
+
score?: Maybe<Scalars['Float']>;
|
|
15223
|
+
container?: Maybe<ConfluenceSpace>;
|
|
15224
|
+
};
|
|
15225
|
+
export declare type SmartsRecommendedObject = {
|
|
15226
|
+
__typename?: 'SmartsRecommendedObject';
|
|
15227
|
+
id: Scalars['ID'];
|
|
15228
|
+
score?: Maybe<Scalars['Float']>;
|
|
15229
|
+
object?: Maybe<SmartsRecommendedObjectData>;
|
|
15230
|
+
};
|
|
15231
|
+
export declare type SmartsRecommendedObjectData = ConfluencePage | ConfluenceBlogPost;
|
|
15232
|
+
export declare type SmartsRecommendedUser = {
|
|
15233
|
+
__typename?: 'SmartsRecommendedUser';
|
|
15234
|
+
id: Scalars['ID'];
|
|
15235
|
+
score?: Maybe<Scalars['Float']>;
|
|
15236
|
+
user?: Maybe<User>;
|
|
15237
|
+
};
|
|
15036
15238
|
export declare type SoftwareBoard = {
|
|
15037
15239
|
__typename?: 'SoftwareBoard';
|
|
15038
15240
|
id?: Maybe<Scalars['ID']>;
|