@forge/cli-shared 8.20.0-next.1 → 8.20.0-next.2
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 +7 -0
- package/out/graphql/graphql-types.d.ts +576 -19
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +85 -43
- package/out/ui/text.d.ts +1 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +1 -0
- package/package.json +2 -2
|
@@ -369,6 +369,7 @@ export declare type AvpAnalyticsCreateModelPayload = Payload & {
|
|
|
369
369
|
};
|
|
370
370
|
export declare type AvpAnalyticsDataSource = {
|
|
371
371
|
__typename?: 'AVPAnalyticsDataSource';
|
|
372
|
+
cloudId?: Maybe<Scalars['ID']['output']>;
|
|
372
373
|
hasSubDataSources: Scalars['Boolean']['output'];
|
|
373
374
|
id: Scalars['ID']['output'];
|
|
374
375
|
metadata?: Maybe<AvpAnalyticsDataSourceMetadata>;
|
|
@@ -816,6 +817,12 @@ export declare type AvpAnalyticsSimpleColumnInput = {
|
|
|
816
817
|
sourceModelId: Scalars['ID']['input'];
|
|
817
818
|
type: AvpAnalyticsColumnType;
|
|
818
819
|
};
|
|
820
|
+
export declare type AvpAnalyticsSite = {
|
|
821
|
+
__typename?: 'AVPAnalyticsSite';
|
|
822
|
+
icon?: Maybe<Scalars['String']['output']>;
|
|
823
|
+
id: Scalars['ID']['output'];
|
|
824
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
825
|
+
};
|
|
819
826
|
export declare type AvpAnalyticsSortInput = {
|
|
820
827
|
sortKey: AvpAnalyticsSortKey;
|
|
821
828
|
sortType: AvpAnalyticsSortType;
|
|
@@ -1248,6 +1255,11 @@ export declare type AvpDashboardEdge = {
|
|
|
1248
1255
|
cursor: Scalars['String']['output'];
|
|
1249
1256
|
node: AvpDashboard;
|
|
1250
1257
|
};
|
|
1258
|
+
export declare type AvpDashboardFailedUserAccess = {
|
|
1259
|
+
__typename?: 'AVPDashboardFailedUserAccess';
|
|
1260
|
+
errorMessage: Scalars['String']['output'];
|
|
1261
|
+
user: AvpDashboardUserAccessResult;
|
|
1262
|
+
};
|
|
1251
1263
|
export declare type AvpDashboardFilterInput = {
|
|
1252
1264
|
chartType?: InputMaybe<Scalars['String']['input']>;
|
|
1253
1265
|
defaultValues?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
@@ -1255,6 +1267,11 @@ export declare type AvpDashboardFilterInput = {
|
|
|
1255
1267
|
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
1256
1268
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
1257
1269
|
};
|
|
1270
|
+
export declare enum AvpDashboardIdentityAccessLevel {
|
|
1271
|
+
Manage = "MANAGE",
|
|
1272
|
+
Read = "READ",
|
|
1273
|
+
Write = "WRITE"
|
|
1274
|
+
}
|
|
1258
1275
|
export declare type AvpDashboardInput = {
|
|
1259
1276
|
category?: InputMaybe<Scalars['String']['input']>;
|
|
1260
1277
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1314,6 +1331,15 @@ export declare type AvpDashboardTemplateInput = {
|
|
|
1314
1331
|
templatePlaceholderReplacements?: InputMaybe<Array<AvpTemplatePlaceholderReplacement>>;
|
|
1315
1332
|
templateVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
1316
1333
|
};
|
|
1334
|
+
export declare type AvpDashboardUserAccessInput = {
|
|
1335
|
+
accessLevel: AvpDashboardIdentityAccessLevel;
|
|
1336
|
+
accountId: Scalars['String']['input'];
|
|
1337
|
+
};
|
|
1338
|
+
export declare type AvpDashboardUserAccessResult = {
|
|
1339
|
+
__typename?: 'AVPDashboardUserAccessResult';
|
|
1340
|
+
accessLevel: AvpDashboardIdentityAccessLevel;
|
|
1341
|
+
accountId: Scalars['String']['output'];
|
|
1342
|
+
};
|
|
1317
1343
|
export declare type AvpDashboardsConnection = HasPageInfo & {
|
|
1318
1344
|
__typename?: 'AVPDashboardsConnection';
|
|
1319
1345
|
edges: Array<AvpDashboardEdge>;
|
|
@@ -1822,6 +1848,17 @@ export declare type AvpUpdateDashboardFilterPayload = Payload & {
|
|
|
1822
1848
|
filter?: Maybe<AvpCreateDashboardFilterResponse>;
|
|
1823
1849
|
success: Scalars['Boolean']['output'];
|
|
1824
1850
|
};
|
|
1851
|
+
export declare type AvpUpdateDashboardIdentityAccessInput = {
|
|
1852
|
+
dashboardAri: Scalars['ID']['input'];
|
|
1853
|
+
users: Array<AvpDashboardUserAccessInput>;
|
|
1854
|
+
};
|
|
1855
|
+
export declare type AvpUpdateDashboardIdentityAccessPayload = Payload & {
|
|
1856
|
+
__typename?: 'AVPUpdateDashboardIdentityAccessPayload';
|
|
1857
|
+
errors?: Maybe<Array<MutationError>>;
|
|
1858
|
+
failedUsers?: Maybe<Array<AvpDashboardFailedUserAccess>>;
|
|
1859
|
+
success: Scalars['Boolean']['output'];
|
|
1860
|
+
updatedUsers?: Maybe<Array<AvpDashboardUserAccessResult>>;
|
|
1861
|
+
};
|
|
1825
1862
|
export declare type AvpUpdateDashboardInput = {
|
|
1826
1863
|
dashboard: AvpDashboardInput;
|
|
1827
1864
|
dashboardAri: Scalars['ID']['input'];
|
|
@@ -5929,6 +5966,7 @@ export declare type AgentWorkspaceAgentsPageInfo = {
|
|
|
5929
5966
|
export declare type AgentWorkspaceAppliedFilters = {
|
|
5930
5967
|
__typename?: 'AgentWorkspaceAppliedFilters';
|
|
5931
5968
|
agentIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
5969
|
+
scheduleIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
5932
5970
|
};
|
|
5933
5971
|
export declare type AgentWorkspaceArchiveSkillInput = {
|
|
5934
5972
|
cloudId: Scalars['ID']['input'];
|
|
@@ -6041,10 +6079,13 @@ export declare type AgentWorkspaceBulkImportJob = {
|
|
|
6041
6079
|
validationErrorCount?: Maybe<Scalars['Int']['output']>;
|
|
6042
6080
|
};
|
|
6043
6081
|
export declare enum AgentWorkspaceBulkImportJobStatus {
|
|
6082
|
+
ImportError = "IMPORT_ERROR",
|
|
6044
6083
|
ImportFailed = "IMPORT_FAILED",
|
|
6045
6084
|
ImportInProgress = "IMPORT_IN_PROGRESS",
|
|
6085
|
+
ImportPartial = "IMPORT_PARTIAL",
|
|
6046
6086
|
ImportProcessing = "IMPORT_PROCESSING",
|
|
6047
6087
|
ImportSuccessful = "IMPORT_SUCCESSFUL",
|
|
6088
|
+
ValidationError = "VALIDATION_ERROR",
|
|
6048
6089
|
ValidationFailed = "VALIDATION_FAILED",
|
|
6049
6090
|
ValidationInProgress = "VALIDATION_IN_PROGRESS",
|
|
6050
6091
|
ValidationSuccessful = "VALIDATION_SUCCESSFUL"
|
|
@@ -6972,11 +7013,13 @@ export declare type AgentWorkspaceTeamSchedulesEdge = {
|
|
|
6972
7013
|
node: AgentWorkspaceTeamSchedules;
|
|
6973
7014
|
};
|
|
6974
7015
|
export declare type AgentWorkspaceTeamSchedulesQueryInput = {
|
|
7016
|
+
agentIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
6975
7017
|
cloudId: Scalars['ID']['input'];
|
|
6976
7018
|
endTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
6977
7019
|
isInitialFetch?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6978
7020
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
6979
7021
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
7022
|
+
scheduleIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
6980
7023
|
startTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
6981
7024
|
teamARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
6982
7025
|
teamIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -7149,6 +7192,22 @@ export declare type AgentWorkspaceUsersBySkillsInput = {
|
|
|
7149
7192
|
skillIds: Array<Scalars['ID']['input']>;
|
|
7150
7193
|
skillMatchType?: InputMaybe<AgentWorkspaceSkillMatchType>;
|
|
7151
7194
|
};
|
|
7195
|
+
export declare type AiCoreApiCsvExportInput = {
|
|
7196
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
7197
|
+
fromDate?: InputMaybe<Scalars['String']['input']>;
|
|
7198
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
7199
|
+
reportType: AiCoreApiCsvExportReportType;
|
|
7200
|
+
toDate?: InputMaybe<Scalars['String']['input']>;
|
|
7201
|
+
};
|
|
7202
|
+
export declare type AiCoreApiCsvExportJob = {
|
|
7203
|
+
__typename?: 'AiCoreApiCsvExportJob';
|
|
7204
|
+
jobId: Scalars['ID']['output'];
|
|
7205
|
+
};
|
|
7206
|
+
export declare enum AiCoreApiCsvExportReportType {
|
|
7207
|
+
Accuracy = "ACCURACY",
|
|
7208
|
+
SkillGap = "SKILL_GAP"
|
|
7209
|
+
}
|
|
7210
|
+
export declare type AiCoreApiCsvExportResult = AiCoreApiCsvExportJob | QueryError;
|
|
7152
7211
|
export declare enum AiCoreApiQuestionType {
|
|
7153
7212
|
DraftDocument = "DRAFT_DOCUMENT",
|
|
7154
7213
|
KnowledgeBase = "KNOWLEDGE_BASE"
|
|
@@ -9015,6 +9074,38 @@ export declare type AssetsBooleanAttributeOnObject = AssetsAttributeOnObject & {
|
|
|
9015
9074
|
schemaId?: Maybe<Scalars['ID']['output']>;
|
|
9016
9075
|
value?: Maybe<Scalars['Boolean']['output']>;
|
|
9017
9076
|
};
|
|
9077
|
+
export declare type AssetsCdmObjectType = Node & {
|
|
9078
|
+
__typename?: 'AssetsCdmObjectType';
|
|
9079
|
+
abstractObjectType?: Maybe<Scalars['Boolean']['output']>;
|
|
9080
|
+
icon?: Maybe<AssetsIcon>;
|
|
9081
|
+
id: Scalars['ID']['output'];
|
|
9082
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
9083
|
+
};
|
|
9084
|
+
export declare type AssetsCdmObjectTypeConnection = {
|
|
9085
|
+
__typename?: 'AssetsCdmObjectTypeConnection';
|
|
9086
|
+
edges?: Maybe<Array<AssetsCdmObjectTypeEdge>>;
|
|
9087
|
+
pageInfo: PageInfo;
|
|
9088
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
9089
|
+
};
|
|
9090
|
+
export declare type AssetsCdmObjectTypeEdge = {
|
|
9091
|
+
__typename?: 'AssetsCdmObjectTypeEdge';
|
|
9092
|
+
cursor: Scalars['String']['output'];
|
|
9093
|
+
node?: Maybe<AssetsCdmObjectType>;
|
|
9094
|
+
};
|
|
9095
|
+
export declare type AssetsCdmObjectTypeResult = AssetsCdmObjectType | QueryError;
|
|
9096
|
+
export declare type AssetsCdmSchema = Node & {
|
|
9097
|
+
__typename?: 'AssetsCdmSchema';
|
|
9098
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
9099
|
+
id: Scalars['ID']['output'];
|
|
9100
|
+
key: Scalars['String']['output'];
|
|
9101
|
+
name: Scalars['String']['output'];
|
|
9102
|
+
objectTypes?: Maybe<AssetsCdmObjectTypeConnection>;
|
|
9103
|
+
};
|
|
9104
|
+
export declare type AssetsCdmSchemaObjectTypesArgs = {
|
|
9105
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
9106
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
9107
|
+
};
|
|
9108
|
+
export declare type AssetsCdmSchemaResult = AssetsCdmSchema | QueryError;
|
|
9018
9109
|
export declare type AssetsDmAdapter = {
|
|
9019
9110
|
__typename?: 'AssetsDMAdapter';
|
|
9020
9111
|
dataSourceType?: Maybe<Scalars['String']['output']>;
|
|
@@ -18650,6 +18741,8 @@ export declare enum CommerceExpEntitlementType {
|
|
|
18650
18741
|
Enterprise = "ENTERPRISE",
|
|
18651
18742
|
EnterpriseInstance = "ENTERPRISE_INSTANCE",
|
|
18652
18743
|
FamilyContainer = "FAMILY_CONTAINER",
|
|
18744
|
+
MultiInstance = "MULTI_INSTANCE",
|
|
18745
|
+
MultiInstanceChild = "MULTI_INSTANCE_CHILD",
|
|
18653
18746
|
Product = "PRODUCT"
|
|
18654
18747
|
}
|
|
18655
18748
|
export declare type CommerceExpEntitlementUpdateInput = {
|
|
@@ -26609,6 +26702,14 @@ export declare type ConfluenceConflictedPerson = Person & {
|
|
|
26609
26702
|
userKey?: Maybe<Scalars['String']['output']>;
|
|
26610
26703
|
username?: Maybe<Scalars['String']['output']>;
|
|
26611
26704
|
};
|
|
26705
|
+
export declare type ConfluenceContentAiSummaryByContentId = {
|
|
26706
|
+
__typename?: 'ConfluenceContentAISummaryByContentId';
|
|
26707
|
+
contentId: Scalars['ID']['output'];
|
|
26708
|
+
contentType?: Maybe<KnowledgeGraphContentType>;
|
|
26709
|
+
createdAt: Scalars['String']['output'];
|
|
26710
|
+
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
26711
|
+
objectData?: Maybe<Scalars['String']['output']>;
|
|
26712
|
+
};
|
|
26612
26713
|
export declare type ConfluenceContentAiSummaryResponse = {
|
|
26613
26714
|
__typename?: 'ConfluenceContentAISummaryResponse';
|
|
26614
26715
|
contentAri: Scalars['ID']['output'];
|
|
@@ -30868,6 +30969,16 @@ export declare type ConfluenceSetContentGeneralAccessModePayload = Payload & {
|
|
|
30868
30969
|
errors?: Maybe<Array<MutationError>>;
|
|
30869
30970
|
success: Scalars['Boolean']['output'];
|
|
30870
30971
|
};
|
|
30972
|
+
export declare type ConfluenceSetCutoverRoleConfigInput = {
|
|
30973
|
+
fallbackRoleId?: InputMaybe<Scalars['ID']['input']>;
|
|
30974
|
+
strategy: ConfluenceCutoverFallbackStrategy;
|
|
30975
|
+
};
|
|
30976
|
+
export declare type ConfluenceSetCutoverRoleConfigPayload = Payload & {
|
|
30977
|
+
__typename?: 'ConfluenceSetCutoverRoleConfigPayload';
|
|
30978
|
+
cutoverRoleConfig?: Maybe<ConfluenceCutoverRoleConfig>;
|
|
30979
|
+
errors?: Maybe<Array<MutationError>>;
|
|
30980
|
+
success: Scalars['Boolean']['output'];
|
|
30981
|
+
};
|
|
30871
30982
|
export declare type ConfluenceSetSubCalendarReminderInput = {
|
|
30872
30983
|
isReminder: Scalars['Boolean']['input'];
|
|
30873
30984
|
subCalendarId: Scalars['ID']['input'];
|
|
@@ -33550,6 +33661,15 @@ export declare type ConvoAiAgentSessionUpdatedByProjects = {
|
|
|
33550
33661
|
projectId: Scalars['String']['output'];
|
|
33551
33662
|
state: ConvoAiAgentSessionState;
|
|
33552
33663
|
};
|
|
33664
|
+
export declare type ConvoAiAvailableSkillsResult = {
|
|
33665
|
+
__typename?: 'ConvoAiAvailableSkillsResult';
|
|
33666
|
+
edges?: Maybe<Array<ConvoAiSkillEdge>>;
|
|
33667
|
+
errors?: Maybe<Array<QueryError>>;
|
|
33668
|
+
metadata: ConvoAiSkillListMetadata;
|
|
33669
|
+
nodes?: Maybe<Array<ConvoAiSkill>>;
|
|
33670
|
+
pageInfo: PageInfo;
|
|
33671
|
+
totalCount: Scalars['Int']['output'];
|
|
33672
|
+
};
|
|
33553
33673
|
export declare type ConvoAiConfluenceSpaceRecommendation = {
|
|
33554
33674
|
__typename?: 'ConvoAiConfluenceSpaceRecommendation';
|
|
33555
33675
|
id: Scalars['ID']['output'];
|
|
@@ -33721,7 +33841,9 @@ export declare type ConvoAiJiraSimilarWorkItemSuggestionSourcesArgs = {
|
|
|
33721
33841
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
33722
33842
|
};
|
|
33723
33843
|
export declare enum ConvoAiJiraSimilarWorkItemSuggestionSource {
|
|
33844
|
+
English = "ENGLISH",
|
|
33724
33845
|
Ers = "ERS",
|
|
33846
|
+
NonEnglish = "NON_ENGLISH",
|
|
33725
33847
|
RecentlyCreated = "RECENTLY_CREATED",
|
|
33726
33848
|
XpSearch = "XP_SEARCH"
|
|
33727
33849
|
}
|
|
@@ -33780,6 +33902,37 @@ export declare enum ConvoAiRelatedLinksMode {
|
|
|
33780
33902
|
ThirdParty = "THIRD_PARTY",
|
|
33781
33903
|
Unified = "UNIFIED"
|
|
33782
33904
|
}
|
|
33905
|
+
export declare type ConvoAiSkill = {
|
|
33906
|
+
__typename?: 'ConvoAiSkill';
|
|
33907
|
+
category?: Maybe<Scalars['String']['output']>;
|
|
33908
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
33909
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
33910
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
33911
|
+
iconKey?: Maybe<Scalars['String']['output']>;
|
|
33912
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
33913
|
+
id: Scalars['ID']['output'];
|
|
33914
|
+
integrationKeys: Array<Scalars['String']['output']>;
|
|
33915
|
+
name: Scalars['String']['output'];
|
|
33916
|
+
slashCommand?: Maybe<Scalars['String']['output']>;
|
|
33917
|
+
source: ConvoAiSkillSource;
|
|
33918
|
+
tags: Array<Scalars['String']['output']>;
|
|
33919
|
+
version?: Maybe<Scalars['String']['output']>;
|
|
33920
|
+
};
|
|
33921
|
+
export declare type ConvoAiSkillEdge = {
|
|
33922
|
+
__typename?: 'ConvoAiSkillEdge';
|
|
33923
|
+
cursor: Scalars['String']['output'];
|
|
33924
|
+
node?: Maybe<ConvoAiSkill>;
|
|
33925
|
+
};
|
|
33926
|
+
export declare type ConvoAiSkillListMetadata = {
|
|
33927
|
+
__typename?: 'ConvoAiSkillListMetadata';
|
|
33928
|
+
anthropicCount: Scalars['Int']['output'];
|
|
33929
|
+
isDegraded: Scalars['Boolean']['output'];
|
|
33930
|
+
stratusCount: Scalars['Int']['output'];
|
|
33931
|
+
};
|
|
33932
|
+
export declare enum ConvoAiSkillSource {
|
|
33933
|
+
Anthropic = "ANTHROPIC",
|
|
33934
|
+
Stratus = "STRATUS"
|
|
33935
|
+
}
|
|
33783
33936
|
export declare type ConvoAiThirdPartyRelatedLink = {
|
|
33784
33937
|
__typename?: 'ConvoAiThirdPartyRelatedLink';
|
|
33785
33938
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -105935,7 +106088,7 @@ export declare type HelpObjectStoreQueryApiSearchHelpObjectsArgs = {
|
|
|
105935
106088
|
searchInput: HelpObjectStoreSearchInput;
|
|
105936
106089
|
};
|
|
105937
106090
|
export declare type HelpObjectStoreQueryApiSuggestedRequestTypesArgs = {
|
|
105938
|
-
|
|
106091
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
105939
106092
|
};
|
|
105940
106093
|
export declare type HelpObjectStoreQueryError = {
|
|
105941
106094
|
__typename?: 'HelpObjectStoreQueryError';
|
|
@@ -110102,6 +110255,7 @@ export declare type JiraCfoAnalyticsResultDataArgs = {
|
|
|
110102
110255
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
110103
110256
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
110104
110257
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
110258
|
+
sortInput?: InputMaybe<JiraCfoSortInput>;
|
|
110105
110259
|
};
|
|
110106
110260
|
export declare type JiraCfoBoardFilterInput = {
|
|
110107
110261
|
creatorAccountId?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -110127,6 +110281,7 @@ export declare type JiraCfoBoardPerformanceAnalyticsResultDataArgs = {
|
|
|
110127
110281
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
110128
110282
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
110129
110283
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
110284
|
+
sortInput?: InputMaybe<JiraCfoSortInput>;
|
|
110130
110285
|
};
|
|
110131
110286
|
export declare type JiraCfoBoardPerformanceDataRow = JiraCfoDataRow & {
|
|
110132
110287
|
__typename?: 'JiraCFOBoardPerformanceDataRow';
|
|
@@ -110158,6 +110313,16 @@ export declare enum JiraCfoBoardPerformanceStatus {
|
|
|
110158
110313
|
Moderate = "MODERATE",
|
|
110159
110314
|
Slow = "SLOW"
|
|
110160
110315
|
}
|
|
110316
|
+
export declare type JiraCfoClientSetupConfig = {
|
|
110317
|
+
__typename?: 'JiraCFOClientSetupConfig';
|
|
110318
|
+
distribution?: Maybe<Array<Maybe<JiraCfoDistribution>>>;
|
|
110319
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
110320
|
+
};
|
|
110321
|
+
export declare type JiraCfoConfigsResult = {
|
|
110322
|
+
__typename?: 'JiraCFOConfigsResult';
|
|
110323
|
+
clientSetupConfig?: Maybe<Array<Maybe<JiraCfoClientSetupConfig>>>;
|
|
110324
|
+
loadTimeConfig?: Maybe<JiraCfoLoadTimeConfig>;
|
|
110325
|
+
};
|
|
110161
110326
|
export declare type JiraCfoCreateRecommendationsPayload = Payload & {
|
|
110162
110327
|
__typename?: 'JiraCFOCreateRecommendationsPayload';
|
|
110163
110328
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -110182,6 +110347,7 @@ export declare type JiraCfoDataRowEdge = {
|
|
|
110182
110347
|
export declare type JiraCfoDefaultAnalyticsResult = JiraCfoAnalyticsResult & {
|
|
110183
110348
|
__typename?: 'JiraCFODefaultAnalyticsResult';
|
|
110184
110349
|
data?: Maybe<JiraCfoDataRowConnection>;
|
|
110350
|
+
insight?: Maybe<Array<Maybe<JiraCfoMetricInsight>>>;
|
|
110185
110351
|
summary?: Maybe<JiraCfoMetricSummary>;
|
|
110186
110352
|
};
|
|
110187
110353
|
export declare type JiraCfoDefaultAnalyticsResultDataArgs = {
|
|
@@ -110189,6 +110355,7 @@ export declare type JiraCfoDefaultAnalyticsResultDataArgs = {
|
|
|
110189
110355
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
110190
110356
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
110191
110357
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
110358
|
+
sortInput?: InputMaybe<JiraCfoSortInput>;
|
|
110192
110359
|
};
|
|
110193
110360
|
export declare type JiraCfoDefaultDataRow = JiraCfoDataRow & {
|
|
110194
110361
|
__typename?: 'JiraCFODefaultDataRow';
|
|
@@ -110214,14 +110381,30 @@ export declare type JiraCfoDimensionInput = {
|
|
|
110214
110381
|
alias?: InputMaybe<Scalars['String']['input']>;
|
|
110215
110382
|
name: Scalars['String']['input'];
|
|
110216
110383
|
};
|
|
110384
|
+
export declare type JiraCfoDistribution = {
|
|
110385
|
+
__typename?: 'JiraCFODistribution';
|
|
110386
|
+
category?: Maybe<JiraCfoDistributionCategory>;
|
|
110387
|
+
value?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
110388
|
+
};
|
|
110389
|
+
export declare enum JiraCfoDistributionCategory {
|
|
110390
|
+
Fair = "FAIR",
|
|
110391
|
+
Fast = "FAST",
|
|
110392
|
+
Slow = "SLOW"
|
|
110393
|
+
}
|
|
110217
110394
|
export declare type JiraCfoFilterInput = {
|
|
110218
110395
|
boardFilter?: InputMaybe<JiraCfoBoardFilterInput>;
|
|
110219
110396
|
dimensionFilter?: InputMaybe<JiraCfoDimensionFilterInput>;
|
|
110220
110397
|
};
|
|
110221
110398
|
export declare enum JiraCfoFilterOperator {
|
|
110399
|
+
Contains = "CONTAINS",
|
|
110222
110400
|
Equals = "EQUALS",
|
|
110223
110401
|
In = "IN"
|
|
110224
110402
|
}
|
|
110403
|
+
export declare type JiraCfoLoadTimeConfig = {
|
|
110404
|
+
__typename?: 'JiraCFOLoadTimeConfig';
|
|
110405
|
+
higherThreshold?: Maybe<Scalars['Float']['output']>;
|
|
110406
|
+
lowerThreshold?: Maybe<Scalars['Float']['output']>;
|
|
110407
|
+
};
|
|
110225
110408
|
export declare type JiraCfoMetric = {
|
|
110226
110409
|
__typename?: 'JiraCFOMetric';
|
|
110227
110410
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -110240,6 +110423,21 @@ export declare type JiraCfoMetricInput = {
|
|
|
110240
110423
|
name: Scalars['String']['input'];
|
|
110241
110424
|
summarize?: InputMaybe<Scalars['Boolean']['input']>;
|
|
110242
110425
|
};
|
|
110426
|
+
export declare type JiraCfoMetricInsight = {
|
|
110427
|
+
__typename?: 'JiraCFOMetricInsight';
|
|
110428
|
+
metadata?: Maybe<JiraCfoMetricInsightMetaData>;
|
|
110429
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
110430
|
+
status?: Maybe<JiraCfoMetricInsightStatus>;
|
|
110431
|
+
};
|
|
110432
|
+
export declare type JiraCfoMetricInsightMetaData = {
|
|
110433
|
+
__typename?: 'JiraCFOMetricInsightMetaData';
|
|
110434
|
+
loadTimeDiff?: Maybe<Scalars['Int']['output']>;
|
|
110435
|
+
};
|
|
110436
|
+
export declare enum JiraCfoMetricInsightStatus {
|
|
110437
|
+
FastSetup = "FAST_SETUP",
|
|
110438
|
+
InconclusiveData = "INCONCLUSIVE_DATA",
|
|
110439
|
+
PerformanceImpact = "PERFORMANCE_IMPACT"
|
|
110440
|
+
}
|
|
110243
110441
|
export declare type JiraCfoMetricSummary = {
|
|
110244
110442
|
periodComparison?: Maybe<Array<Maybe<JiraCfoMetricComparison>>>;
|
|
110245
110443
|
};
|
|
@@ -110300,8 +110498,17 @@ export declare enum JiraCfoRecommendationStatus {
|
|
|
110300
110498
|
Info = "INFO",
|
|
110301
110499
|
Warning = "WARNING"
|
|
110302
110500
|
}
|
|
110501
|
+
export declare type JiraCfoSortInput = {
|
|
110502
|
+
key?: InputMaybe<Scalars['String']['input']>;
|
|
110503
|
+
order?: InputMaybe<JiraCfoSortOrder>;
|
|
110504
|
+
};
|
|
110505
|
+
export declare enum JiraCfoSortOrder {
|
|
110506
|
+
Asc = "ASC",
|
|
110507
|
+
Desc = "DESC"
|
|
110508
|
+
}
|
|
110303
110509
|
export declare enum JiraCfoTimeGranularity {
|
|
110304
110510
|
Day = "DAY",
|
|
110511
|
+
Minutes_15 = "MINUTES_15",
|
|
110305
110512
|
Month = "MONTH",
|
|
110306
110513
|
Week = "WEEK"
|
|
110307
110514
|
}
|
|
@@ -111508,6 +111715,7 @@ export declare type JiraConfluenceLinkDetails = JiraConsolidatedResourceDetails
|
|
|
111508
111715
|
};
|
|
111509
111716
|
export declare type JiraConfluenceLinkResource = JiraConsolidatedResource & {
|
|
111510
111717
|
__typename?: 'JiraConfluenceLinkResource';
|
|
111718
|
+
author?: Maybe<User>;
|
|
111511
111719
|
contentType?: Maybe<Scalars['String']['output']>;
|
|
111512
111720
|
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
111513
111721
|
details?: Maybe<JiraConfluenceLinkDetails>;
|
|
@@ -119337,6 +119545,12 @@ export declare enum JiraJqlViewContext {
|
|
|
119337
119545
|
Jwm = "JWM",
|
|
119338
119546
|
ShadowRequest = "SHADOW_REQUEST"
|
|
119339
119547
|
}
|
|
119548
|
+
export declare type JiraJsmIssueViewAiPanelForServiceDeskEnabledMutationPayload = Payload & {
|
|
119549
|
+
__typename?: 'JiraJsmIssueViewAIPanelForServiceDeskEnabledMutationPayload';
|
|
119550
|
+
errors?: Maybe<Array<MutationError>>;
|
|
119551
|
+
isJsmIssueViewAIPanelForServiceDeskEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
119552
|
+
success: Scalars['Boolean']['output'];
|
|
119553
|
+
};
|
|
119340
119554
|
export declare type JiraJswBoardViewSettings = {
|
|
119341
119555
|
__typename?: 'JiraJswBoardViewSettings';
|
|
119342
119556
|
cardOptions?: Maybe<JiraJswBoardViewSettingsCardOptionConnection>;
|
|
@@ -119466,6 +119680,37 @@ export declare type JiraLabelsFieldPayload = Payload & {
|
|
|
119466
119680
|
field?: Maybe<JiraLabelsField>;
|
|
119467
119681
|
success: Scalars['Boolean']['output'];
|
|
119468
119682
|
};
|
|
119683
|
+
export declare type JiraLabelsForCreateField = {
|
|
119684
|
+
__typename?: 'JiraLabelsForCreateField';
|
|
119685
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
119686
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
119687
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
119688
|
+
fieldId: Scalars['String']['output'];
|
|
119689
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
119690
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
119691
|
+
id: Scalars['ID']['output'];
|
|
119692
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
119693
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
119694
|
+
isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
|
|
119695
|
+
issue?: Maybe<JiraIssue>;
|
|
119696
|
+
labelExists?: Maybe<Scalars['Boolean']['output']>;
|
|
119697
|
+
labels?: Maybe<JiraLabelConnection>;
|
|
119698
|
+
name: Scalars['String']['output'];
|
|
119699
|
+
type: Scalars['String']['output'];
|
|
119700
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
119701
|
+
};
|
|
119702
|
+
export declare type JiraLabelsForCreateFieldLabelExistsArgs = {
|
|
119703
|
+
name: Scalars['String']['input'];
|
|
119704
|
+
};
|
|
119705
|
+
export declare type JiraLabelsForCreateFieldLabelsArgs = {
|
|
119706
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
119707
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
119708
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
119709
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
119710
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
119711
|
+
sessionId?: InputMaybe<Scalars['ID']['input']>;
|
|
119712
|
+
suggested?: InputMaybe<Scalars['Boolean']['input']>;
|
|
119713
|
+
};
|
|
119469
119714
|
export declare type JiraLabelsInput = {
|
|
119470
119715
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
119471
119716
|
};
|
|
@@ -124107,6 +124352,7 @@ export declare type JiraQuery = {
|
|
|
124107
124352
|
bulkOperationsMetadata?: Maybe<JiraIssueBulkOperationsMetadata>;
|
|
124108
124353
|
canPerform?: Maybe<Scalars['Boolean']['output']>;
|
|
124109
124354
|
cfoAnalytics?: Maybe<JiraCfoAnalyticsResult>;
|
|
124355
|
+
cfoConfigs?: Maybe<JiraCfoConfigsResult>;
|
|
124110
124356
|
cfoRecommendationGroups?: Maybe<JiraCfoRecommendationGroupDetailConnection>;
|
|
124111
124357
|
cfoRecommendations?: Maybe<JiraCfoRecommendationConnection>;
|
|
124112
124358
|
childIssuesLimit?: Maybe<Scalars['Long']['output']>;
|
|
@@ -124469,9 +124715,15 @@ export declare type JiraQueryCfoAnalyticsArgs = {
|
|
|
124469
124715
|
endDate: Scalars['DateTime']['input'];
|
|
124470
124716
|
filters?: InputMaybe<Array<JiraCfoFilterInput>>;
|
|
124471
124717
|
granularity?: InputMaybe<JiraCfoTimeGranularity>;
|
|
124718
|
+
insightOn?: InputMaybe<Array<InputMaybe<JiraCfoDimensionInput>>>;
|
|
124472
124719
|
metrics: Array<JiraCfoMetricInput>;
|
|
124720
|
+
sortInput?: InputMaybe<Array<InputMaybe<JiraCfoSortInput>>>;
|
|
124473
124721
|
startDate: Scalars['DateTime']['input'];
|
|
124474
124722
|
};
|
|
124723
|
+
export declare type JiraQueryCfoConfigsArgs = {
|
|
124724
|
+
cloudId: Scalars['ID']['input'];
|
|
124725
|
+
dimensions?: InputMaybe<Array<InputMaybe<JiraCfoDimensionInput>>>;
|
|
124726
|
+
};
|
|
124475
124727
|
export declare type JiraQueryCfoRecommendationGroupsArgs = {
|
|
124476
124728
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
124477
124729
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -131416,6 +131668,7 @@ export declare type JiraUserPreferences = {
|
|
|
131416
131668
|
isIssueViewPinnedFieldsBannerDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
131417
131669
|
isIssueViewProactiveCommentSummariesFeatureEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
131418
131670
|
isIssueViewSmartRepliesUserEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
131671
|
+
isJsmIssueViewAIPanelForServiceDeskEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
131419
131672
|
isMiniModalGlobalIssueCreateDiscoverabilityPushComplete?: Maybe<Scalars['Boolean']['output']>;
|
|
131420
131673
|
isNaturalLanguageSpotlightTourEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
131421
131674
|
issueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
|
|
@@ -131486,6 +131739,7 @@ export declare type JiraUserPreferencesMutation = {
|
|
|
131486
131739
|
saveRequestTypeTableViewSettings?: Maybe<Scalars['String']['output']>;
|
|
131487
131740
|
setFilterSearchMode?: Maybe<JiraFilterSearchModeMutationPayload>;
|
|
131488
131741
|
setIsIssueViewHideDoneChildIssuesFilterEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
131742
|
+
setIsJsmIssueViewAIPanelForServiceDeskEnabled?: Maybe<JiraJsmIssueViewAiPanelForServiceDeskEnabledMutationPayload>;
|
|
131489
131743
|
setIssueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayoutMutationPayload>;
|
|
131490
131744
|
setIssueViewTimestampDisplayMode?: Maybe<JiraIssueViewTimestampDisplayMode>;
|
|
131491
131745
|
setJQLBuilderSearchMode?: Maybe<JiraJqlBuilderSearchModeMutationPayload>;
|
|
@@ -131508,6 +131762,9 @@ export declare type JiraUserPreferencesMutationSetFilterSearchModeArgs = {
|
|
|
131508
131762
|
export declare type JiraUserPreferencesMutationSetIsIssueViewHideDoneChildIssuesFilterEnabledArgs = {
|
|
131509
131763
|
isHideDoneEnabled: Scalars['Boolean']['input'];
|
|
131510
131764
|
};
|
|
131765
|
+
export declare type JiraUserPreferencesMutationSetIsJsmIssueViewAiPanelForServiceDeskEnabledArgs = {
|
|
131766
|
+
isEnabled: Scalars['Boolean']['input'];
|
|
131767
|
+
};
|
|
131511
131768
|
export declare type JiraUserPreferencesMutationSetIssueNavigatorSearchLayoutArgs = {
|
|
131512
131769
|
searchLayout?: InputMaybe<JiraIssueNavigatorSearchLayout>;
|
|
131513
131770
|
};
|
|
@@ -133509,6 +133766,16 @@ export declare type JpdViewsServiceViewBase = {
|
|
|
133509
133766
|
rank?: Maybe<Scalars['Int']['output']>;
|
|
133510
133767
|
visualizationType: JpdViewsServiceVisualizationType;
|
|
133511
133768
|
};
|
|
133769
|
+
export declare type JpdViewsServiceViewCommentEvent = {
|
|
133770
|
+
__typename?: 'JpdViewsServiceViewCommentEvent';
|
|
133771
|
+
action: Scalars['String']['output'];
|
|
133772
|
+
authorAaid?: Maybe<Scalars['String']['output']>;
|
|
133773
|
+
cloudId: Scalars['String']['output'];
|
|
133774
|
+
commentId: Scalars['String']['output'];
|
|
133775
|
+
containerId: Scalars['String']['output'];
|
|
133776
|
+
containerType: Scalars['String']['output'];
|
|
133777
|
+
viewId: Scalars['String']['output'];
|
|
133778
|
+
};
|
|
133512
133779
|
export declare enum JpdViewsServiceViewLayoutType {
|
|
133513
133780
|
Compact = "COMPACT",
|
|
133514
133781
|
Detailed = "DETAILED",
|
|
@@ -136489,11 +136756,11 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
136489
136756
|
searchRelatedEntities?: Maybe<KnowledgeDiscoverySearchRelatedEntitiesResult>;
|
|
136490
136757
|
searchTeam?: Maybe<KnowledgeDiscoveryTeamSearchResult>;
|
|
136491
136758
|
searchUser?: Maybe<KnowledgeDiscoveryUserSearchResult>;
|
|
136759
|
+
searchUsersV2?: Maybe<KnowledgeDiscoverySearchUsersResult>;
|
|
136492
136760
|
singleUser?: Maybe<KnowledgeDiscoverySingleUserResult>;
|
|
136493
136761
|
smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
|
|
136494
136762
|
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
136495
136763
|
topicsByAris?: Maybe<Array<Maybe<KnowledgeDiscoveryTopicByAri>>>;
|
|
136496
|
-
userSearchV2?: Maybe<KnowledgeDiscoverySearchUsersResult>;
|
|
136497
136764
|
zeroQueries?: Maybe<KnowledgeDiscoveryZeroQueriesResult>;
|
|
136498
136765
|
zeroQueriesV1?: Maybe<KnowledgeDiscoveryZeroQueriesResult>;
|
|
136499
136766
|
};
|
|
@@ -136591,6 +136858,7 @@ export declare type KnowledgeDiscoveryQueryApiRelatedEntitiesArgs = {
|
|
|
136591
136858
|
export declare type KnowledgeDiscoveryQueryApiReportingLinesArgs = {
|
|
136592
136859
|
aaid: Scalars['String']['input'];
|
|
136593
136860
|
orgId: Scalars['String']['input'];
|
|
136861
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
136594
136862
|
siteId: Scalars['String']['input'];
|
|
136595
136863
|
};
|
|
136596
136864
|
export declare type KnowledgeDiscoveryQueryApiSearchRelatedEntitiesArgs = {
|
|
@@ -136608,6 +136876,11 @@ export declare type KnowledgeDiscoveryQueryApiSearchUserArgs = {
|
|
|
136608
136876
|
siteId: Scalars['String']['input'];
|
|
136609
136877
|
userQuery: Scalars['String']['input'];
|
|
136610
136878
|
};
|
|
136879
|
+
export declare type KnowledgeDiscoveryQueryApiSearchUsersV2Args = {
|
|
136880
|
+
accountIds: Array<Scalars['String']['input']>;
|
|
136881
|
+
requestingUserId: Scalars['String']['input'];
|
|
136882
|
+
tenantId: Scalars['String']['input'];
|
|
136883
|
+
};
|
|
136611
136884
|
export declare type KnowledgeDiscoveryQueryApiSingleUserArgs = {
|
|
136612
136885
|
accountId: Scalars['String']['input'];
|
|
136613
136886
|
requestingUserId: Scalars['String']['input'];
|
|
@@ -136628,11 +136901,6 @@ export declare type KnowledgeDiscoveryQueryApiTopicArgs = {
|
|
|
136628
136901
|
export declare type KnowledgeDiscoveryQueryApiTopicsByArisArgs = {
|
|
136629
136902
|
ids: Array<Scalars['ID']['input']>;
|
|
136630
136903
|
};
|
|
136631
|
-
export declare type KnowledgeDiscoveryQueryApiUserSearchV2Args = {
|
|
136632
|
-
accountIds: Array<Scalars['String']['input']>;
|
|
136633
|
-
requestingUserId: Scalars['String']['input'];
|
|
136634
|
-
tenantId: Scalars['String']['input'];
|
|
136635
|
-
};
|
|
136636
136904
|
export declare type KnowledgeDiscoveryQueryApiZeroQueriesArgs = {
|
|
136637
136905
|
cloudId: Scalars['String']['input'];
|
|
136638
136906
|
product?: InputMaybe<KnowledgeDiscoveryProduct>;
|
|
@@ -136785,7 +137053,11 @@ export declare type KnowledgeDiscoverySearchUsers = {
|
|
|
136785
137053
|
users?: Maybe<Array<Maybe<KnowledgeDiscoverySearchUserCard>>>;
|
|
136786
137054
|
};
|
|
136787
137055
|
export declare type KnowledgeDiscoverySearchUsersResult = KnowledgeDiscoverySearchUsers | QueryError;
|
|
136788
|
-
export declare type
|
|
137056
|
+
export declare type KnowledgeDiscoverySingleUser = {
|
|
137057
|
+
__typename?: 'KnowledgeDiscoverySingleUser';
|
|
137058
|
+
user?: Maybe<KnowledgeDiscoveryUserProfile>;
|
|
137059
|
+
};
|
|
137060
|
+
export declare type KnowledgeDiscoverySingleUserResult = KnowledgeDiscoverySingleUser | QueryError;
|
|
136789
137061
|
export declare type KnowledgeDiscoverySmartAnswersRoute = {
|
|
136790
137062
|
__typename?: 'KnowledgeDiscoverySmartAnswersRoute';
|
|
136791
137063
|
route: KnowledgeDiscoverySearchQueryClassification;
|
|
@@ -136900,10 +137172,6 @@ export declare type KnowledgeDiscoveryUserManager = {
|
|
|
136900
137172
|
jobTitle?: Maybe<Scalars['String']['output']>;
|
|
136901
137173
|
picture?: Maybe<Scalars['String']['output']>;
|
|
136902
137174
|
};
|
|
136903
|
-
export declare type KnowledgeDiscoveryUserPayload = {
|
|
136904
|
-
__typename?: 'KnowledgeDiscoveryUserPayload';
|
|
136905
|
-
user?: Maybe<KnowledgeDiscoveryUserProfile>;
|
|
136906
|
-
};
|
|
136907
137175
|
export declare type KnowledgeDiscoveryUserProfile = {
|
|
136908
137176
|
__typename?: 'KnowledgeDiscoveryUserProfile';
|
|
136909
137177
|
accountStatus?: Maybe<Scalars['String']['output']>;
|
|
@@ -141315,6 +141583,7 @@ export declare type MarketplaceStoreQueryApi = {
|
|
|
141315
141583
|
personalisedContextAndLayout: MarketplaceStorePersonalisedContextAndLayoutResponse;
|
|
141316
141584
|
privacyAndSecurity: MarketplaceStorePrivacyAndSecurityResponse;
|
|
141317
141585
|
recommendationsSection?: Maybe<MarketplaceStoreRecommendationsSection>;
|
|
141586
|
+
reviewSummary?: Maybe<MarketplaceStoreReviewSummaryResponse>;
|
|
141318
141587
|
siteDetails: MarketplaceStoreSiteDetailsResponse;
|
|
141319
141588
|
userPreferences: MarketplaceStoreGetUserPreferencesResponse;
|
|
141320
141589
|
userProfile: MarketplaceStoreUserProfileResponse;
|
|
@@ -141432,6 +141701,10 @@ export declare type MarketplaceStoreQueryApiPrivacyAndSecurityArgs = {
|
|
|
141432
141701
|
export declare type MarketplaceStoreQueryApiRecommendationsSectionArgs = {
|
|
141433
141702
|
usecase: MarketplaceStoreRecommendationsUsecase;
|
|
141434
141703
|
};
|
|
141704
|
+
export declare type MarketplaceStoreQueryApiReviewSummaryArgs = {
|
|
141705
|
+
appKey: Scalars['String']['input'];
|
|
141706
|
+
hostingType: MarketplaceStoreAtlassianProductHostingType;
|
|
141707
|
+
};
|
|
141435
141708
|
export declare type MarketplaceStoreQueryApiSiteDetailsArgs = {
|
|
141436
141709
|
input: MarketplaceStoreSiteDetailsInput;
|
|
141437
141710
|
};
|
|
@@ -141510,6 +141783,14 @@ export declare type MarketplaceStoreReviewNodeWithProductListing = MarketplaceSt
|
|
|
141510
141783
|
totalVotes?: Maybe<Scalars['Int']['output']>;
|
|
141511
141784
|
transitionedToFiveStarRating?: Maybe<Scalars['Boolean']['output']>;
|
|
141512
141785
|
};
|
|
141786
|
+
export declare type MarketplaceStoreReviewSummaryContent = {
|
|
141787
|
+
__typename?: 'MarketplaceStoreReviewSummaryContent';
|
|
141788
|
+
overallFeedback: Scalars['String']['output'];
|
|
141789
|
+
};
|
|
141790
|
+
export declare type MarketplaceStoreReviewSummaryResponse = {
|
|
141791
|
+
__typename?: 'MarketplaceStoreReviewSummaryResponse';
|
|
141792
|
+
summary: MarketplaceStoreReviewSummaryContent;
|
|
141793
|
+
};
|
|
141513
141794
|
export declare type MarketplaceStoreReviewsByUserResponse = {
|
|
141514
141795
|
__typename?: 'MarketplaceStoreReviewsByUserResponse';
|
|
141515
141796
|
id: Scalars['ID']['output'];
|
|
@@ -144556,6 +144837,15 @@ export declare type MercuryLinkRiskToFocusAreasPayload = Payload & {
|
|
|
144556
144837
|
errors?: Maybe<Array<MutationError>>;
|
|
144557
144838
|
success: Scalars['Boolean']['output'];
|
|
144558
144839
|
};
|
|
144840
|
+
export declare type MercuryLinkWorkToBenefitItemInput = {
|
|
144841
|
+
benefitItemId: Scalars['ID']['input'];
|
|
144842
|
+
workIds: Array<Scalars['ID']['input']>;
|
|
144843
|
+
};
|
|
144844
|
+
export declare type MercuryLinkWorkToBenefitItemPayload = Payload & {
|
|
144845
|
+
__typename?: 'MercuryLinkWorkToBenefitItemPayload';
|
|
144846
|
+
errors?: Maybe<Array<MutationError>>;
|
|
144847
|
+
success: Scalars['Boolean']['output'];
|
|
144848
|
+
};
|
|
144559
144849
|
export declare type MercuryLinkWorkToChangeProposalInput = {
|
|
144560
144850
|
changeProposalId: Scalars['ID']['input'];
|
|
144561
144851
|
workIds: Array<Scalars['ID']['input']>;
|
|
@@ -145333,9 +145623,11 @@ export declare type MercuryProviderOrchestrationMutationApi = {
|
|
|
145333
145623
|
__typename?: 'MercuryProviderOrchestrationMutationApi';
|
|
145334
145624
|
deleteFocusAreaWorkLinks?: Maybe<MercuryDeleteFocusAreaWorkLinksPayload>;
|
|
145335
145625
|
linkAtlassianWorkToFocusArea?: Maybe<MercuryLinkAtlassianWorkToFocusAreaPayload>;
|
|
145626
|
+
linkWorkToBenefitItem?: Maybe<MercuryLinkWorkToBenefitItemPayload>;
|
|
145336
145627
|
linkWorkToChangeProposal?: Maybe<MercuryLinkWorkToChangeProposalPayload>;
|
|
145337
145628
|
linkWorkToFocusArea?: Maybe<MercuryLinkWorkToFocusAreaPayload>;
|
|
145338
145629
|
linkWorkToRisk?: Maybe<MercuryLinkWorkToRiskPayload>;
|
|
145630
|
+
unlinkWorkFromBenefitItem?: Maybe<MercuryUnlinkWorkFromBenefitItemPayload>;
|
|
145339
145631
|
unlinkWorkFromChangeProposal?: Maybe<MercuryUnlinkWorkFromChangeProposalPayload>;
|
|
145340
145632
|
unlinkWorkFromRisk?: Maybe<MercuryUnlinkWorkFromRiskPayload>;
|
|
145341
145633
|
};
|
|
@@ -145345,6 +145637,9 @@ export declare type MercuryProviderOrchestrationMutationApiDeleteFocusAreaWorkLi
|
|
|
145345
145637
|
export declare type MercuryProviderOrchestrationMutationApiLinkAtlassianWorkToFocusAreaArgs = {
|
|
145346
145638
|
input: MercuryLinkAtlassianWorkToFocusAreaInput;
|
|
145347
145639
|
};
|
|
145640
|
+
export declare type MercuryProviderOrchestrationMutationApiLinkWorkToBenefitItemArgs = {
|
|
145641
|
+
input: MercuryLinkWorkToBenefitItemInput;
|
|
145642
|
+
};
|
|
145348
145643
|
export declare type MercuryProviderOrchestrationMutationApiLinkWorkToChangeProposalArgs = {
|
|
145349
145644
|
input: MercuryLinkWorkToChangeProposalInput;
|
|
145350
145645
|
};
|
|
@@ -145354,6 +145649,9 @@ export declare type MercuryProviderOrchestrationMutationApiLinkWorkToFocusAreaAr
|
|
|
145354
145649
|
export declare type MercuryProviderOrchestrationMutationApiLinkWorkToRiskArgs = {
|
|
145355
145650
|
input: MercuryLinkWorkToRiskInput;
|
|
145356
145651
|
};
|
|
145652
|
+
export declare type MercuryProviderOrchestrationMutationApiUnlinkWorkFromBenefitItemArgs = {
|
|
145653
|
+
input: MercuryUnlinkWorkFromBenefitItemInput;
|
|
145654
|
+
};
|
|
145357
145655
|
export declare type MercuryProviderOrchestrationMutationApiUnlinkWorkFromChangeProposalArgs = {
|
|
145358
145656
|
input: MercuryUnlinkWorkFromChangeProposalInput;
|
|
145359
145657
|
};
|
|
@@ -146754,6 +147052,15 @@ export declare type MercuryUnlinkRiskFromFocusAreasPayload = Payload & {
|
|
|
146754
147052
|
errors?: Maybe<Array<MutationError>>;
|
|
146755
147053
|
success: Scalars['Boolean']['output'];
|
|
146756
147054
|
};
|
|
147055
|
+
export declare type MercuryUnlinkWorkFromBenefitItemInput = {
|
|
147056
|
+
benefitItemId: Scalars['ID']['input'];
|
|
147057
|
+
workIds: Array<Scalars['ID']['input']>;
|
|
147058
|
+
};
|
|
147059
|
+
export declare type MercuryUnlinkWorkFromBenefitItemPayload = Payload & {
|
|
147060
|
+
__typename?: 'MercuryUnlinkWorkFromBenefitItemPayload';
|
|
147061
|
+
errors?: Maybe<Array<MutationError>>;
|
|
147062
|
+
success: Scalars['Boolean']['output'];
|
|
147063
|
+
};
|
|
146757
147064
|
export declare type MercuryUnlinkWorkFromChangeProposalInput = {
|
|
146758
147065
|
changeProposalId: Scalars['ID']['input'];
|
|
146759
147066
|
workIds: Array<Scalars['ID']['input']>;
|
|
@@ -147670,6 +147977,7 @@ export declare type Mutation = {
|
|
|
147670
147977
|
agentWorkspace_updateSkill?: Maybe<AgentWorkspaceSkillUpdatePayload>;
|
|
147671
147978
|
agentWorkspace_updateSkillProficiency?: Maybe<AgentWorkspaceUpdateSkillProficiencyPayload>;
|
|
147672
147979
|
agentWorkspace_updateSmartRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
|
|
147980
|
+
aiCoreApi_initiateCsvExport?: Maybe<AiCoreApiCsvExportResult>;
|
|
147673
147981
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
147674
147982
|
appStorage?: Maybe<AppStorageMutation>;
|
|
147675
147983
|
appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
|
|
@@ -147782,6 +148090,7 @@ export declare type Mutation = {
|
|
|
147782
148090
|
avp_updateChart?: Maybe<AvpUpdateChartPayload>;
|
|
147783
148091
|
avp_updateDashboard?: Maybe<AvpUpdateDashboardPayload>;
|
|
147784
148092
|
avp_updateDashboardFilter?: Maybe<AvpUpdateDashboardFilterPayload>;
|
|
148093
|
+
avp_updateDashboardIdentityAccess?: Maybe<AvpUpdateDashboardIdentityAccessPayload>;
|
|
147785
148094
|
avp_updateDashboardResourcePermission?: Maybe<AvpUpdateDashboardResourcePermissionPayload>;
|
|
147786
148095
|
avp_updateDashboardRowHeight?: Maybe<AvpUpdateDashboardRowHeightPayload>;
|
|
147787
148096
|
avp_updateDashboardRowNumElements?: Maybe<AvpUpdateDashboardRowNumElementsPayload>;
|
|
@@ -147923,6 +148232,7 @@ export declare type Mutation = {
|
|
|
147923
148232
|
confluence_sendToDesktop?: Maybe<ConfluenceDesktopSendPayload>;
|
|
147924
148233
|
confluence_setContentApprovalsSpaceSettings?: Maybe<ConfluenceContentApprovalsSpaceSettingsPayload>;
|
|
147925
148234
|
confluence_setContentGeneralAccessMode?: Maybe<ConfluenceSetContentGeneralAccessModePayload>;
|
|
148235
|
+
confluence_setCutoverRoleConfig?: Maybe<ConfluenceSetCutoverRoleConfigPayload>;
|
|
147926
148236
|
confluence_setSubCalendarReminder?: Maybe<ConfluenceSetSubCalendarReminderPayload>;
|
|
147927
148237
|
confluence_shareContent?: Maybe<ConfluenceShareContentPayload>;
|
|
147928
148238
|
confluence_subscribeCalendars?: Maybe<ConfluenceSubscribeCalendarPayload>;
|
|
@@ -148464,6 +148774,7 @@ export declare type Mutation = {
|
|
|
148464
148774
|
newPage?: Maybe<NewPagePayload>;
|
|
148465
148775
|
notifications?: Maybe<InfluentsNotificationMutation>;
|
|
148466
148776
|
notifyUsersOnFirstView?: Maybe<NotificationResponsePayload>;
|
|
148777
|
+
oauthClients?: Maybe<OAuthClientsMutation>;
|
|
148467
148778
|
offlineUserAuthToken?: Maybe<OfflineUserAuthTokenResponse>;
|
|
148468
148779
|
offlineUserAuthTokenForExtension?: Maybe<OfflineUserAuthTokenResponse>;
|
|
148469
148780
|
openUpSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -148633,6 +148944,7 @@ export declare type Mutation = {
|
|
|
148633
148944
|
spf_createPlanPortfolioAllowedType?: Maybe<SpfUpsertPlanPortfolioAllowedTypePayload>;
|
|
148634
148945
|
spf_createPlanScenario?: Maybe<SpfUpsertPlanScenarioPayload>;
|
|
148635
148946
|
spf_createPlanScenarioInvestments?: Maybe<SpfCreatePlanScenarioInvestmentsPayload>;
|
|
148947
|
+
spf_createView?: Maybe<SpfUpsertViewPayload>;
|
|
148636
148948
|
spf_deleteAsk?: Maybe<SpfDeleteAskPayload>;
|
|
148637
148949
|
spf_deleteAskComment?: Maybe<SpfDeleteAskCommentPayload>;
|
|
148638
148950
|
spf_deleteAskLink?: Maybe<SpfDeleteAskLinkPayload>;
|
|
@@ -148641,6 +148953,7 @@ export declare type Mutation = {
|
|
|
148641
148953
|
spf_deletePlanPortfolioAllowedType?: Maybe<SpfDeletePlanPortfolioAllowedTypePayload>;
|
|
148642
148954
|
spf_deletePlanScenario?: Maybe<SpfDeletePlanScenarioPayload>;
|
|
148643
148955
|
spf_deletePlanScenarioInvestments?: Maybe<SpfDeletePlanScenarioInvestmentsPayload>;
|
|
148956
|
+
spf_deleteView?: Maybe<SpfDeleteViewPayload>;
|
|
148644
148957
|
spf_grantEntityPermission?: Maybe<SpfGrantEntityPermissionPayload>;
|
|
148645
148958
|
spf_prioritizePlanScenarioInvestment?: Maybe<SpfPrioritizePlanScenarioInvestmentPayload>;
|
|
148646
148959
|
spf_rejectProposedDate?: Maybe<SpfUpsertAskUpdatePayload>;
|
|
@@ -148677,6 +148990,8 @@ export declare type Mutation = {
|
|
|
148677
148990
|
spf_updatePlanStatus?: Maybe<SpfUpsertPlanPayload>;
|
|
148678
148991
|
spf_updatePlanTimeframe?: Maybe<SpfUpsertPlanPayload>;
|
|
148679
148992
|
spf_updatePlanVisibility?: Maybe<SpfUpsertPlanPayload>;
|
|
148993
|
+
spf_updateViewName?: Maybe<SpfUpsertViewPayload>;
|
|
148994
|
+
spf_updateViewSettings?: Maybe<SpfUpsertViewPayload>;
|
|
148680
148995
|
splitIssue?: Maybe<SplitIssueOutput>;
|
|
148681
148996
|
spss_exportFullSiteScanResults?: Maybe<SpssExportFullSiteScanResultsPayload>;
|
|
148682
148997
|
stakeholderComms_addStakeholderMembers?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
@@ -148713,6 +149028,7 @@ export declare type Mutation = {
|
|
|
148713
149028
|
stakeholderComms_updateDraftPage?: Maybe<StakeholderCommsPageResponse>;
|
|
148714
149029
|
stakeholderComms_updateIncident?: Maybe<StakeholderCommsIncidentResponse>;
|
|
148715
149030
|
stakeholderComms_updatePage?: Maybe<StakeholderCommsPageResponse>;
|
|
149031
|
+
stakeholderComms_updatePrivatePageGroupAssignments?: Maybe<StakeholderCommsPrivatePageGroupAssignmentListResponse>;
|
|
148716
149032
|
stakeholderComms_updateStakeholder?: Maybe<StakeholderCommsStakeholderResponse>;
|
|
148717
149033
|
stakeholderComms_updateStakeholderGroup?: Maybe<StakeholderCommsStakeholderGroupsAndStakeholders>;
|
|
148718
149034
|
stakeholderComms_validateSubscriberToken?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -149182,6 +149498,9 @@ export declare type MutationAgentWorkspace_UpdateSkillProficiencyArgs = {
|
|
|
149182
149498
|
export declare type MutationAgentWorkspace_UpdateSmartRoutingConfigArgs = {
|
|
149183
149499
|
input: AgentWorkspaceUpdateSmartRoutingConfigInput;
|
|
149184
149500
|
};
|
|
149501
|
+
export declare type MutationAiCoreApi_InitiateCsvExportArgs = {
|
|
149502
|
+
input: AiCoreApiCsvExportInput;
|
|
149503
|
+
};
|
|
149185
149504
|
export declare type MutationAppStorage_AdminArgs = {
|
|
149186
149505
|
appId: Scalars['ID']['input'];
|
|
149187
149506
|
};
|
|
@@ -149640,6 +149959,9 @@ export declare type MutationAvp_UpdateDashboardArgs = {
|
|
|
149640
149959
|
export declare type MutationAvp_UpdateDashboardFilterArgs = {
|
|
149641
149960
|
input: AvpUpdateDashboardFilterInput;
|
|
149642
149961
|
};
|
|
149962
|
+
export declare type MutationAvp_UpdateDashboardIdentityAccessArgs = {
|
|
149963
|
+
input: AvpUpdateDashboardIdentityAccessInput;
|
|
149964
|
+
};
|
|
149643
149965
|
export declare type MutationAvp_UpdateDashboardResourcePermissionArgs = {
|
|
149644
149966
|
input: AvpUpdateDashboardResourcePermissionInput;
|
|
149645
149967
|
};
|
|
@@ -150140,6 +150462,10 @@ export declare type MutationConfluence_SetContentGeneralAccessModeArgs = {
|
|
|
150140
150462
|
cloudId: Scalars['ID']['input'];
|
|
150141
150463
|
input: ConfluenceSetContentGeneralAccessModeInput;
|
|
150142
150464
|
};
|
|
150465
|
+
export declare type MutationConfluence_SetCutoverRoleConfigArgs = {
|
|
150466
|
+
cloudId: Scalars['ID']['input'];
|
|
150467
|
+
input: ConfluenceSetCutoverRoleConfigInput;
|
|
150468
|
+
};
|
|
150143
150469
|
export declare type MutationConfluence_SetSubCalendarReminderArgs = {
|
|
150144
150470
|
cloudId: Scalars['ID']['input'];
|
|
150145
150471
|
input: ConfluenceSetSubCalendarReminderInput;
|
|
@@ -152489,6 +152815,9 @@ export declare type MutationSpf_CreatePlanScenarioArgs = {
|
|
|
152489
152815
|
export declare type MutationSpf_CreatePlanScenarioInvestmentsArgs = {
|
|
152490
152816
|
input: SpfCreatePlanScenarioInvestmentsInput;
|
|
152491
152817
|
};
|
|
152818
|
+
export declare type MutationSpf_CreateViewArgs = {
|
|
152819
|
+
input: SpfCreateViewInput;
|
|
152820
|
+
};
|
|
152492
152821
|
export declare type MutationSpf_DeleteAskArgs = {
|
|
152493
152822
|
input: SpfDeleteAskInput;
|
|
152494
152823
|
};
|
|
@@ -152513,6 +152842,9 @@ export declare type MutationSpf_DeletePlanScenarioArgs = {
|
|
|
152513
152842
|
export declare type MutationSpf_DeletePlanScenarioInvestmentsArgs = {
|
|
152514
152843
|
input: SpfDeletePlanScenarioInvestmentsInput;
|
|
152515
152844
|
};
|
|
152845
|
+
export declare type MutationSpf_DeleteViewArgs = {
|
|
152846
|
+
input: SpfDeleteViewInput;
|
|
152847
|
+
};
|
|
152516
152848
|
export declare type MutationSpf_GrantEntityPermissionArgs = {
|
|
152517
152849
|
input: SpfEntityPermissionInput;
|
|
152518
152850
|
};
|
|
@@ -152621,6 +152953,12 @@ export declare type MutationSpf_UpdatePlanTimeframeArgs = {
|
|
|
152621
152953
|
export declare type MutationSpf_UpdatePlanVisibilityArgs = {
|
|
152622
152954
|
input: SpfUpdatePlanVisibilityInput;
|
|
152623
152955
|
};
|
|
152956
|
+
export declare type MutationSpf_UpdateViewNameArgs = {
|
|
152957
|
+
input: SpfUpdateViewNameInput;
|
|
152958
|
+
};
|
|
152959
|
+
export declare type MutationSpf_UpdateViewSettingsArgs = {
|
|
152960
|
+
input: SpfUpdateViewSettingsInput;
|
|
152961
|
+
};
|
|
152624
152962
|
export declare type MutationSplitIssueArgs = {
|
|
152625
152963
|
input?: InputMaybe<SplitIssueInput>;
|
|
152626
152964
|
};
|
|
@@ -152771,6 +153109,10 @@ export declare type MutationStakeholderComms_UpdatePageArgs = {
|
|
|
152771
153109
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
152772
153110
|
page: StakeholderCommsUpdatePageInputType;
|
|
152773
153111
|
};
|
|
153112
|
+
export declare type MutationStakeholderComms_UpdatePrivatePageGroupAssignmentsArgs = {
|
|
153113
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
153114
|
+
input: StakeholderCommsUpdatePrivatePageGroupAssignmentsInput;
|
|
153115
|
+
};
|
|
152774
153116
|
export declare type MutationStakeholderComms_UpdateStakeholderArgs = {
|
|
152775
153117
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
152776
153118
|
updateStakeholderInput: StakeholderCommsUpdateStakeholderInput;
|
|
@@ -153426,6 +153768,13 @@ export declare type OAuthClientsClientInfo = {
|
|
|
153426
153768
|
customerName?: Maybe<Scalars['String']['output']>;
|
|
153427
153769
|
profileName?: Maybe<Scalars['String']['output']>;
|
|
153428
153770
|
};
|
|
153771
|
+
export declare type OAuthClientsMutation = {
|
|
153772
|
+
__typename?: 'OAuthClientsMutation';
|
|
153773
|
+
revokeAccountGrant?: Maybe<OAuthClientsRevokeAccountGrantResult>;
|
|
153774
|
+
};
|
|
153775
|
+
export declare type OAuthClientsMutationRevokeAccountGrantArgs = {
|
|
153776
|
+
clientId: Scalars['ID']['input'];
|
|
153777
|
+
};
|
|
153429
153778
|
export declare type OAuthClientsQuery = {
|
|
153430
153779
|
__typename?: 'OAuthClientsQuery';
|
|
153431
153780
|
allAccountGrantsForUser?: Maybe<OAuthClientsAccountGrantConnection>;
|
|
@@ -153438,6 +153787,10 @@ export declare type OAuthClientsQueryAllAccountGrantsForUserArgs = {
|
|
|
153438
153787
|
export declare type OAuthClientsQueryClientArgs = {
|
|
153439
153788
|
id: Scalars['ID']['input'];
|
|
153440
153789
|
};
|
|
153790
|
+
export declare type OAuthClientsRevokeAccountGrantResult = {
|
|
153791
|
+
__typename?: 'OAuthClientsRevokeAccountGrantResult';
|
|
153792
|
+
revokedScopes: Array<Scalars['String']['output']>;
|
|
153793
|
+
};
|
|
153441
153794
|
export declare type OAuthClientsScopeDetails = {
|
|
153442
153795
|
__typename?: 'OAuthClientsScopeDetails';
|
|
153443
153796
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -156247,6 +156600,8 @@ export declare type Query = {
|
|
|
156247
156600
|
assetsVertical_verticalInstantiationCategory?: Maybe<AssetsVerticalVerticalInstantiationCategoryResult>;
|
|
156248
156601
|
assetsVertical_verticalInstantiations: AssetsVerticalVerticalInstantiationConnection;
|
|
156249
156602
|
assetsVertical_verticalTemplate?: Maybe<AssetsVerticalVerticalTemplateResult>;
|
|
156603
|
+
assets_cdmObjectTypesDefinitions?: Maybe<Array<Maybe<AssetsCdmObjectTypeResult>>>;
|
|
156604
|
+
assets_cdmSchemasDefinitions?: Maybe<Array<Maybe<AssetsCdmSchemaResult>>>;
|
|
156250
156605
|
assets_objectById?: Maybe<AssetsObjectNode>;
|
|
156251
156606
|
assets_objectTypeAttributeValuesByID?: Maybe<Array<Maybe<AssetsObjectTypeAttributeValue>>>;
|
|
156252
156607
|
assets_objectTypeAttributesByObjectTypeIds?: Maybe<Array<Maybe<AssetsObjectTypeAttribute>>>;
|
|
@@ -156282,6 +156637,7 @@ export declare type Query = {
|
|
|
156282
156637
|
avpanalytics_getJoinTypeConfigurations?: Maybe<Array<AvpAnalyticsJoinTypeConfiguration>>;
|
|
156283
156638
|
avpanalytics_getModel?: Maybe<AvpAnalyticsModel>;
|
|
156284
156639
|
avpanalytics_getModels?: Maybe<AvpAnalyticsModelConnection>;
|
|
156640
|
+
avpanalytics_getSites?: Maybe<Array<AvpAnalyticsSite>>;
|
|
156285
156641
|
avpanalytics_previewModelData?: Maybe<AvpAnalyticsModel>;
|
|
156286
156642
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
156287
156643
|
bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
|
|
@@ -156395,6 +156751,7 @@ export declare type Query = {
|
|
|
156395
156751
|
confluence_classificationLevelsForSpaceDefault?: Maybe<Array<ContentDataClassificationLevel>>;
|
|
156396
156752
|
confluence_commentMediaSession?: Maybe<ContentMediaSession>;
|
|
156397
156753
|
confluence_contentAISummaries?: Maybe<Array<Maybe<ConfluenceContentAiSummaryResponse>>>;
|
|
156754
|
+
confluence_contentAISummariesByContentId?: Maybe<Array<Maybe<ConfluenceContentAiSummaryByContentId>>>;
|
|
156398
156755
|
confluence_contentAccessRequestByStatus?: Maybe<ConfluenceContentAccessRequestConnection>;
|
|
156399
156756
|
confluence_contentAnalyticsCountUserByContentType?: Maybe<ConfluenceContentAnalyticsCountUserByContentType>;
|
|
156400
156757
|
confluence_contentApprovalStatuses?: Maybe<Array<Maybe<ConfluenceApprovalsWorkflowStatus>>>;
|
|
@@ -156548,6 +156905,7 @@ export declare type Query = {
|
|
|
156548
156905
|
contributorsLinkedToConfluencePageV2?: Maybe<GraphStoreCypherQueryConnection>;
|
|
156549
156906
|
convoAiAgentSession_getById?: Maybe<ConvoAiAgentSession>;
|
|
156550
156907
|
convoAiAgentSession_getByIds?: Maybe<Array<Maybe<ConvoAiAgentSession>>>;
|
|
156908
|
+
convoai_availableSkills?: Maybe<ConvoAiAvailableSkillsResult>;
|
|
156551
156909
|
convoai_confluenceSpaceRecommendations?: Maybe<Array<ConvoAiConfluenceSpaceRecommendation>>;
|
|
156552
156910
|
convoai_homeThreads?: Maybe<ConvoAiHomeThreadsResult>;
|
|
156553
156911
|
convoai_jiraEchoAiFeature?: Maybe<Scalars['String']['output']>;
|
|
@@ -157166,6 +157524,7 @@ export declare type Query = {
|
|
|
157166
157524
|
stakeholderComms_getDraftPageByName?: Maybe<StakeholderCommsPageResponse>;
|
|
157167
157525
|
stakeholderComms_getFileReadMediaToken?: Maybe<StakeholderCommsMediaToken>;
|
|
157168
157526
|
stakeholderComms_getFlattenedStakeholdersList?: Maybe<StakeholderCommsGetStakeholderListResponse>;
|
|
157527
|
+
stakeholderComms_getIdentityGroupsForPage?: Maybe<StakeholderCommsIdentityGroupForPageConnection>;
|
|
157169
157528
|
stakeholderComms_getIncident?: Maybe<StakeholderCommsIncidentResponse>;
|
|
157170
157529
|
stakeholderComms_getIncidentTemplate?: Maybe<StakeholderCommsIncidentTemplateResponse>;
|
|
157171
157530
|
stakeholderComms_getLicenseUsageLimit?: Maybe<StakeholderCommsLicenseUsage>;
|
|
@@ -157177,6 +157536,7 @@ export declare type Query = {
|
|
|
157177
157536
|
stakeholderComms_getPageUptimePercentage?: Maybe<StakeholderCommsPageUptimePercentageResponse>;
|
|
157178
157537
|
stakeholderComms_getPagesSummaryByCloudId?: Maybe<StakeholderCommsPagesSummaryByCloudIdResponse>;
|
|
157179
157538
|
stakeholderComms_getPagesSummaryByCloudIdV2?: Maybe<StakeholderCommsPagesSummaryByCloudIdResponse>;
|
|
157539
|
+
stakeholderComms_getPrivatePageGroupAssignmentsByPageId?: Maybe<StakeholderCommsPrivatePageGroupAssignmentListResponse>;
|
|
157180
157540
|
stakeholderComms_getStakeholder?: Maybe<StakeholderCommsStakeholderResponse>;
|
|
157181
157541
|
stakeholderComms_getStakeholderCommsTransformerRecord?: Maybe<StakeholderCommsTransformerRecordResponse>;
|
|
157182
157542
|
stakeholderComms_getStakeholderGroup?: Maybe<StakeholderCommsStakeholderGroup>;
|
|
@@ -157197,6 +157557,7 @@ export declare type Query = {
|
|
|
157197
157557
|
stakeholderComms_getWorkspaceAriMappingByPageId?: Maybe<StakeholderCommsWorkspaceAriMappingResponse>;
|
|
157198
157558
|
stakeholderComms_getWorkspaceAriMappingByStatuspageDomain?: Maybe<StakeholderCommsWorkspaceAriMappingResponse>;
|
|
157199
157559
|
stakeholderComms_isPageNameUnique?: Maybe<Scalars['Boolean']['output']>;
|
|
157560
|
+
stakeholderComms_isPagePrivate?: Maybe<Scalars['Boolean']['output']>;
|
|
157200
157561
|
stakeholderComms_isStakeholderGroupNameUnique?: Maybe<Scalars['Boolean']['output']>;
|
|
157201
157562
|
stakeholderComms_isUniqueSubdomainAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
157202
157563
|
stakeholderComms_listIncidentTemplates?: Maybe<StakeholderCommsListIncidentTemplateResponse>;
|
|
@@ -157205,6 +157566,7 @@ export declare type Query = {
|
|
|
157205
157566
|
stakeholderComms_listStakeholders?: Maybe<StakeholderCommsStakeholderConnection>;
|
|
157206
157567
|
stakeholderComms_listSubscribers?: Maybe<StakeholderCommsListSubscriberResponse>;
|
|
157207
157568
|
stakeholderComms_listSubscribersConnection?: Maybe<StakeholderCommsSubscriberConnection>;
|
|
157569
|
+
stakeholderComms_searchIdentityGroupsByName?: Maybe<StakeholderCommsIdentityGroupForPageConnection>;
|
|
157208
157570
|
stakeholderComms_subscriptionStats?: Maybe<StakeholderCommsSubscriptionStatsResponse>;
|
|
157209
157571
|
stakeholderComms_testAPIEnterpriseOnly?: Maybe<Scalars['String']['output']>;
|
|
157210
157572
|
stakeholderComms_testAPIFreeOnly?: Maybe<Scalars['String']['output']>;
|
|
@@ -158576,6 +158938,14 @@ export declare type QueryAssetsVertical_VerticalTemplateArgs = {
|
|
|
158576
158938
|
type: AssetsVerticalVerticalType;
|
|
158577
158939
|
version?: InputMaybe<Scalars['String']['input']>;
|
|
158578
158940
|
};
|
|
158941
|
+
export declare type QueryAssets_CdmObjectTypesDefinitionsArgs = {
|
|
158942
|
+
cloudId: Scalars['ID']['input'];
|
|
158943
|
+
ids: Array<Scalars['ID']['input']>;
|
|
158944
|
+
};
|
|
158945
|
+
export declare type QueryAssets_CdmSchemasDefinitionsArgs = {
|
|
158946
|
+
cloudId: Scalars['ID']['input'];
|
|
158947
|
+
ids: Array<Scalars['ID']['input']>;
|
|
158948
|
+
};
|
|
158579
158949
|
export declare type QueryAssets_ObjectByIdArgs = {
|
|
158580
158950
|
id: Scalars['ID']['input'];
|
|
158581
158951
|
};
|
|
@@ -158696,10 +159066,12 @@ export declare type QueryAvp_GetReadOnlyDashboardArgs = {
|
|
|
158696
159066
|
};
|
|
158697
159067
|
export declare type QueryAvpanalytics_GetDataSourceArgs = {
|
|
158698
159068
|
cloudId: Scalars['ID']['input'];
|
|
159069
|
+
dataSourceCloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
158699
159070
|
dataSourceId: Scalars['ID']['input'];
|
|
158700
159071
|
};
|
|
158701
159072
|
export declare type QueryAvpanalytics_GetDataSourcesArgs = {
|
|
158702
159073
|
cloudId: Scalars['ID']['input'];
|
|
159074
|
+
dataSourceCloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
158703
159075
|
searchInput?: InputMaybe<AvpAnalyticsSearchInput>;
|
|
158704
159076
|
};
|
|
158705
159077
|
export declare type QueryAvpanalytics_GetJoinTypeConfigurationsArgs = {
|
|
@@ -158713,6 +159085,9 @@ export declare type QueryAvpanalytics_GetModelsArgs = {
|
|
|
158713
159085
|
cloudId: Scalars['ID']['input'];
|
|
158714
159086
|
input?: InputMaybe<AvpAnalyticsGetModelsInput>;
|
|
158715
159087
|
};
|
|
159088
|
+
export declare type QueryAvpanalytics_GetSitesArgs = {
|
|
159089
|
+
cloudId: Scalars['ID']['input'];
|
|
159090
|
+
};
|
|
158716
159091
|
export declare type QueryAvpanalytics_PreviewModelDataArgs = {
|
|
158717
159092
|
cloudId: Scalars['ID']['input'];
|
|
158718
159093
|
input?: InputMaybe<AvpAnalyticsPreviewModelDataInput>;
|
|
@@ -159133,6 +159508,13 @@ export declare type QueryConfluence_ContentAiSummariesArgs = {
|
|
|
159133
159508
|
entryPoint?: InputMaybe<Scalars['String']['input']>;
|
|
159134
159509
|
objectType: KnowledgeGraphObjectType;
|
|
159135
159510
|
};
|
|
159511
|
+
export declare type QueryConfluence_ContentAiSummariesByContentIdArgs = {
|
|
159512
|
+
cloudId: Scalars['String']['input'];
|
|
159513
|
+
contentIds: Array<Scalars['ID']['input']>;
|
|
159514
|
+
contentTypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
159515
|
+
entryPoint?: InputMaybe<Scalars['String']['input']>;
|
|
159516
|
+
objectType: KnowledgeGraphObjectType;
|
|
159517
|
+
};
|
|
159136
159518
|
export declare type QueryConfluence_ContentAccessRequestByStatusArgs = {
|
|
159137
159519
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
159138
159520
|
cloudId: Scalars['ID']['input'];
|
|
@@ -159904,6 +160286,13 @@ export declare type QueryConvoAiAgentSession_GetByIdArgs = {
|
|
|
159904
160286
|
export declare type QueryConvoAiAgentSession_GetByIdsArgs = {
|
|
159905
160287
|
ids?: InputMaybe<Array<InputMaybe<SkyBridgeIdInput>>>;
|
|
159906
160288
|
};
|
|
160289
|
+
export declare type QueryConvoai_AvailableSkillsArgs = {
|
|
160290
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
160291
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
160292
|
+
cloudId: Scalars['ID']['input'];
|
|
160293
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
160294
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
160295
|
+
};
|
|
159907
160296
|
export declare type QueryConvoai_ConfluenceSpaceRecommendationsArgs = {
|
|
159908
160297
|
cloudId: Scalars['ID']['input'];
|
|
159909
160298
|
pageTitle: Scalars['String']['input'];
|
|
@@ -160008,6 +160397,7 @@ export declare type QueryCpls_CustomContributionTargetsByIdsArgs = {
|
|
|
160008
160397
|
ids: Array<Scalars['ID']['input']>;
|
|
160009
160398
|
};
|
|
160010
160399
|
export declare type QueryCpls_FiltersArgs = {
|
|
160400
|
+
includeSuggestions?: InputMaybe<Scalars['Boolean']['input']>;
|
|
160011
160401
|
scopeId: Scalars['ID']['input'];
|
|
160012
160402
|
};
|
|
160013
160403
|
export declare type QueryCpls_PeopleViewArgs = {
|
|
@@ -162298,6 +162688,11 @@ export declare type QueryStakeholderComms_GetFlattenedStakeholdersListArgs = {
|
|
|
162298
162688
|
groupIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
162299
162689
|
teamIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
162300
162690
|
};
|
|
162691
|
+
export declare type QueryStakeholderComms_GetIdentityGroupsForPageArgs = {
|
|
162692
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
162693
|
+
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
162694
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
162695
|
+
};
|
|
162301
162696
|
export declare type QueryStakeholderComms_GetIncidentArgs = {
|
|
162302
162697
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
162303
162698
|
getIncidentInput?: InputMaybe<StakeholderCommsGetIncidentInput>;
|
|
@@ -162341,6 +162736,10 @@ export declare type QueryStakeholderComms_GetPagesSummaryByCloudIdV2Args = {
|
|
|
162341
162736
|
cloudId: Scalars['String']['input'];
|
|
162342
162737
|
filter?: InputMaybe<StakeholderCommsPageStatusFilter>;
|
|
162343
162738
|
};
|
|
162739
|
+
export declare type QueryStakeholderComms_GetPrivatePageGroupAssignmentsByPageIdArgs = {
|
|
162740
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
162741
|
+
pageId: Scalars['String']['input'];
|
|
162742
|
+
};
|
|
162344
162743
|
export declare type QueryStakeholderComms_GetStakeholderArgs = {
|
|
162345
162744
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
162346
162745
|
stakeholderIdInput: StakeholderCommsStakeholderIdInput;
|
|
@@ -162422,6 +162821,10 @@ export declare type QueryStakeholderComms_IsPageNameUniqueArgs = {
|
|
|
162422
162821
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
162423
162822
|
name: Scalars['String']['input'];
|
|
162424
162823
|
};
|
|
162824
|
+
export declare type QueryStakeholderComms_IsPagePrivateArgs = {
|
|
162825
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
162826
|
+
domain: Scalars['String']['input'];
|
|
162827
|
+
};
|
|
162425
162828
|
export declare type QueryStakeholderComms_IsStakeholderGroupNameUniqueArgs = {
|
|
162426
162829
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
162427
162830
|
name: Scalars['String']['input'];
|
|
@@ -162468,6 +162871,10 @@ export declare type QueryStakeholderComms_ListSubscribersConnectionArgs = {
|
|
|
162468
162871
|
order?: InputMaybe<StakeholderCommsSubscriberConnectionOrder>;
|
|
162469
162872
|
search?: InputMaybe<StakeholderCommsSubscriberConnectionSearch>;
|
|
162470
162873
|
};
|
|
162874
|
+
export declare type QueryStakeholderComms_SearchIdentityGroupsByNameArgs = {
|
|
162875
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
162876
|
+
nameContains: Scalars['String']['input'];
|
|
162877
|
+
};
|
|
162471
162878
|
export declare type QueryStakeholderComms_SubscriptionStatsArgs = {
|
|
162472
162879
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
162473
162880
|
itemId: Scalars['ID']['input'];
|
|
@@ -187391,6 +187798,12 @@ export declare type SpfCreatePlanScenarioInvestmentsPayload = Payload & {
|
|
|
187391
187798
|
planScenarioInvestments: Array<SpfPlanScenarioInvestment>;
|
|
187392
187799
|
success: Scalars['Boolean']['output'];
|
|
187393
187800
|
};
|
|
187801
|
+
export declare type SpfCreateViewInput = {
|
|
187802
|
+
cloudId: Scalars['ID']['input'];
|
|
187803
|
+
entityType: Scalars['String']['input'];
|
|
187804
|
+
name: Scalars['String']['input'];
|
|
187805
|
+
settings: SpfViewSettingsInput;
|
|
187806
|
+
};
|
|
187394
187807
|
export declare type SpfDeleteAskCommentInput = {
|
|
187395
187808
|
id: Scalars['ID']['input'];
|
|
187396
187809
|
};
|
|
@@ -187464,6 +187877,15 @@ export declare type SpfDeletePlanScenarioPayload = Payload & {
|
|
|
187464
187877
|
id: Scalars['ID']['output'];
|
|
187465
187878
|
success: Scalars['Boolean']['output'];
|
|
187466
187879
|
};
|
|
187880
|
+
export declare type SpfDeleteViewInput = {
|
|
187881
|
+
id: Scalars['ID']['input'];
|
|
187882
|
+
};
|
|
187883
|
+
export declare type SpfDeleteViewPayload = Payload & {
|
|
187884
|
+
__typename?: 'SpfDeleteViewPayload';
|
|
187885
|
+
errors?: Maybe<Array<MutationError>>;
|
|
187886
|
+
id: Scalars['ID']['output'];
|
|
187887
|
+
success: Scalars['Boolean']['output'];
|
|
187888
|
+
};
|
|
187467
187889
|
export declare type SpfEntityPermissionEntry = {
|
|
187468
187890
|
__typename?: 'SpfEntityPermissionEntry';
|
|
187469
187891
|
entityId: Scalars['ID']['output'];
|
|
@@ -187879,6 +188301,14 @@ export declare type SpfUpdatePlanVisibilityInput = {
|
|
|
187879
188301
|
id: Scalars['ID']['input'];
|
|
187880
188302
|
visibility: SpfPlanVisibility;
|
|
187881
188303
|
};
|
|
188304
|
+
export declare type SpfUpdateViewNameInput = {
|
|
188305
|
+
id: Scalars['ID']['input'];
|
|
188306
|
+
name: Scalars['String']['input'];
|
|
188307
|
+
};
|
|
188308
|
+
export declare type SpfUpdateViewSettingsInput = {
|
|
188309
|
+
id: Scalars['ID']['input'];
|
|
188310
|
+
settings: SpfViewSettingsInput;
|
|
188311
|
+
};
|
|
187882
188312
|
export declare type SpfUpsertAskCommentPayload = Payload & {
|
|
187883
188313
|
__typename?: 'SpfUpsertAskCommentPayload';
|
|
187884
188314
|
comment?: Maybe<SpfAskComment>;
|
|
@@ -187938,6 +188368,12 @@ export declare type SpfUpsertPlanScenarioPayload = Payload & {
|
|
|
187938
188368
|
planScenario?: Maybe<SpfPlanScenario>;
|
|
187939
188369
|
success: Scalars['Boolean']['output'];
|
|
187940
188370
|
};
|
|
188371
|
+
export declare type SpfUpsertViewPayload = Payload & {
|
|
188372
|
+
__typename?: 'SpfUpsertViewPayload';
|
|
188373
|
+
errors?: Maybe<Array<MutationError>>;
|
|
188374
|
+
success: Scalars['Boolean']['output'];
|
|
188375
|
+
view?: Maybe<SpfView>;
|
|
188376
|
+
};
|
|
187941
188377
|
export declare type SpfView = Node & {
|
|
187942
188378
|
__typename?: 'SpfView';
|
|
187943
188379
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -187968,10 +188404,17 @@ export declare type SpfViewSettingValue = {
|
|
|
187968
188404
|
key: Scalars['String']['output'];
|
|
187969
188405
|
value: Scalars['String']['output'];
|
|
187970
188406
|
};
|
|
188407
|
+
export declare type SpfViewSettingValueInput = {
|
|
188408
|
+
key: Scalars['String']['input'];
|
|
188409
|
+
value: Scalars['String']['input'];
|
|
188410
|
+
};
|
|
187971
188411
|
export declare type SpfViewSettings = {
|
|
187972
188412
|
__typename?: 'SpfViewSettings';
|
|
187973
188413
|
values: Array<SpfViewSettingValue>;
|
|
187974
188414
|
};
|
|
188415
|
+
export declare type SpfViewSettingsInput = {
|
|
188416
|
+
values: Array<SpfViewSettingValueInput>;
|
|
188417
|
+
};
|
|
187975
188418
|
export declare type SplitIssueInput = {
|
|
187976
188419
|
newIssues: Array<InputMaybe<NewSplitIssueRequest>>;
|
|
187977
188420
|
originalIssue: OriginalSplitIssue;
|
|
@@ -188436,6 +188879,20 @@ export declare type StakeholderCommsHeaderDataType = {
|
|
|
188436
188879
|
headerText?: Maybe<Scalars['String']['output']>;
|
|
188437
188880
|
links?: Maybe<Array<Maybe<StakeholderCommsLinkType>>>;
|
|
188438
188881
|
};
|
|
188882
|
+
export declare type StakeholderCommsIdentityGroupForPage = {
|
|
188883
|
+
__typename?: 'StakeholderCommsIdentityGroupForPage';
|
|
188884
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
188885
|
+
id: Scalars['String']['output'];
|
|
188886
|
+
membersCount?: Maybe<Scalars['Int']['output']>;
|
|
188887
|
+
name: Scalars['String']['output'];
|
|
188888
|
+
};
|
|
188889
|
+
export declare type StakeholderCommsIdentityGroupForPageConnection = {
|
|
188890
|
+
__typename?: 'StakeholderCommsIdentityGroupForPageConnection';
|
|
188891
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
188892
|
+
groups: Array<StakeholderCommsIdentityGroupForPage>;
|
|
188893
|
+
pageInfo: StakeholderCommsPageInfo;
|
|
188894
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
188895
|
+
};
|
|
188439
188896
|
export declare type StakeholderCommsIncident = {
|
|
188440
188897
|
__typename?: 'StakeholderCommsIncident';
|
|
188441
188898
|
autoCompleted?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -188995,6 +189452,18 @@ export declare type StakeholderCommsPreferencesInput = {
|
|
|
188995
189452
|
sms?: InputMaybe<StakeholderCommsModePreferenceInput>;
|
|
188996
189453
|
webhook?: InputMaybe<StakeholderCommsModePreferenceInput>;
|
|
188997
189454
|
};
|
|
189455
|
+
export declare type StakeholderCommsPrivatePageGroupAssignment = {
|
|
189456
|
+
__typename?: 'StakeholderCommsPrivatePageGroupAssignment';
|
|
189457
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
189458
|
+
groupId: Scalars['String']['output'];
|
|
189459
|
+
groupName?: Maybe<Scalars['String']['output']>;
|
|
189460
|
+
membersCount?: Maybe<Scalars['Int']['output']>;
|
|
189461
|
+
pageId: Scalars['String']['output'];
|
|
189462
|
+
};
|
|
189463
|
+
export declare type StakeholderCommsPrivatePageGroupAssignmentListResponse = {
|
|
189464
|
+
__typename?: 'StakeholderCommsPrivatePageGroupAssignmentListResponse';
|
|
189465
|
+
assignments?: Maybe<Array<Maybe<StakeholderCommsPrivatePageGroupAssignment>>>;
|
|
189466
|
+
};
|
|
188998
189467
|
export declare type StakeholderCommsPublicCommunicationResponse = {
|
|
188999
189468
|
__typename?: 'StakeholderCommsPublicCommunicationResponse';
|
|
189000
189469
|
error?: Maybe<Scalars['String']['output']>;
|
|
@@ -189438,6 +189907,11 @@ export declare type StakeholderCommsUpdatePageInputType = {
|
|
|
189438
189907
|
url?: InputMaybe<Scalars['String']['input']>;
|
|
189439
189908
|
version?: InputMaybe<Scalars['Int']['input']>;
|
|
189440
189909
|
};
|
|
189910
|
+
export declare type StakeholderCommsUpdatePrivatePageGroupAssignmentsInput = {
|
|
189911
|
+
groupIdsToAdd?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
189912
|
+
groupIdsToRemove?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
189913
|
+
pageId: Scalars['String']['input'];
|
|
189914
|
+
};
|
|
189441
189915
|
export declare type StakeholderCommsUpdateStakeholderGroupInput = {
|
|
189442
189916
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
189443
189917
|
id: Scalars['String']['input'];
|
|
@@ -189703,6 +190177,7 @@ export declare type Subscription = {
|
|
|
189703
190177
|
jiraProductDiscovery?: Maybe<JpdSubscriptions>;
|
|
189704
190178
|
jira_onIssueUpdateSuggestions?: Maybe<JiraIssueUpdatesSuggestion>;
|
|
189705
190179
|
jpdViewsService_echo?: Maybe<Scalars['String']['output']>;
|
|
190180
|
+
jpdViewsService_onJPDViewCommentEvent?: Maybe<JpdViewsServiceViewCommentEvent>;
|
|
189706
190181
|
jsmAgentWorkspace_dummy?: Maybe<Scalars['String']['output']>;
|
|
189707
190182
|
jsmChannels_getResolutionPlanGraphUpdate: JsmChannelsResolutionPlanGraphResult;
|
|
189708
190183
|
jsmChannels_onServiceAgentResolutionStateByTicketIdUpdate: JsmChannelsTicketServiceAgentResolutionStateResult;
|
|
@@ -189792,6 +190267,11 @@ export declare type SubscriptionJpdViewsService_EchoArgs = {
|
|
|
189792
190267
|
cloudId: Scalars['ID']['input'];
|
|
189793
190268
|
message: Scalars['String']['input'];
|
|
189794
190269
|
};
|
|
190270
|
+
export declare type SubscriptionJpdViewsService_OnJpdViewCommentEventArgs = {
|
|
190271
|
+
cloudId: Scalars['ID']['input'];
|
|
190272
|
+
containerId: Scalars['String']['input'];
|
|
190273
|
+
containerType: Scalars['String']['input'];
|
|
190274
|
+
};
|
|
189795
190275
|
export declare type SubscriptionJsmChannels_GetResolutionPlanGraphUpdateArgs = {
|
|
189796
190276
|
jiraProjectAri: Scalars['ID']['input'];
|
|
189797
190277
|
planEditTransactionId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -196116,7 +196596,7 @@ export declare type TrelloBoardCustomFieldsLimits = {
|
|
|
196116
196596
|
export declare type TrelloBoardEdge = {
|
|
196117
196597
|
__typename?: 'TrelloBoardEdge';
|
|
196118
196598
|
cursor: Scalars['String']['output'];
|
|
196119
|
-
node:
|
|
196599
|
+
node: TrelloBaseBoard;
|
|
196120
196600
|
};
|
|
196121
196601
|
export declare type TrelloBoardId = TrelloBaseBoardId & {
|
|
196122
196602
|
__typename?: 'TrelloBoardId';
|
|
@@ -196883,7 +197363,7 @@ export declare enum TrelloCheckItemState {
|
|
|
196883
197363
|
}
|
|
196884
197364
|
export declare type TrelloChecklist = Node & {
|
|
196885
197365
|
__typename?: 'TrelloChecklist';
|
|
196886
|
-
board?: Maybe<
|
|
197366
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
196887
197367
|
card?: Maybe<TrelloBaseCard>;
|
|
196888
197368
|
checkItems?: Maybe<TrelloCheckItemConnection>;
|
|
196889
197369
|
id: Scalars['ID']['output'];
|
|
@@ -197249,7 +197729,7 @@ export declare type TrelloCreateListInput = {
|
|
|
197249
197729
|
creationMethod?: InputMaybe<TrelloListCreationMethod>;
|
|
197250
197730
|
dataSource?: InputMaybe<TrelloListDataSourceInput>;
|
|
197251
197731
|
name: Scalars['String']['input'];
|
|
197252
|
-
|
|
197732
|
+
position?: InputMaybe<TrelloListPosition>;
|
|
197253
197733
|
type?: InputMaybe<TrelloListType>;
|
|
197254
197734
|
};
|
|
197255
197735
|
export declare type TrelloCreateListPayload = Payload & {
|
|
@@ -197418,10 +197898,15 @@ export declare type TrelloCustomFieldItemValueInfo = {
|
|
|
197418
197898
|
export declare type TrelloCustomFieldOption = {
|
|
197419
197899
|
__typename?: 'TrelloCustomFieldOption';
|
|
197420
197900
|
color?: Maybe<Scalars['String']['output']>;
|
|
197901
|
+
id: Scalars['ID']['output'];
|
|
197421
197902
|
objectId: Scalars['ID']['output'];
|
|
197422
197903
|
position?: Maybe<Scalars['Float']['output']>;
|
|
197423
197904
|
value?: Maybe<TrelloCustomFieldOptionValue>;
|
|
197424
197905
|
};
|
|
197906
|
+
export declare type TrelloCustomFieldOptionDeleted = {
|
|
197907
|
+
__typename?: 'TrelloCustomFieldOptionDeleted';
|
|
197908
|
+
id: Scalars['ID']['output'];
|
|
197909
|
+
};
|
|
197425
197910
|
export declare type TrelloCustomFieldOptionValue = {
|
|
197426
197911
|
__typename?: 'TrelloCustomFieldOptionValue';
|
|
197427
197912
|
text?: Maybe<Scalars['String']['output']>;
|
|
@@ -197489,6 +197974,16 @@ export declare type TrelloDeleteBoardPayload = Payload & {
|
|
|
197489
197974
|
export declare type TrelloDeleteCustomFieldInput = {
|
|
197490
197975
|
customFieldId: Scalars['ID']['input'];
|
|
197491
197976
|
};
|
|
197977
|
+
export declare type TrelloDeleteCustomFieldOptionInput = {
|
|
197978
|
+
customFieldId: Scalars['ID']['input'];
|
|
197979
|
+
customFieldOptionId: Scalars['ID']['input'];
|
|
197980
|
+
};
|
|
197981
|
+
export declare type TrelloDeleteCustomFieldOptionPayload = Payload & {
|
|
197982
|
+
__typename?: 'TrelloDeleteCustomFieldOptionPayload';
|
|
197983
|
+
customFieldOption?: Maybe<TrelloCustomFieldOptionDeleted>;
|
|
197984
|
+
errors?: Maybe<Array<MutationError>>;
|
|
197985
|
+
success: Scalars['Boolean']['output'];
|
|
197986
|
+
};
|
|
197492
197987
|
export declare type TrelloDeleteCustomFieldPayload = Payload & {
|
|
197493
197988
|
__typename?: 'TrelloDeleteCustomFieldPayload';
|
|
197494
197989
|
customField?: Maybe<TrelloCustomFieldDeleted>;
|
|
@@ -198189,7 +198684,7 @@ export declare enum TrelloMemberBoardFilterValue {
|
|
|
198189
198684
|
export declare type TrelloMemberBoardStarConnection = {
|
|
198190
198685
|
__typename?: 'TrelloMemberBoardStarConnection';
|
|
198191
198686
|
edges?: Maybe<Array<TrelloMemberBoardStarEdge>>;
|
|
198192
|
-
nodes?: Maybe<Array<Maybe<
|
|
198687
|
+
nodes?: Maybe<Array<Maybe<TrelloBaseBoard>>>;
|
|
198193
198688
|
pageInfo: PageInfo;
|
|
198194
198689
|
};
|
|
198195
198690
|
export declare type TrelloMemberBoardStarEdge = {
|
|
@@ -198197,7 +198692,7 @@ export declare type TrelloMemberBoardStarEdge = {
|
|
|
198197
198692
|
boardObjectId: Scalars['String']['output'];
|
|
198198
198693
|
cursor: Scalars['String']['output'];
|
|
198199
198694
|
id: Scalars['ID']['output'];
|
|
198200
|
-
node?: Maybe<
|
|
198695
|
+
node?: Maybe<TrelloBaseBoard>;
|
|
198201
198696
|
objectId: Scalars['String']['output'];
|
|
198202
198697
|
position: Scalars['Float']['output'];
|
|
198203
198698
|
};
|
|
@@ -198465,6 +198960,7 @@ export declare type TrelloMutationApi = {
|
|
|
198465
198960
|
deleteBoard?: Maybe<TrelloDeleteBoardPayload>;
|
|
198466
198961
|
deleteBoardBackground?: Maybe<TrelloDeleteBoardBackgroundPayload>;
|
|
198467
198962
|
deleteCustomField?: Maybe<TrelloDeleteCustomFieldPayload>;
|
|
198963
|
+
deleteCustomFieldOption?: Maybe<TrelloDeleteCustomFieldOptionPayload>;
|
|
198468
198964
|
deletePlannerCalendarEvent?: Maybe<TrelloDeletePlannerCalendarEventPayload>;
|
|
198469
198965
|
deleteWorkspaceTag?: Maybe<TrelloDeleteWorkspaceTagPayload>;
|
|
198470
198966
|
disableBoardSelfJoin?: Maybe<TrelloDisableBoardSelfJoinPayload>;
|
|
@@ -198490,6 +198986,7 @@ export declare type TrelloMutationApi = {
|
|
|
198490
198986
|
removeLabelsFromCard?: Maybe<TrelloRemoveLabelsFromCardPayload>;
|
|
198491
198987
|
removeMemberFromCard?: Maybe<TrelloRemoveMemberFromCardPayload>;
|
|
198492
198988
|
removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
|
|
198989
|
+
removePlannerBoardOverride?: Maybe<TrelloRemovePlannerBoardOverridePayload>;
|
|
198493
198990
|
removeWorkspaceTagFromBoard?: Maybe<TrelloRemoveWorkspaceTagFromBoardPayload>;
|
|
198494
198991
|
reopenBoard?: Maybe<TrelloReopenBoardPayload>;
|
|
198495
198992
|
reopenCard?: Maybe<TrelloReopenCardPayload>;
|
|
@@ -198532,6 +199029,7 @@ export declare type TrelloMutationApi = {
|
|
|
198532
199029
|
updateCardPositionOnPlannerCalendarEvent?: Maybe<TrelloUpdateCardPositionOnPlannerCalendarEventPayload>;
|
|
198533
199030
|
updateCardRole?: Maybe<TrelloUpdateCardRolePayload>;
|
|
198534
199031
|
updateCustomField?: Maybe<TrelloUpdateCustomFieldPayload>;
|
|
199032
|
+
updateCustomFieldOption?: Maybe<TrelloUpdateCustomFieldOptionPayload>;
|
|
198535
199033
|
updateInboxBackground?: Maybe<TrelloUpdateInboxBackgroundPayload>;
|
|
198536
199034
|
updateKeyboardShortcutsPref?: Maybe<TrelloUpdateKeyboardShortcutsPrefPayload>;
|
|
198537
199035
|
updateMemberTimezone?: Maybe<TrelloUpdateMemberTimezonePayload>;
|
|
@@ -198638,6 +199136,9 @@ export declare type TrelloMutationApiDeleteBoardBackgroundArgs = {
|
|
|
198638
199136
|
export declare type TrelloMutationApiDeleteCustomFieldArgs = {
|
|
198639
199137
|
input: TrelloDeleteCustomFieldInput;
|
|
198640
199138
|
};
|
|
199139
|
+
export declare type TrelloMutationApiDeleteCustomFieldOptionArgs = {
|
|
199140
|
+
input: TrelloDeleteCustomFieldOptionInput;
|
|
199141
|
+
};
|
|
198641
199142
|
export declare type TrelloMutationApiDeletePlannerCalendarEventArgs = {
|
|
198642
199143
|
input: TrelloDeletePlannerCalendarEventInput;
|
|
198643
199144
|
};
|
|
@@ -198710,6 +199211,9 @@ export declare type TrelloMutationApiRemoveMemberFromCardArgs = {
|
|
|
198710
199211
|
export declare type TrelloMutationApiRemoveMemberFromWorkspaceArgs = {
|
|
198711
199212
|
input: TrelloRemoveMemberFromWorkspaceInput;
|
|
198712
199213
|
};
|
|
199214
|
+
export declare type TrelloMutationApiRemovePlannerBoardOverrideArgs = {
|
|
199215
|
+
input: TrelloRemovePlannerBoardOverrideInput;
|
|
199216
|
+
};
|
|
198713
199217
|
export declare type TrelloMutationApiRemoveWorkspaceTagFromBoardArgs = {
|
|
198714
199218
|
input: TrelloRemoveWorkspaceTagFromBoardInput;
|
|
198715
199219
|
};
|
|
@@ -198833,6 +199337,9 @@ export declare type TrelloMutationApiUpdateCardRoleArgs = {
|
|
|
198833
199337
|
export declare type TrelloMutationApiUpdateCustomFieldArgs = {
|
|
198834
199338
|
input: TrelloUpdateCustomFieldInput;
|
|
198835
199339
|
};
|
|
199340
|
+
export declare type TrelloMutationApiUpdateCustomFieldOptionArgs = {
|
|
199341
|
+
input: TrelloUpdateCustomFieldOptionInput;
|
|
199342
|
+
};
|
|
198836
199343
|
export declare type TrelloMutationApiUpdateInboxBackgroundArgs = {
|
|
198837
199344
|
input: TrelloUpdateInboxBackgroundInput;
|
|
198838
199345
|
};
|
|
@@ -198984,11 +199491,31 @@ export declare type TrelloPlannerBoardOverrideConnection = {
|
|
|
198984
199491
|
edges: Array<TrelloPlannerBoardOverrideEdge>;
|
|
198985
199492
|
pageInfo: PageInfo;
|
|
198986
199493
|
};
|
|
199494
|
+
export declare type TrelloPlannerBoardOverrideConnectionUpdated = {
|
|
199495
|
+
__typename?: 'TrelloPlannerBoardOverrideConnectionUpdated';
|
|
199496
|
+
edges?: Maybe<Array<TrelloPlannerBoardOverrideEdgeUpdated>>;
|
|
199497
|
+
};
|
|
199498
|
+
export declare type TrelloPlannerBoardOverrideDeleted = {
|
|
199499
|
+
__typename?: 'TrelloPlannerBoardOverrideDeleted';
|
|
199500
|
+
id: Scalars['ID']['output'];
|
|
199501
|
+
};
|
|
198987
199502
|
export declare type TrelloPlannerBoardOverrideEdge = {
|
|
198988
199503
|
__typename?: 'TrelloPlannerBoardOverrideEdge';
|
|
198989
199504
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
198990
199505
|
node?: Maybe<TrelloPlannerBoardOverride>;
|
|
198991
199506
|
};
|
|
199507
|
+
export declare type TrelloPlannerBoardOverrideEdgeUpdated = {
|
|
199508
|
+
__typename?: 'TrelloPlannerBoardOverrideEdgeUpdated';
|
|
199509
|
+
node?: Maybe<TrelloPlannerBoardOverrideUpdated>;
|
|
199510
|
+
};
|
|
199511
|
+
export declare type TrelloPlannerBoardOverrideUpdated = {
|
|
199512
|
+
__typename?: 'TrelloPlannerBoardOverrideUpdated';
|
|
199513
|
+
boardId?: Maybe<Scalars['ID']['output']>;
|
|
199514
|
+
boardObjectId?: Maybe<Scalars['ID']['output']>;
|
|
199515
|
+
hasAccess?: Maybe<Scalars['Boolean']['output']>;
|
|
199516
|
+
id: Scalars['ID']['output'];
|
|
199517
|
+
mode?: Maybe<TrelloPlannerBoardFilterMode>;
|
|
199518
|
+
};
|
|
198992
199519
|
export declare type TrelloPlannerCalendar = Node & TrelloProviderCalendarInterface & {
|
|
198993
199520
|
__typename?: 'TrelloPlannerCalendar';
|
|
198994
199521
|
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
@@ -199399,6 +199926,13 @@ export declare type TrelloPlannerDueDateCardsSettingsBoardOverridesArgs = {
|
|
|
199399
199926
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
199400
199927
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
199401
199928
|
};
|
|
199929
|
+
export declare type TrelloPlannerDueDateCardsSettingsUpdated = {
|
|
199930
|
+
__typename?: 'TrelloPlannerDueDateCardsSettingsUpdated';
|
|
199931
|
+
assignedToMe?: Maybe<Scalars['Boolean']['output']>;
|
|
199932
|
+
boardOverrides?: Maybe<TrelloPlannerBoardOverrideConnectionUpdated>;
|
|
199933
|
+
onBoardOverrideDeleted?: Maybe<Array<TrelloPlannerBoardOverrideDeleted>>;
|
|
199934
|
+
soloBoards?: Maybe<Scalars['Boolean']['output']>;
|
|
199935
|
+
};
|
|
199402
199936
|
export declare type TrelloPlannerEventCardConnection = {
|
|
199403
199937
|
__typename?: 'TrelloPlannerEventCardConnection';
|
|
199404
199938
|
calendarStatus?: Maybe<TrelloPlannerCalendarStatus>;
|
|
@@ -199549,7 +200083,7 @@ export declare type TrelloPlannerUpdated = {
|
|
|
199549
200083
|
__typename?: 'TrelloPlannerUpdated';
|
|
199550
200084
|
accounts?: Maybe<TrelloPlannerCalendarAccountConnectionUpdated>;
|
|
199551
200085
|
cardsWithDueDates?: Maybe<TrelloPlannerCardsWithDueDatesConnectionUpdated>;
|
|
199552
|
-
dueDateCardsSettings?: Maybe<
|
|
200086
|
+
dueDateCardsSettings?: Maybe<TrelloPlannerDueDateCardsSettingsUpdated>;
|
|
199553
200087
|
forceUpdateCardsDueTimestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
199554
200088
|
id: Scalars['ID']['output'];
|
|
199555
200089
|
onBoardWithCardDueDeleted?: Maybe<Array<TrelloPlannerCardWithDueDateBoardDeleted>>;
|
|
@@ -200052,6 +200586,15 @@ export declare type TrelloRemoveMemberInput = {
|
|
|
200052
200586
|
cardId: Scalars['ID']['input'];
|
|
200053
200587
|
userId: Scalars['ID']['input'];
|
|
200054
200588
|
};
|
|
200589
|
+
export declare type TrelloRemovePlannerBoardOverrideInput = {
|
|
200590
|
+
boardId: Scalars['ID']['input'];
|
|
200591
|
+
};
|
|
200592
|
+
export declare type TrelloRemovePlannerBoardOverridePayload = Payload & {
|
|
200593
|
+
__typename?: 'TrelloRemovePlannerBoardOverridePayload';
|
|
200594
|
+
boardOverride?: Maybe<TrelloPlannerBoardOverrideDeleted>;
|
|
200595
|
+
errors?: Maybe<Array<MutationError>>;
|
|
200596
|
+
success: Scalars['Boolean']['output'];
|
|
200597
|
+
};
|
|
200055
200598
|
export declare type TrelloRemoveWorkspaceTagFromBoardInput = {
|
|
200056
200599
|
boardId: Scalars['ID']['input'];
|
|
200057
200600
|
tagId: Scalars['ID']['input'];
|
|
@@ -200335,7 +200878,7 @@ export declare type TrelloTemplateGalleryCategory = {
|
|
|
200335
200878
|
export declare type TrelloTemplateGalleryConnection = {
|
|
200336
200879
|
__typename?: 'TrelloTemplateGalleryConnection';
|
|
200337
200880
|
edges: Array<TrelloBoardEdge>;
|
|
200338
|
-
nodes: Array<
|
|
200881
|
+
nodes: Array<TrelloBaseBoard>;
|
|
200339
200882
|
pageInfo: PageInfo;
|
|
200340
200883
|
};
|
|
200341
200884
|
export declare type TrelloTemplateGalleryFilterInput = {
|
|
@@ -200753,6 +201296,19 @@ export declare type TrelloUpdateCustomFieldItemActionDisplayEntities = {
|
|
|
200753
201296
|
customFieldItem?: Maybe<TrelloActionCustomFieldItemEntity>;
|
|
200754
201297
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
200755
201298
|
};
|
|
201299
|
+
export declare type TrelloUpdateCustomFieldOptionInput = {
|
|
201300
|
+
color?: InputMaybe<Scalars['String']['input']>;
|
|
201301
|
+
customFieldId: Scalars['ID']['input'];
|
|
201302
|
+
customFieldOptionId: Scalars['ID']['input'];
|
|
201303
|
+
position?: InputMaybe<Scalars['Float']['input']>;
|
|
201304
|
+
value?: InputMaybe<TrelloCustomFieldOptionValueInput>;
|
|
201305
|
+
};
|
|
201306
|
+
export declare type TrelloUpdateCustomFieldOptionPayload = Payload & {
|
|
201307
|
+
__typename?: 'TrelloUpdateCustomFieldOptionPayload';
|
|
201308
|
+
customFieldOption?: Maybe<TrelloCustomFieldOption>;
|
|
201309
|
+
errors?: Maybe<Array<MutationError>>;
|
|
201310
|
+
success: Scalars['Boolean']['output'];
|
|
201311
|
+
};
|
|
200756
201312
|
export declare type TrelloUpdateCustomFieldPayload = Payload & {
|
|
200757
201313
|
__typename?: 'TrelloUpdateCustomFieldPayload';
|
|
200758
201314
|
customField?: Maybe<TrelloCustomField>;
|
|
@@ -202337,6 +202893,7 @@ export declare type UnifiedPostSummarizerResult = {
|
|
|
202337
202893
|
sentiment?: Maybe<Scalars['String']['output']>;
|
|
202338
202894
|
sessionId?: Maybe<Scalars['String']['output']>;
|
|
202339
202895
|
solutionConfidence?: Maybe<Scalars['String']['output']>;
|
|
202896
|
+
suggestedAnswer?: Maybe<Scalars['String']['output']>;
|
|
202340
202897
|
summary?: Maybe<Scalars['String']['output']>;
|
|
202341
202898
|
};
|
|
202342
202899
|
export declare type UnifiedProfile = UnifiedINode & {
|