@forge/cli-shared 8.20.0-next.1 → 8.20.0-next.3
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 +13 -0
- package/out/graphql/graphql-types.d.ts +2027 -92
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +194 -48
- package/out/ui/text.d.ts +4 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +4 -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
|
+
principalAri: Scalars['ID']['input'];
|
|
1337
|
+
};
|
|
1338
|
+
export declare type AvpDashboardUserAccessResult = {
|
|
1339
|
+
__typename?: 'AVPDashboardUserAccessResult';
|
|
1340
|
+
accessLevel: AvpDashboardIdentityAccessLevel;
|
|
1341
|
+
principalAri: Scalars['ID']['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']>;
|
|
@@ -15841,6 +15932,7 @@ export declare type ChannelPlatformCheckOtpVerifiedResponse = {
|
|
|
15841
15932
|
export declare type ChannelPlatformClientConfigDetailsResponse = {
|
|
15842
15933
|
__typename?: 'ChannelPlatformClientConfigDetailsResponse';
|
|
15843
15934
|
showCustomerLocalTimeToAgent?: Maybe<Scalars['Boolean']['output']>;
|
|
15935
|
+
supportedChannels?: Maybe<Array<ChannelPlatformChannelType>>;
|
|
15844
15936
|
ticketPlatformType?: Maybe<Scalars['String']['output']>;
|
|
15845
15937
|
};
|
|
15846
15938
|
export declare type ChannelPlatformConnectDetails = {
|
|
@@ -18650,6 +18742,8 @@ export declare enum CommerceExpEntitlementType {
|
|
|
18650
18742
|
Enterprise = "ENTERPRISE",
|
|
18651
18743
|
EnterpriseInstance = "ENTERPRISE_INSTANCE",
|
|
18652
18744
|
FamilyContainer = "FAMILY_CONTAINER",
|
|
18745
|
+
MultiInstance = "MULTI_INSTANCE",
|
|
18746
|
+
MultiInstanceChild = "MULTI_INSTANCE_CHILD",
|
|
18653
18747
|
Product = "PRODUCT"
|
|
18654
18748
|
}
|
|
18655
18749
|
export declare type CommerceExpEntitlementUpdateInput = {
|
|
@@ -26609,6 +26703,14 @@ export declare type ConfluenceConflictedPerson = Person & {
|
|
|
26609
26703
|
userKey?: Maybe<Scalars['String']['output']>;
|
|
26610
26704
|
username?: Maybe<Scalars['String']['output']>;
|
|
26611
26705
|
};
|
|
26706
|
+
export declare type ConfluenceContentAiSummaryByContentId = {
|
|
26707
|
+
__typename?: 'ConfluenceContentAISummaryByContentId';
|
|
26708
|
+
contentId: Scalars['ID']['output'];
|
|
26709
|
+
contentType?: Maybe<KnowledgeGraphContentType>;
|
|
26710
|
+
createdAt: Scalars['String']['output'];
|
|
26711
|
+
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
26712
|
+
objectData?: Maybe<Scalars['String']['output']>;
|
|
26713
|
+
};
|
|
26612
26714
|
export declare type ConfluenceContentAiSummaryResponse = {
|
|
26613
26715
|
__typename?: 'ConfluenceContentAISummaryResponse';
|
|
26614
26716
|
contentAri: Scalars['ID']['output'];
|
|
@@ -30868,6 +30970,16 @@ export declare type ConfluenceSetContentGeneralAccessModePayload = Payload & {
|
|
|
30868
30970
|
errors?: Maybe<Array<MutationError>>;
|
|
30869
30971
|
success: Scalars['Boolean']['output'];
|
|
30870
30972
|
};
|
|
30973
|
+
export declare type ConfluenceSetCutoverRoleConfigInput = {
|
|
30974
|
+
fallbackRoleId?: InputMaybe<Scalars['ID']['input']>;
|
|
30975
|
+
strategy: ConfluenceCutoverFallbackStrategy;
|
|
30976
|
+
};
|
|
30977
|
+
export declare type ConfluenceSetCutoverRoleConfigPayload = Payload & {
|
|
30978
|
+
__typename?: 'ConfluenceSetCutoverRoleConfigPayload';
|
|
30979
|
+
cutoverRoleConfig?: Maybe<ConfluenceCutoverRoleConfig>;
|
|
30980
|
+
errors?: Maybe<Array<MutationError>>;
|
|
30981
|
+
success: Scalars['Boolean']['output'];
|
|
30982
|
+
};
|
|
30871
30983
|
export declare type ConfluenceSetSubCalendarReminderInput = {
|
|
30872
30984
|
isReminder: Scalars['Boolean']['input'];
|
|
30873
30985
|
subCalendarId: Scalars['ID']['input'];
|
|
@@ -31102,6 +31214,34 @@ export declare type ConfluenceSpace = Node & {
|
|
|
31102
31214
|
type?: Maybe<ConfluenceSpaceType>;
|
|
31103
31215
|
typeSettings?: Maybe<ConfluenceSpaceTypeSettings>;
|
|
31104
31216
|
};
|
|
31217
|
+
export declare type ConfluenceSpaceAnalyticsPermissionConnection = {
|
|
31218
|
+
__typename?: 'ConfluenceSpaceAnalyticsPermissionConnection';
|
|
31219
|
+
edges?: Maybe<Array<Maybe<ConfluenceSpaceAnalyticsPermissionEdge>>>;
|
|
31220
|
+
isOpen: Scalars['Boolean']['output'];
|
|
31221
|
+
pageInfo: ConfluencePageInfo;
|
|
31222
|
+
};
|
|
31223
|
+
export declare type ConfluenceSpaceAnalyticsPermissionEdge = {
|
|
31224
|
+
__typename?: 'ConfluenceSpaceAnalyticsPermissionEdge';
|
|
31225
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
31226
|
+
node: ConfluenceSpaceAnalyticsPermissionPrincipal;
|
|
31227
|
+
};
|
|
31228
|
+
export declare type ConfluenceSpaceAnalyticsPermissionGroupPrincipal = ConfluenceSpaceAnalyticsPermissionPrincipal & {
|
|
31229
|
+
__typename?: 'ConfluenceSpaceAnalyticsPermissionGroupPrincipal';
|
|
31230
|
+
displayName: Scalars['String']['output'];
|
|
31231
|
+
principalId: Scalars['ID']['output'];
|
|
31232
|
+
usageType?: Maybe<ConfluenceGroupUsageType>;
|
|
31233
|
+
};
|
|
31234
|
+
export declare type ConfluenceSpaceAnalyticsPermissionPrincipal = {
|
|
31235
|
+
displayName: Scalars['String']['output'];
|
|
31236
|
+
principalId: Scalars['ID']['output'];
|
|
31237
|
+
};
|
|
31238
|
+
export declare type ConfluenceSpaceAnalyticsPermissionUserPrincipal = ConfluenceSpaceAnalyticsPermissionPrincipal & {
|
|
31239
|
+
__typename?: 'ConfluenceSpaceAnalyticsPermissionUserPrincipal';
|
|
31240
|
+
displayName: Scalars['String']['output'];
|
|
31241
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
31242
|
+
principalId: Scalars['ID']['output'];
|
|
31243
|
+
profilePicture?: Maybe<Icon>;
|
|
31244
|
+
};
|
|
31105
31245
|
export declare type ConfluenceSpaceConnection = {
|
|
31106
31246
|
__typename?: 'ConfluenceSpaceConnection';
|
|
31107
31247
|
edges?: Maybe<Array<Maybe<ConfluenceSpaceEdge>>>;
|
|
@@ -32044,6 +32184,17 @@ export declare type ConfluenceUpdateLoomEntryPointsConfigurationPayload = Payloa
|
|
|
32044
32184
|
errors?: Maybe<Array<MutationError>>;
|
|
32045
32185
|
success: Scalars['Boolean']['output'];
|
|
32046
32186
|
};
|
|
32187
|
+
export declare type ConfluenceUpdateMarkdownModeInput = {
|
|
32188
|
+
contentId: Scalars['ID']['input'];
|
|
32189
|
+
isMarkdownMode: Scalars['Boolean']['input'];
|
|
32190
|
+
};
|
|
32191
|
+
export declare type ConfluenceUpdateMarkdownModePayload = Payload & {
|
|
32192
|
+
__typename?: 'ConfluenceUpdateMarkdownModePayload';
|
|
32193
|
+
contentId: Scalars['String']['output'];
|
|
32194
|
+
errors?: Maybe<Array<MutationError>>;
|
|
32195
|
+
isMarkdownMode?: Maybe<Scalars['Boolean']['output']>;
|
|
32196
|
+
success: Scalars['Boolean']['output'];
|
|
32197
|
+
};
|
|
32047
32198
|
export declare type ConfluenceUpdateNcsPdfExportConfigurationPayload = Payload & {
|
|
32048
32199
|
__typename?: 'ConfluenceUpdateNCSPdfExportConfigurationPayload';
|
|
32049
32200
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -32253,6 +32404,18 @@ export declare type ConfluenceUpdateSmartSpaceOverviewTopLinksInput = {
|
|
|
32253
32404
|
edit?: InputMaybe<ConfluenceEditTopLinkInput>;
|
|
32254
32405
|
remove?: InputMaybe<ConfluenceRemoveTopLinkInput>;
|
|
32255
32406
|
};
|
|
32407
|
+
export declare type ConfluenceUpdateSpaceAnalyticsPermissionsInput = {
|
|
32408
|
+
groupIds: Array<InputMaybe<Scalars['String']['input']>>;
|
|
32409
|
+
isOpen: Scalars['Boolean']['input'];
|
|
32410
|
+
spaceId: Scalars['ID']['input'];
|
|
32411
|
+
userAccountIds: Array<InputMaybe<Scalars['String']['input']>>;
|
|
32412
|
+
};
|
|
32413
|
+
export declare type ConfluenceUpdateSpaceAnalyticsPermissionsPayload = Payload & {
|
|
32414
|
+
__typename?: 'ConfluenceUpdateSpaceAnalyticsPermissionsPayload';
|
|
32415
|
+
errors?: Maybe<Array<MutationError>>;
|
|
32416
|
+
spaceAnalyticsPermissions?: Maybe<ConfluenceSpaceAnalyticsPermissionConnection>;
|
|
32417
|
+
success: Scalars['Boolean']['output'];
|
|
32418
|
+
};
|
|
32256
32419
|
export declare type ConfluenceUpdateSpaceInput = {
|
|
32257
32420
|
id: Scalars['ID']['input'];
|
|
32258
32421
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -33550,6 +33713,15 @@ export declare type ConvoAiAgentSessionUpdatedByProjects = {
|
|
|
33550
33713
|
projectId: Scalars['String']['output'];
|
|
33551
33714
|
state: ConvoAiAgentSessionState;
|
|
33552
33715
|
};
|
|
33716
|
+
export declare type ConvoAiAvailableSkillsResult = {
|
|
33717
|
+
__typename?: 'ConvoAiAvailableSkillsResult';
|
|
33718
|
+
edges?: Maybe<Array<ConvoAiSkillEdge>>;
|
|
33719
|
+
errors?: Maybe<Array<QueryError>>;
|
|
33720
|
+
metadata: ConvoAiSkillListMetadata;
|
|
33721
|
+
nodes?: Maybe<Array<ConvoAiSkill>>;
|
|
33722
|
+
pageInfo: PageInfo;
|
|
33723
|
+
totalCount: Scalars['Int']['output'];
|
|
33724
|
+
};
|
|
33553
33725
|
export declare type ConvoAiConfluenceSpaceRecommendation = {
|
|
33554
33726
|
__typename?: 'ConvoAiConfluenceSpaceRecommendation';
|
|
33555
33727
|
id: Scalars['ID']['output'];
|
|
@@ -33721,7 +33893,9 @@ export declare type ConvoAiJiraSimilarWorkItemSuggestionSourcesArgs = {
|
|
|
33721
33893
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
33722
33894
|
};
|
|
33723
33895
|
export declare enum ConvoAiJiraSimilarWorkItemSuggestionSource {
|
|
33896
|
+
English = "ENGLISH",
|
|
33724
33897
|
Ers = "ERS",
|
|
33898
|
+
NonEnglish = "NON_ENGLISH",
|
|
33725
33899
|
RecentlyCreated = "RECENTLY_CREATED",
|
|
33726
33900
|
XpSearch = "XP_SEARCH"
|
|
33727
33901
|
}
|
|
@@ -33780,6 +33954,37 @@ export declare enum ConvoAiRelatedLinksMode {
|
|
|
33780
33954
|
ThirdParty = "THIRD_PARTY",
|
|
33781
33955
|
Unified = "UNIFIED"
|
|
33782
33956
|
}
|
|
33957
|
+
export declare type ConvoAiSkill = {
|
|
33958
|
+
__typename?: 'ConvoAiSkill';
|
|
33959
|
+
category?: Maybe<Scalars['String']['output']>;
|
|
33960
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
33961
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
33962
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
33963
|
+
iconKey?: Maybe<Scalars['String']['output']>;
|
|
33964
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
33965
|
+
id: Scalars['ID']['output'];
|
|
33966
|
+
integrationKeys: Array<Scalars['String']['output']>;
|
|
33967
|
+
name: Scalars['String']['output'];
|
|
33968
|
+
slashCommand?: Maybe<Scalars['String']['output']>;
|
|
33969
|
+
source: ConvoAiSkillSource;
|
|
33970
|
+
tags: Array<Scalars['String']['output']>;
|
|
33971
|
+
version?: Maybe<Scalars['String']['output']>;
|
|
33972
|
+
};
|
|
33973
|
+
export declare type ConvoAiSkillEdge = {
|
|
33974
|
+
__typename?: 'ConvoAiSkillEdge';
|
|
33975
|
+
cursor: Scalars['String']['output'];
|
|
33976
|
+
node?: Maybe<ConvoAiSkill>;
|
|
33977
|
+
};
|
|
33978
|
+
export declare type ConvoAiSkillListMetadata = {
|
|
33979
|
+
__typename?: 'ConvoAiSkillListMetadata';
|
|
33980
|
+
anthropicCount: Scalars['Int']['output'];
|
|
33981
|
+
isDegraded: Scalars['Boolean']['output'];
|
|
33982
|
+
stratusCount: Scalars['Int']['output'];
|
|
33983
|
+
};
|
|
33984
|
+
export declare enum ConvoAiSkillSource {
|
|
33985
|
+
Anthropic = "ANTHROPIC",
|
|
33986
|
+
Stratus = "STRATUS"
|
|
33987
|
+
}
|
|
33783
33988
|
export declare type ConvoAiThirdPartyRelatedLink = {
|
|
33784
33989
|
__typename?: 'ConvoAiThirdPartyRelatedLink';
|
|
33785
33990
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -103060,66 +103265,10 @@ export declare type GrowthUnifiedProfileCompany = {
|
|
|
103060
103265
|
size?: Maybe<GrowthUnifiedProfileCompanySize>;
|
|
103061
103266
|
type?: Maybe<GrowthUnifiedProfileCompanyType>;
|
|
103062
103267
|
};
|
|
103063
|
-
export declare type GrowthUnifiedProfileCompanyProductUsageRecord = {
|
|
103064
|
-
__typename?: 'GrowthUnifiedProfileCompanyProductUsageRecord';
|
|
103065
|
-
domain: Scalars['String']['output'];
|
|
103066
|
-
productUsageAggregateMetrics?: Maybe<Array<Maybe<GrowthUnifiedProfileProductUsageMetric>>>;
|
|
103067
|
-
snapshotDay: Scalars['String']['output'];
|
|
103068
|
-
};
|
|
103069
103268
|
export declare type GrowthUnifiedProfileCompanyProfile = {
|
|
103070
103269
|
__typename?: 'GrowthUnifiedProfileCompanyProfile';
|
|
103071
103270
|
companyType?: Maybe<GrowthUnifiedProfileEntryType>;
|
|
103072
103271
|
};
|
|
103073
|
-
export declare type GrowthUnifiedProfileCompanyProfileResult = {
|
|
103074
|
-
__typename?: 'GrowthUnifiedProfileCompanyProfileResult';
|
|
103075
|
-
companyInfo?: Maybe<GrowthUnifiedProfileCompanyRecord>;
|
|
103076
|
-
companyProductUsage?: Maybe<GrowthUnifiedProfileCompanyProductUsageRecord>;
|
|
103077
|
-
};
|
|
103078
|
-
export declare type GrowthUnifiedProfileCompanyRecord = {
|
|
103079
|
-
__typename?: 'GrowthUnifiedProfileCompanyRecord';
|
|
103080
|
-
address?: Maybe<Scalars['String']['output']>;
|
|
103081
|
-
addressCity?: Maybe<Scalars['String']['output']>;
|
|
103082
|
-
addressCountry?: Maybe<Scalars['String']['output']>;
|
|
103083
|
-
addressState?: Maybe<Scalars['String']['output']>;
|
|
103084
|
-
annualRevenue?: Maybe<Scalars['Float']['output']>;
|
|
103085
|
-
businessName?: Maybe<Scalars['String']['output']>;
|
|
103086
|
-
companyEnterpriseSized?: Maybe<Scalars['Boolean']['output']>;
|
|
103087
|
-
companyId: Scalars['String']['output'];
|
|
103088
|
-
companySize?: Maybe<Scalars['String']['output']>;
|
|
103089
|
-
companyType?: Maybe<Scalars['String']['output']>;
|
|
103090
|
-
countryCode?: Maybe<Scalars['String']['output']>;
|
|
103091
|
-
createdDate?: Maybe<Scalars['String']['output']>;
|
|
103092
|
-
customerAccountId?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
103093
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
103094
|
-
developersCount?: Maybe<Scalars['Int']['output']>;
|
|
103095
|
-
domain: Scalars['String']['output'];
|
|
103096
|
-
employeesRange?: Maybe<Scalars['String']['output']>;
|
|
103097
|
-
enrichmentSource?: Maybe<Scalars['String']['output']>;
|
|
103098
|
-
enterpriseAccountStatus?: Maybe<Scalars['String']['output']>;
|
|
103099
|
-
estimatedAnnualRevenue?: Maybe<Scalars['String']['output']>;
|
|
103100
|
-
industry?: Maybe<Scalars['String']['output']>;
|
|
103101
|
-
industryGroup?: Maybe<Scalars['String']['output']>;
|
|
103102
|
-
itAgentsCount?: Maybe<Scalars['Int']['output']>;
|
|
103103
|
-
knowledgeWorkersCount?: Maybe<Scalars['Int']['output']>;
|
|
103104
|
-
marketCap?: Maybe<Scalars['String']['output']>;
|
|
103105
|
-
naicsCode?: Maybe<Scalars['String']['output']>;
|
|
103106
|
-
numberOfEmployees?: Maybe<Scalars['Int']['output']>;
|
|
103107
|
-
phone?: Maybe<Scalars['String']['output']>;
|
|
103108
|
-
postalCode?: Maybe<Scalars['String']['output']>;
|
|
103109
|
-
recordNumber?: Maybe<Scalars['Int']['output']>;
|
|
103110
|
-
recordStatus?: Maybe<Scalars['String']['output']>;
|
|
103111
|
-
refreshDate?: Maybe<Scalars['String']['output']>;
|
|
103112
|
-
region?: Maybe<Scalars['String']['output']>;
|
|
103113
|
-
revenueCurrency?: Maybe<Scalars['String']['output']>;
|
|
103114
|
-
sector?: Maybe<Scalars['String']['output']>;
|
|
103115
|
-
sectorRaw?: Maybe<Scalars['String']['output']>;
|
|
103116
|
-
sicCode?: Maybe<Scalars['String']['output']>;
|
|
103117
|
-
sourceSequenceIso?: Maybe<Scalars['String']['output']>;
|
|
103118
|
-
stockTicker?: Maybe<Scalars['String']['output']>;
|
|
103119
|
-
subIndustry?: Maybe<Scalars['String']['output']>;
|
|
103120
|
-
techsUsed?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
103121
|
-
website?: Maybe<Scalars['String']['output']>;
|
|
103122
|
-
};
|
|
103123
103272
|
export declare enum GrowthUnifiedProfileCompanySize {
|
|
103124
103273
|
Large = "LARGE",
|
|
103125
103274
|
Medium = "MEDIUM",
|
|
@@ -103409,10 +103558,6 @@ export declare type GrowthUnifiedProfileMarketingUtmInput = {
|
|
|
103409
103558
|
sfdcCampaignId?: InputMaybe<Scalars['String']['input']>;
|
|
103410
103559
|
source?: InputMaybe<Scalars['String']['input']>;
|
|
103411
103560
|
};
|
|
103412
|
-
export declare enum GrowthUnifiedProfileMetric {
|
|
103413
|
-
Mau = "MAU",
|
|
103414
|
-
MauVariation = "MAU_VARIATION"
|
|
103415
|
-
}
|
|
103416
103561
|
export declare type GrowthUnifiedProfileNbpUserRecommendationProduct = {
|
|
103417
103562
|
__typename?: 'GrowthUnifiedProfileNBPUserRecommendationProduct';
|
|
103418
103563
|
key: Scalars['String']['output'];
|
|
@@ -103552,17 +103697,6 @@ export declare type GrowthUnifiedProfileProductNbe = {
|
|
|
103552
103697
|
edition?: Maybe<GrowthUnifiedProfileProductEdition>;
|
|
103553
103698
|
recommendationDate?: Maybe<Scalars['String']['output']>;
|
|
103554
103699
|
};
|
|
103555
|
-
export declare type GrowthUnifiedProfileProductRecord = {
|
|
103556
|
-
__typename?: 'GrowthUnifiedProfileProductRecord';
|
|
103557
|
-
metric: GrowthUnifiedProfileMetric;
|
|
103558
|
-
platform?: Maybe<Scalars['String']['output']>;
|
|
103559
|
-
value: Scalars['Float']['output'];
|
|
103560
|
-
};
|
|
103561
|
-
export declare type GrowthUnifiedProfileProductUsageMetric = {
|
|
103562
|
-
__typename?: 'GrowthUnifiedProfileProductUsageMetric';
|
|
103563
|
-
metrics?: Maybe<Array<Maybe<GrowthUnifiedProfileProductRecord>>>;
|
|
103564
|
-
product: Scalars['String']['output'];
|
|
103565
|
-
};
|
|
103566
103700
|
export declare type GrowthUnifiedProfileResult = {
|
|
103567
103701
|
__typename?: 'GrowthUnifiedProfileResult';
|
|
103568
103702
|
company?: Maybe<GrowthUnifiedProfileCompany>;
|
|
@@ -105935,7 +106069,7 @@ export declare type HelpObjectStoreQueryApiSearchHelpObjectsArgs = {
|
|
|
105935
106069
|
searchInput: HelpObjectStoreSearchInput;
|
|
105936
106070
|
};
|
|
105937
106071
|
export declare type HelpObjectStoreQueryApiSuggestedRequestTypesArgs = {
|
|
105938
|
-
|
|
106072
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
105939
106073
|
};
|
|
105940
106074
|
export declare type HelpObjectStoreQueryError = {
|
|
105941
106075
|
__typename?: 'HelpObjectStoreQueryError';
|
|
@@ -110102,6 +110236,7 @@ export declare type JiraCfoAnalyticsResultDataArgs = {
|
|
|
110102
110236
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
110103
110237
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
110104
110238
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
110239
|
+
sortInput?: InputMaybe<JiraCfoSortInput>;
|
|
110105
110240
|
};
|
|
110106
110241
|
export declare type JiraCfoBoardFilterInput = {
|
|
110107
110242
|
creatorAccountId?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -110127,6 +110262,7 @@ export declare type JiraCfoBoardPerformanceAnalyticsResultDataArgs = {
|
|
|
110127
110262
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
110128
110263
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
110129
110264
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
110265
|
+
sortInput?: InputMaybe<JiraCfoSortInput>;
|
|
110130
110266
|
};
|
|
110131
110267
|
export declare type JiraCfoBoardPerformanceDataRow = JiraCfoDataRow & {
|
|
110132
110268
|
__typename?: 'JiraCFOBoardPerformanceDataRow';
|
|
@@ -110158,6 +110294,16 @@ export declare enum JiraCfoBoardPerformanceStatus {
|
|
|
110158
110294
|
Moderate = "MODERATE",
|
|
110159
110295
|
Slow = "SLOW"
|
|
110160
110296
|
}
|
|
110297
|
+
export declare type JiraCfoClientSetupConfig = {
|
|
110298
|
+
__typename?: 'JiraCFOClientSetupConfig';
|
|
110299
|
+
distribution?: Maybe<Array<Maybe<JiraCfoDistribution>>>;
|
|
110300
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
110301
|
+
};
|
|
110302
|
+
export declare type JiraCfoConfigsResult = {
|
|
110303
|
+
__typename?: 'JiraCFOConfigsResult';
|
|
110304
|
+
clientSetupConfig?: Maybe<Array<Maybe<JiraCfoClientSetupConfig>>>;
|
|
110305
|
+
loadTimeConfig?: Maybe<JiraCfoLoadTimeConfig>;
|
|
110306
|
+
};
|
|
110161
110307
|
export declare type JiraCfoCreateRecommendationsPayload = Payload & {
|
|
110162
110308
|
__typename?: 'JiraCFOCreateRecommendationsPayload';
|
|
110163
110309
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -110182,6 +110328,7 @@ export declare type JiraCfoDataRowEdge = {
|
|
|
110182
110328
|
export declare type JiraCfoDefaultAnalyticsResult = JiraCfoAnalyticsResult & {
|
|
110183
110329
|
__typename?: 'JiraCFODefaultAnalyticsResult';
|
|
110184
110330
|
data?: Maybe<JiraCfoDataRowConnection>;
|
|
110331
|
+
insight?: Maybe<Array<Maybe<JiraCfoMetricInsight>>>;
|
|
110185
110332
|
summary?: Maybe<JiraCfoMetricSummary>;
|
|
110186
110333
|
};
|
|
110187
110334
|
export declare type JiraCfoDefaultAnalyticsResultDataArgs = {
|
|
@@ -110189,6 +110336,7 @@ export declare type JiraCfoDefaultAnalyticsResultDataArgs = {
|
|
|
110189
110336
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
110190
110337
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
110191
110338
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
110339
|
+
sortInput?: InputMaybe<JiraCfoSortInput>;
|
|
110192
110340
|
};
|
|
110193
110341
|
export declare type JiraCfoDefaultDataRow = JiraCfoDataRow & {
|
|
110194
110342
|
__typename?: 'JiraCFODefaultDataRow';
|
|
@@ -110214,14 +110362,30 @@ export declare type JiraCfoDimensionInput = {
|
|
|
110214
110362
|
alias?: InputMaybe<Scalars['String']['input']>;
|
|
110215
110363
|
name: Scalars['String']['input'];
|
|
110216
110364
|
};
|
|
110365
|
+
export declare type JiraCfoDistribution = {
|
|
110366
|
+
__typename?: 'JiraCFODistribution';
|
|
110367
|
+
category?: Maybe<JiraCfoDistributionCategory>;
|
|
110368
|
+
value?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
110369
|
+
};
|
|
110370
|
+
export declare enum JiraCfoDistributionCategory {
|
|
110371
|
+
Fair = "FAIR",
|
|
110372
|
+
Fast = "FAST",
|
|
110373
|
+
Slow = "SLOW"
|
|
110374
|
+
}
|
|
110217
110375
|
export declare type JiraCfoFilterInput = {
|
|
110218
110376
|
boardFilter?: InputMaybe<JiraCfoBoardFilterInput>;
|
|
110219
110377
|
dimensionFilter?: InputMaybe<JiraCfoDimensionFilterInput>;
|
|
110220
110378
|
};
|
|
110221
110379
|
export declare enum JiraCfoFilterOperator {
|
|
110380
|
+
Contains = "CONTAINS",
|
|
110222
110381
|
Equals = "EQUALS",
|
|
110223
110382
|
In = "IN"
|
|
110224
110383
|
}
|
|
110384
|
+
export declare type JiraCfoLoadTimeConfig = {
|
|
110385
|
+
__typename?: 'JiraCFOLoadTimeConfig';
|
|
110386
|
+
higherThreshold?: Maybe<Scalars['Float']['output']>;
|
|
110387
|
+
lowerThreshold?: Maybe<Scalars['Float']['output']>;
|
|
110388
|
+
};
|
|
110225
110389
|
export declare type JiraCfoMetric = {
|
|
110226
110390
|
__typename?: 'JiraCFOMetric';
|
|
110227
110391
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -110240,6 +110404,21 @@ export declare type JiraCfoMetricInput = {
|
|
|
110240
110404
|
name: Scalars['String']['input'];
|
|
110241
110405
|
summarize?: InputMaybe<Scalars['Boolean']['input']>;
|
|
110242
110406
|
};
|
|
110407
|
+
export declare type JiraCfoMetricInsight = {
|
|
110408
|
+
__typename?: 'JiraCFOMetricInsight';
|
|
110409
|
+
metadata?: Maybe<JiraCfoMetricInsightMetaData>;
|
|
110410
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
110411
|
+
status?: Maybe<JiraCfoMetricInsightStatus>;
|
|
110412
|
+
};
|
|
110413
|
+
export declare type JiraCfoMetricInsightMetaData = {
|
|
110414
|
+
__typename?: 'JiraCFOMetricInsightMetaData';
|
|
110415
|
+
loadTimeDiff?: Maybe<Scalars['Int']['output']>;
|
|
110416
|
+
};
|
|
110417
|
+
export declare enum JiraCfoMetricInsightStatus {
|
|
110418
|
+
FastSetup = "FAST_SETUP",
|
|
110419
|
+
InconclusiveData = "INCONCLUSIVE_DATA",
|
|
110420
|
+
PerformanceImpact = "PERFORMANCE_IMPACT"
|
|
110421
|
+
}
|
|
110243
110422
|
export declare type JiraCfoMetricSummary = {
|
|
110244
110423
|
periodComparison?: Maybe<Array<Maybe<JiraCfoMetricComparison>>>;
|
|
110245
110424
|
};
|
|
@@ -110300,8 +110479,17 @@ export declare enum JiraCfoRecommendationStatus {
|
|
|
110300
110479
|
Info = "INFO",
|
|
110301
110480
|
Warning = "WARNING"
|
|
110302
110481
|
}
|
|
110482
|
+
export declare type JiraCfoSortInput = {
|
|
110483
|
+
key?: InputMaybe<Scalars['String']['input']>;
|
|
110484
|
+
order?: InputMaybe<JiraCfoSortOrder>;
|
|
110485
|
+
};
|
|
110486
|
+
export declare enum JiraCfoSortOrder {
|
|
110487
|
+
Asc = "ASC",
|
|
110488
|
+
Desc = "DESC"
|
|
110489
|
+
}
|
|
110303
110490
|
export declare enum JiraCfoTimeGranularity {
|
|
110304
110491
|
Day = "DAY",
|
|
110492
|
+
Minutes_15 = "MINUTES_15",
|
|
110305
110493
|
Month = "MONTH",
|
|
110306
110494
|
Week = "WEEK"
|
|
110307
110495
|
}
|
|
@@ -111508,6 +111696,7 @@ export declare type JiraConfluenceLinkDetails = JiraConsolidatedResourceDetails
|
|
|
111508
111696
|
};
|
|
111509
111697
|
export declare type JiraConfluenceLinkResource = JiraConsolidatedResource & {
|
|
111510
111698
|
__typename?: 'JiraConfluenceLinkResource';
|
|
111699
|
+
author?: Maybe<User>;
|
|
111511
111700
|
contentType?: Maybe<Scalars['String']['output']>;
|
|
111512
111701
|
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
111513
111702
|
details?: Maybe<JiraConfluenceLinkDetails>;
|
|
@@ -119337,6 +119526,12 @@ export declare enum JiraJqlViewContext {
|
|
|
119337
119526
|
Jwm = "JWM",
|
|
119338
119527
|
ShadowRequest = "SHADOW_REQUEST"
|
|
119339
119528
|
}
|
|
119529
|
+
export declare type JiraJsmIssueViewAiPanelForServiceDeskEnabledMutationPayload = Payload & {
|
|
119530
|
+
__typename?: 'JiraJsmIssueViewAIPanelForServiceDeskEnabledMutationPayload';
|
|
119531
|
+
errors?: Maybe<Array<MutationError>>;
|
|
119532
|
+
isJsmIssueViewAIPanelForServiceDeskEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
119533
|
+
success: Scalars['Boolean']['output'];
|
|
119534
|
+
};
|
|
119340
119535
|
export declare type JiraJswBoardViewSettings = {
|
|
119341
119536
|
__typename?: 'JiraJswBoardViewSettings';
|
|
119342
119537
|
cardOptions?: Maybe<JiraJswBoardViewSettingsCardOptionConnection>;
|
|
@@ -119466,6 +119661,37 @@ export declare type JiraLabelsFieldPayload = Payload & {
|
|
|
119466
119661
|
field?: Maybe<JiraLabelsField>;
|
|
119467
119662
|
success: Scalars['Boolean']['output'];
|
|
119468
119663
|
};
|
|
119664
|
+
export declare type JiraLabelsForCreateField = {
|
|
119665
|
+
__typename?: 'JiraLabelsForCreateField';
|
|
119666
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
119667
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
119668
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
119669
|
+
fieldId: Scalars['String']['output'];
|
|
119670
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
119671
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
119672
|
+
id: Scalars['ID']['output'];
|
|
119673
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
119674
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
119675
|
+
isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
|
|
119676
|
+
issue?: Maybe<JiraIssue>;
|
|
119677
|
+
labelExists?: Maybe<Scalars['Boolean']['output']>;
|
|
119678
|
+
labels?: Maybe<JiraLabelConnection>;
|
|
119679
|
+
name: Scalars['String']['output'];
|
|
119680
|
+
type: Scalars['String']['output'];
|
|
119681
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
119682
|
+
};
|
|
119683
|
+
export declare type JiraLabelsForCreateFieldLabelExistsArgs = {
|
|
119684
|
+
name: Scalars['String']['input'];
|
|
119685
|
+
};
|
|
119686
|
+
export declare type JiraLabelsForCreateFieldLabelsArgs = {
|
|
119687
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
119688
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
119689
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
119690
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
119691
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
119692
|
+
sessionId?: InputMaybe<Scalars['ID']['input']>;
|
|
119693
|
+
suggested?: InputMaybe<Scalars['Boolean']['input']>;
|
|
119694
|
+
};
|
|
119469
119695
|
export declare type JiraLabelsInput = {
|
|
119470
119696
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
119471
119697
|
};
|
|
@@ -124107,6 +124333,7 @@ export declare type JiraQuery = {
|
|
|
124107
124333
|
bulkOperationsMetadata?: Maybe<JiraIssueBulkOperationsMetadata>;
|
|
124108
124334
|
canPerform?: Maybe<Scalars['Boolean']['output']>;
|
|
124109
124335
|
cfoAnalytics?: Maybe<JiraCfoAnalyticsResult>;
|
|
124336
|
+
cfoConfigs?: Maybe<JiraCfoConfigsResult>;
|
|
124110
124337
|
cfoRecommendationGroups?: Maybe<JiraCfoRecommendationGroupDetailConnection>;
|
|
124111
124338
|
cfoRecommendations?: Maybe<JiraCfoRecommendationConnection>;
|
|
124112
124339
|
childIssuesLimit?: Maybe<Scalars['Long']['output']>;
|
|
@@ -124469,9 +124696,15 @@ export declare type JiraQueryCfoAnalyticsArgs = {
|
|
|
124469
124696
|
endDate: Scalars['DateTime']['input'];
|
|
124470
124697
|
filters?: InputMaybe<Array<JiraCfoFilterInput>>;
|
|
124471
124698
|
granularity?: InputMaybe<JiraCfoTimeGranularity>;
|
|
124699
|
+
insightOn?: InputMaybe<Array<InputMaybe<JiraCfoDimensionInput>>>;
|
|
124472
124700
|
metrics: Array<JiraCfoMetricInput>;
|
|
124701
|
+
sortInput?: InputMaybe<Array<InputMaybe<JiraCfoSortInput>>>;
|
|
124473
124702
|
startDate: Scalars['DateTime']['input'];
|
|
124474
124703
|
};
|
|
124704
|
+
export declare type JiraQueryCfoConfigsArgs = {
|
|
124705
|
+
cloudId: Scalars['ID']['input'];
|
|
124706
|
+
dimensions?: InputMaybe<Array<InputMaybe<JiraCfoDimensionInput>>>;
|
|
124707
|
+
};
|
|
124475
124708
|
export declare type JiraQueryCfoRecommendationGroupsArgs = {
|
|
124476
124709
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
124477
124710
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -131416,6 +131649,7 @@ export declare type JiraUserPreferences = {
|
|
|
131416
131649
|
isIssueViewPinnedFieldsBannerDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
131417
131650
|
isIssueViewProactiveCommentSummariesFeatureEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
131418
131651
|
isIssueViewSmartRepliesUserEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
131652
|
+
isJsmIssueViewAIPanelForServiceDeskEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
131419
131653
|
isMiniModalGlobalIssueCreateDiscoverabilityPushComplete?: Maybe<Scalars['Boolean']['output']>;
|
|
131420
131654
|
isNaturalLanguageSpotlightTourEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
131421
131655
|
issueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
|
|
@@ -131486,6 +131720,7 @@ export declare type JiraUserPreferencesMutation = {
|
|
|
131486
131720
|
saveRequestTypeTableViewSettings?: Maybe<Scalars['String']['output']>;
|
|
131487
131721
|
setFilterSearchMode?: Maybe<JiraFilterSearchModeMutationPayload>;
|
|
131488
131722
|
setIsIssueViewHideDoneChildIssuesFilterEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
131723
|
+
setIsJsmIssueViewAIPanelForServiceDeskEnabled?: Maybe<JiraJsmIssueViewAiPanelForServiceDeskEnabledMutationPayload>;
|
|
131489
131724
|
setIssueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayoutMutationPayload>;
|
|
131490
131725
|
setIssueViewTimestampDisplayMode?: Maybe<JiraIssueViewTimestampDisplayMode>;
|
|
131491
131726
|
setJQLBuilderSearchMode?: Maybe<JiraJqlBuilderSearchModeMutationPayload>;
|
|
@@ -131508,6 +131743,9 @@ export declare type JiraUserPreferencesMutationSetFilterSearchModeArgs = {
|
|
|
131508
131743
|
export declare type JiraUserPreferencesMutationSetIsIssueViewHideDoneChildIssuesFilterEnabledArgs = {
|
|
131509
131744
|
isHideDoneEnabled: Scalars['Boolean']['input'];
|
|
131510
131745
|
};
|
|
131746
|
+
export declare type JiraUserPreferencesMutationSetIsJsmIssueViewAiPanelForServiceDeskEnabledArgs = {
|
|
131747
|
+
isEnabled: Scalars['Boolean']['input'];
|
|
131748
|
+
};
|
|
131511
131749
|
export declare type JiraUserPreferencesMutationSetIssueNavigatorSearchLayoutArgs = {
|
|
131512
131750
|
searchLayout?: InputMaybe<JiraIssueNavigatorSearchLayout>;
|
|
131513
131751
|
};
|
|
@@ -133509,6 +133747,16 @@ export declare type JpdViewsServiceViewBase = {
|
|
|
133509
133747
|
rank?: Maybe<Scalars['Int']['output']>;
|
|
133510
133748
|
visualizationType: JpdViewsServiceVisualizationType;
|
|
133511
133749
|
};
|
|
133750
|
+
export declare type JpdViewsServiceViewCommentEvent = {
|
|
133751
|
+
__typename?: 'JpdViewsServiceViewCommentEvent';
|
|
133752
|
+
action: Scalars['String']['output'];
|
|
133753
|
+
authorAaid?: Maybe<Scalars['String']['output']>;
|
|
133754
|
+
cloudId: Scalars['String']['output'];
|
|
133755
|
+
commentId: Scalars['String']['output'];
|
|
133756
|
+
containerId: Scalars['String']['output'];
|
|
133757
|
+
containerType: Scalars['String']['output'];
|
|
133758
|
+
viewId: Scalars['String']['output'];
|
|
133759
|
+
};
|
|
133512
133760
|
export declare enum JpdViewsServiceViewLayoutType {
|
|
133513
133761
|
Compact = "COMPACT",
|
|
133514
133762
|
Detailed = "DETAILED",
|
|
@@ -135234,6 +135482,13 @@ export declare type KitsuneRankInput = {
|
|
|
135234
135482
|
after?: InputMaybe<Scalars['ID']['input']>;
|
|
135235
135483
|
before?: InputMaybe<Scalars['ID']['input']>;
|
|
135236
135484
|
};
|
|
135485
|
+
export declare type KitsuneSearchChunk = {
|
|
135486
|
+
__typename?: 'KitsuneSearchChunk';
|
|
135487
|
+
chunks: Array<KitsuneChunk>;
|
|
135488
|
+
content?: Maybe<Scalars['String']['output']>;
|
|
135489
|
+
feedbackId: Scalars['ID']['output'];
|
|
135490
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
135491
|
+
};
|
|
135237
135492
|
export declare type KitsuneSearchFeedbackConnection = KitsuneConnection & {
|
|
135238
135493
|
__typename?: 'KitsuneSearchFeedbackConnection';
|
|
135239
135494
|
edges: Array<KitsuneSearchFeedbackEdge>;
|
|
@@ -136489,11 +136744,11 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
136489
136744
|
searchRelatedEntities?: Maybe<KnowledgeDiscoverySearchRelatedEntitiesResult>;
|
|
136490
136745
|
searchTeam?: Maybe<KnowledgeDiscoveryTeamSearchResult>;
|
|
136491
136746
|
searchUser?: Maybe<KnowledgeDiscoveryUserSearchResult>;
|
|
136747
|
+
searchUsersV2?: Maybe<KnowledgeDiscoverySearchUsersResult>;
|
|
136492
136748
|
singleUser?: Maybe<KnowledgeDiscoverySingleUserResult>;
|
|
136493
136749
|
smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
|
|
136494
136750
|
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
136495
136751
|
topicsByAris?: Maybe<Array<Maybe<KnowledgeDiscoveryTopicByAri>>>;
|
|
136496
|
-
userSearchV2?: Maybe<KnowledgeDiscoverySearchUsersResult>;
|
|
136497
136752
|
zeroQueries?: Maybe<KnowledgeDiscoveryZeroQueriesResult>;
|
|
136498
136753
|
zeroQueriesV1?: Maybe<KnowledgeDiscoveryZeroQueriesResult>;
|
|
136499
136754
|
};
|
|
@@ -136591,6 +136846,7 @@ export declare type KnowledgeDiscoveryQueryApiRelatedEntitiesArgs = {
|
|
|
136591
136846
|
export declare type KnowledgeDiscoveryQueryApiReportingLinesArgs = {
|
|
136592
136847
|
aaid: Scalars['String']['input'];
|
|
136593
136848
|
orgId: Scalars['String']['input'];
|
|
136849
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
136594
136850
|
siteId: Scalars['String']['input'];
|
|
136595
136851
|
};
|
|
136596
136852
|
export declare type KnowledgeDiscoveryQueryApiSearchRelatedEntitiesArgs = {
|
|
@@ -136608,6 +136864,11 @@ export declare type KnowledgeDiscoveryQueryApiSearchUserArgs = {
|
|
|
136608
136864
|
siteId: Scalars['String']['input'];
|
|
136609
136865
|
userQuery: Scalars['String']['input'];
|
|
136610
136866
|
};
|
|
136867
|
+
export declare type KnowledgeDiscoveryQueryApiSearchUsersV2Args = {
|
|
136868
|
+
accountIds: Array<Scalars['String']['input']>;
|
|
136869
|
+
requestingUserId: Scalars['String']['input'];
|
|
136870
|
+
tenantId: Scalars['String']['input'];
|
|
136871
|
+
};
|
|
136611
136872
|
export declare type KnowledgeDiscoveryQueryApiSingleUserArgs = {
|
|
136612
136873
|
accountId: Scalars['String']['input'];
|
|
136613
136874
|
requestingUserId: Scalars['String']['input'];
|
|
@@ -136628,11 +136889,6 @@ export declare type KnowledgeDiscoveryQueryApiTopicArgs = {
|
|
|
136628
136889
|
export declare type KnowledgeDiscoveryQueryApiTopicsByArisArgs = {
|
|
136629
136890
|
ids: Array<Scalars['ID']['input']>;
|
|
136630
136891
|
};
|
|
136631
|
-
export declare type KnowledgeDiscoveryQueryApiUserSearchV2Args = {
|
|
136632
|
-
accountIds: Array<Scalars['String']['input']>;
|
|
136633
|
-
requestingUserId: Scalars['String']['input'];
|
|
136634
|
-
tenantId: Scalars['String']['input'];
|
|
136635
|
-
};
|
|
136636
136892
|
export declare type KnowledgeDiscoveryQueryApiZeroQueriesArgs = {
|
|
136637
136893
|
cloudId: Scalars['String']['input'];
|
|
136638
136894
|
product?: InputMaybe<KnowledgeDiscoveryProduct>;
|
|
@@ -136785,7 +137041,11 @@ export declare type KnowledgeDiscoverySearchUsers = {
|
|
|
136785
137041
|
users?: Maybe<Array<Maybe<KnowledgeDiscoverySearchUserCard>>>;
|
|
136786
137042
|
};
|
|
136787
137043
|
export declare type KnowledgeDiscoverySearchUsersResult = KnowledgeDiscoverySearchUsers | QueryError;
|
|
136788
|
-
export declare type
|
|
137044
|
+
export declare type KnowledgeDiscoverySingleUser = {
|
|
137045
|
+
__typename?: 'KnowledgeDiscoverySingleUser';
|
|
137046
|
+
user?: Maybe<KnowledgeDiscoveryUserProfile>;
|
|
137047
|
+
};
|
|
137048
|
+
export declare type KnowledgeDiscoverySingleUserResult = KnowledgeDiscoverySingleUser | QueryError;
|
|
136789
137049
|
export declare type KnowledgeDiscoverySmartAnswersRoute = {
|
|
136790
137050
|
__typename?: 'KnowledgeDiscoverySmartAnswersRoute';
|
|
136791
137051
|
route: KnowledgeDiscoverySearchQueryClassification;
|
|
@@ -136900,10 +137160,6 @@ export declare type KnowledgeDiscoveryUserManager = {
|
|
|
136900
137160
|
jobTitle?: Maybe<Scalars['String']['output']>;
|
|
136901
137161
|
picture?: Maybe<Scalars['String']['output']>;
|
|
136902
137162
|
};
|
|
136903
|
-
export declare type KnowledgeDiscoveryUserPayload = {
|
|
136904
|
-
__typename?: 'KnowledgeDiscoveryUserPayload';
|
|
136905
|
-
user?: Maybe<KnowledgeDiscoveryUserProfile>;
|
|
136906
|
-
};
|
|
136907
137163
|
export declare type KnowledgeDiscoveryUserProfile = {
|
|
136908
137164
|
__typename?: 'KnowledgeDiscoveryUserProfile';
|
|
136909
137165
|
accountStatus?: Maybe<Scalars['String']['output']>;
|
|
@@ -141315,6 +141571,7 @@ export declare type MarketplaceStoreQueryApi = {
|
|
|
141315
141571
|
personalisedContextAndLayout: MarketplaceStorePersonalisedContextAndLayoutResponse;
|
|
141316
141572
|
privacyAndSecurity: MarketplaceStorePrivacyAndSecurityResponse;
|
|
141317
141573
|
recommendationsSection?: Maybe<MarketplaceStoreRecommendationsSection>;
|
|
141574
|
+
reviewSummary?: Maybe<MarketplaceStoreReviewSummaryResponse>;
|
|
141318
141575
|
siteDetails: MarketplaceStoreSiteDetailsResponse;
|
|
141319
141576
|
userPreferences: MarketplaceStoreGetUserPreferencesResponse;
|
|
141320
141577
|
userProfile: MarketplaceStoreUserProfileResponse;
|
|
@@ -141432,6 +141689,10 @@ export declare type MarketplaceStoreQueryApiPrivacyAndSecurityArgs = {
|
|
|
141432
141689
|
export declare type MarketplaceStoreQueryApiRecommendationsSectionArgs = {
|
|
141433
141690
|
usecase: MarketplaceStoreRecommendationsUsecase;
|
|
141434
141691
|
};
|
|
141692
|
+
export declare type MarketplaceStoreQueryApiReviewSummaryArgs = {
|
|
141693
|
+
appKey: Scalars['String']['input'];
|
|
141694
|
+
hostingType: MarketplaceStoreAtlassianProductHostingType;
|
|
141695
|
+
};
|
|
141435
141696
|
export declare type MarketplaceStoreQueryApiSiteDetailsArgs = {
|
|
141436
141697
|
input: MarketplaceStoreSiteDetailsInput;
|
|
141437
141698
|
};
|
|
@@ -141442,11 +141703,16 @@ export declare type MarketplaceStoreQueryApiWatchedAppsArgs = {
|
|
|
141442
141703
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
141443
141704
|
nextCursor?: InputMaybe<Scalars['String']['input']>;
|
|
141444
141705
|
};
|
|
141706
|
+
export declare type MarketplaceStoreRecommendationsMetadata = {
|
|
141707
|
+
__typename?: 'MarketplaceStoreRecommendationsMetadata';
|
|
141708
|
+
recommendedForYouMetadata?: Maybe<Array<Maybe<MarketplaceStoreRecommendedForYouMetadataItem>>>;
|
|
141709
|
+
};
|
|
141445
141710
|
export declare type MarketplaceStoreRecommendationsSection = {
|
|
141446
141711
|
__typename?: 'MarketplaceStoreRecommendationsSection';
|
|
141447
141712
|
description: Scalars['String']['output'];
|
|
141448
141713
|
id: Scalars['ID']['output'];
|
|
141449
141714
|
recommendationResultsCount: Scalars['Int']['output'];
|
|
141715
|
+
recommendationsMetadata?: Maybe<MarketplaceStoreRecommendationsMetadata>;
|
|
141450
141716
|
screenSpecificProperties: MarketplaceStoreHomePageSectionScreenSpecificProperties;
|
|
141451
141717
|
searchMetadata: MarketplaceStoreSearchMetadata;
|
|
141452
141718
|
title: Scalars['String']['output'];
|
|
@@ -141455,6 +141721,11 @@ export declare enum MarketplaceStoreRecommendationsUsecase {
|
|
|
141455
141721
|
RecommendedAppsForYou = "RECOMMENDED_APPS_FOR_YOU",
|
|
141456
141722
|
SimilarApps = "SIMILAR_APPS"
|
|
141457
141723
|
}
|
|
141724
|
+
export declare type MarketplaceStoreRecommendedForYouMetadataItem = {
|
|
141725
|
+
__typename?: 'MarketplaceStoreRecommendedForYouMetadataItem';
|
|
141726
|
+
productId: Scalars['String']['output'];
|
|
141727
|
+
recoSessionId?: Maybe<Scalars['String']['output']>;
|
|
141728
|
+
};
|
|
141458
141729
|
export declare type MarketplaceStoreRetentionDurationInDays = {
|
|
141459
141730
|
__typename?: 'MarketplaceStoreRetentionDurationInDays';
|
|
141460
141731
|
max: Scalars['Int']['output'];
|
|
@@ -141510,6 +141781,14 @@ export declare type MarketplaceStoreReviewNodeWithProductListing = MarketplaceSt
|
|
|
141510
141781
|
totalVotes?: Maybe<Scalars['Int']['output']>;
|
|
141511
141782
|
transitionedToFiveStarRating?: Maybe<Scalars['Boolean']['output']>;
|
|
141512
141783
|
};
|
|
141784
|
+
export declare type MarketplaceStoreReviewSummaryContent = {
|
|
141785
|
+
__typename?: 'MarketplaceStoreReviewSummaryContent';
|
|
141786
|
+
overallFeedback: Scalars['String']['output'];
|
|
141787
|
+
};
|
|
141788
|
+
export declare type MarketplaceStoreReviewSummaryResponse = {
|
|
141789
|
+
__typename?: 'MarketplaceStoreReviewSummaryResponse';
|
|
141790
|
+
summary: MarketplaceStoreReviewSummaryContent;
|
|
141791
|
+
};
|
|
141513
141792
|
export declare type MarketplaceStoreReviewsByUserResponse = {
|
|
141514
141793
|
__typename?: 'MarketplaceStoreReviewsByUserResponse';
|
|
141515
141794
|
id: Scalars['ID']['output'];
|
|
@@ -141832,6 +142111,15 @@ export declare type MercuryAddTagsToProposalPayload = Payload & {
|
|
|
141832
142111
|
success: Scalars['Boolean']['output'];
|
|
141833
142112
|
updatedChangeProposal?: Maybe<MercuryChangeProposal>;
|
|
141834
142113
|
};
|
|
142114
|
+
export declare type MercuryAddWatcherToBusinessDomainInput = {
|
|
142115
|
+
businessDomainId: Scalars['ID']['input'];
|
|
142116
|
+
userId: Scalars['ID']['input'];
|
|
142117
|
+
};
|
|
142118
|
+
export declare type MercuryAddWatcherToBusinessDomainPayload = Payload & {
|
|
142119
|
+
__typename?: 'MercuryAddWatcherToBusinessDomainPayload';
|
|
142120
|
+
errors?: Maybe<Array<MutationError>>;
|
|
142121
|
+
success: Scalars['Boolean']['output'];
|
|
142122
|
+
};
|
|
141835
142123
|
export declare type MercuryAddWatcherToFocusAreaInput = {
|
|
141836
142124
|
cloudId: Scalars['ID']['input'];
|
|
141837
142125
|
focusAreaId: Scalars['ID']['input'];
|
|
@@ -141842,6 +142130,16 @@ export declare type MercuryAddWatcherToFocusAreaPayload = Payload & {
|
|
|
141842
142130
|
errors?: Maybe<Array<MutationError>>;
|
|
141843
142131
|
success: Scalars['Boolean']['output'];
|
|
141844
142132
|
};
|
|
142133
|
+
export declare type MercuryAggregatedBusinessDomainStatusCount = {
|
|
142134
|
+
__typename?: 'MercuryAggregatedBusinessDomainStatusCount';
|
|
142135
|
+
children: MercuryBusinessDomainStatusCount;
|
|
142136
|
+
current: MercuryBusinessDomainStatusCount;
|
|
142137
|
+
subtree: MercuryBusinessDomainStatusCount;
|
|
142138
|
+
};
|
|
142139
|
+
export declare type MercuryAggregatedBusinessDomainViewStatusCount = {
|
|
142140
|
+
__typename?: 'MercuryAggregatedBusinessDomainViewStatusCount';
|
|
142141
|
+
children?: Maybe<MercuryBusinessDomainStatusCount>;
|
|
142142
|
+
};
|
|
141845
142143
|
export declare type MercuryAggregatedFocusAreaStatusCount = {
|
|
141846
142144
|
__typename?: 'MercuryAggregatedFocusAreaStatusCount';
|
|
141847
142145
|
children: MercuryFocusAreaStatusCount;
|
|
@@ -141852,6 +142150,25 @@ export declare type MercuryAggregatedPortfolioStatusCount = {
|
|
|
141852
142150
|
__typename?: 'MercuryAggregatedPortfolioStatusCount';
|
|
141853
142151
|
children: MercuryFocusAreaStatusCount;
|
|
141854
142152
|
};
|
|
142153
|
+
export declare type MercuryArchiveBusinessDomainInput = {
|
|
142154
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
142155
|
+
comment?: InputMaybe<Scalars['String']['input']>;
|
|
142156
|
+
id: Scalars['ID']['input'];
|
|
142157
|
+
};
|
|
142158
|
+
export declare type MercuryArchiveBusinessDomainPayload = Payload & {
|
|
142159
|
+
__typename?: 'MercuryArchiveBusinessDomainPayload';
|
|
142160
|
+
errors?: Maybe<Array<MutationError>>;
|
|
142161
|
+
success: Scalars['Boolean']['output'];
|
|
142162
|
+
};
|
|
142163
|
+
export declare type MercuryArchiveBusinessDomainValidationInput = {
|
|
142164
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
142165
|
+
id: Scalars['ID']['input'];
|
|
142166
|
+
};
|
|
142167
|
+
export declare type MercuryArchiveBusinessDomainValidationPayload = Payload & {
|
|
142168
|
+
__typename?: 'MercuryArchiveBusinessDomainValidationPayload';
|
|
142169
|
+
errors?: Maybe<Array<MutationError>>;
|
|
142170
|
+
success: Scalars['Boolean']['output'];
|
|
142171
|
+
};
|
|
141855
142172
|
export declare type MercuryArchiveFocusAreaChange = MercuryChangeInterface & Node & {
|
|
141856
142173
|
__typename?: 'MercuryArchiveFocusAreaChange';
|
|
141857
142174
|
changeProposal?: Maybe<MercuryChangeProposal>;
|
|
@@ -141887,6 +142204,16 @@ export declare type MercuryArchiveFocusAreaValidationPayload = Payload & {
|
|
|
141887
142204
|
errors?: Maybe<Array<MutationError>>;
|
|
141888
142205
|
success: Scalars['Boolean']['output'];
|
|
141889
142206
|
};
|
|
142207
|
+
export declare type MercuryAssignUserAccessToBusinessDomainInput = {
|
|
142208
|
+
businessDomainAri: Scalars['ID']['input'];
|
|
142209
|
+
businessDomainUserAccessAssignment?: InputMaybe<Array<InputMaybe<MercuryBusinessDomainUserAccessInput>>>;
|
|
142210
|
+
};
|
|
142211
|
+
export declare type MercuryAssignUserAccessToBusinessDomainPayload = Payload & {
|
|
142212
|
+
__typename?: 'MercuryAssignUserAccessToBusinessDomainPayload';
|
|
142213
|
+
businessDomainUserAccessAssignment?: Maybe<Array<Maybe<MercuryBusinessDomainUserAccessMutation>>>;
|
|
142214
|
+
errors?: Maybe<Array<MutationError>>;
|
|
142215
|
+
success: Scalars['Boolean']['output'];
|
|
142216
|
+
};
|
|
141890
142217
|
export declare type MercuryAssignUserAccessToFocusAreaInput = {
|
|
141891
142218
|
focusAreaAri: Scalars['ID']['input'];
|
|
141892
142219
|
focusAreaUserAccessAssignment: Array<InputMaybe<MercuryFocusAreaUserAccessInput>>;
|
|
@@ -142001,6 +142328,736 @@ export declare type MercuryBudgetAggregation = {
|
|
|
142001
142328
|
aggregatedBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
142002
142329
|
totalAssignedBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
142003
142330
|
};
|
|
142331
|
+
export declare type MercuryBulkCreateBusinessDomainTypesInput = {
|
|
142332
|
+
businessDomainHierarchyId?: InputMaybe<Scalars['ID']['input']>;
|
|
142333
|
+
cloudId: Scalars['ID']['input'];
|
|
142334
|
+
names?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
142335
|
+
};
|
|
142336
|
+
export declare type MercuryBulkCreateBusinessDomainTypesPayload = Payload & {
|
|
142337
|
+
__typename?: 'MercuryBulkCreateBusinessDomainTypesPayload';
|
|
142338
|
+
createdBusinessDomainTypes?: Maybe<Array<MercuryBusinessDomainType>>;
|
|
142339
|
+
errors?: Maybe<Array<MutationError>>;
|
|
142340
|
+
success: Scalars['Boolean']['output'];
|
|
142341
|
+
};
|
|
142342
|
+
export declare type MercuryBusinessDomain = Node & {
|
|
142343
|
+
__typename?: 'MercuryBusinessDomain';
|
|
142344
|
+
aboutContent: MercuryBusinessDomainAbout;
|
|
142345
|
+
aggregatedBusinessDomainStatusCount?: Maybe<MercuryAggregatedBusinessDomainStatusCount>;
|
|
142346
|
+
archived: Scalars['Boolean']['output'];
|
|
142347
|
+
businessDomainLinks?: Maybe<MercuryBusinessDomainLinks>;
|
|
142348
|
+
businessDomainStatusUpdates?: Maybe<MercuryBusinessDomainStatusUpdateConnection>;
|
|
142349
|
+
businessDomainType: MercuryBusinessDomainType;
|
|
142350
|
+
createdDate: Scalars['String']['output'];
|
|
142351
|
+
customFields?: Maybe<Array<MercuryCustomField>>;
|
|
142352
|
+
draft: Scalars['Boolean']['output'];
|
|
142353
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
142354
|
+
goalLinks?: Maybe<MercuryBusinessDomainGoalLinks>;
|
|
142355
|
+
health?: Maybe<MercuryBusinessDomainHealth>;
|
|
142356
|
+
icon: MercuryBusinessDomainIcon;
|
|
142357
|
+
id: Scalars['ID']['output'];
|
|
142358
|
+
linkedGoalSummary?: Maybe<MercuryBusinessDomainLinkedGoalSummary>;
|
|
142359
|
+
linkedWorkSummary?: Maybe<MercuryBusinessDomainLinkedWorkSummary>;
|
|
142360
|
+
name: Scalars['String']['output'];
|
|
142361
|
+
owner?: Maybe<User>;
|
|
142362
|
+
parent?: Maybe<MercuryBusinessDomain>;
|
|
142363
|
+
rank?: Maybe<Scalars['Int']['output']>;
|
|
142364
|
+
sharedUsers?: Maybe<MercuryBusinessDomainUserAccessConnection>;
|
|
142365
|
+
starred: Scalars['Boolean']['output'];
|
|
142366
|
+
status: MercuryBusinessDomainStatus;
|
|
142367
|
+
statusTransitions: MercuryBusinessDomainStatusTransitions;
|
|
142368
|
+
subBusinessDomains?: Maybe<MercuryBusinessDomainConnection>;
|
|
142369
|
+
targetDate?: Maybe<MercuryBusinessDomainTargetDate>;
|
|
142370
|
+
updatedDate: Scalars['String']['output'];
|
|
142371
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
142372
|
+
userPermissions?: Maybe<Array<MercuryBusinessDomainPermission>>;
|
|
142373
|
+
views?: Maybe<Array<MercuryBusinessDomainView>>;
|
|
142374
|
+
watchers?: Maybe<MercuryUserConnection>;
|
|
142375
|
+
watching: Scalars['Boolean']['output'];
|
|
142376
|
+
};
|
|
142377
|
+
export declare type MercuryBusinessDomainBusinessDomainStatusUpdatesArgs = {
|
|
142378
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
142379
|
+
createdAtOrAfter?: InputMaybe<Scalars['DateTime']['input']>;
|
|
142380
|
+
createdAtOrBefore?: InputMaybe<Scalars['DateTime']['input']>;
|
|
142381
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
142382
|
+
};
|
|
142383
|
+
export declare type MercuryBusinessDomainSharedUsersArgs = {
|
|
142384
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
142385
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
142386
|
+
};
|
|
142387
|
+
export declare type MercuryBusinessDomainSubBusinessDomainsArgs = {
|
|
142388
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
142389
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
142390
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
142391
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryBusinessDomainSort>>>;
|
|
142392
|
+
};
|
|
142393
|
+
export declare type MercuryBusinessDomainWatchersArgs = {
|
|
142394
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
142395
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
142396
|
+
};
|
|
142397
|
+
export declare type MercuryBusinessDomainAbout = {
|
|
142398
|
+
__typename?: 'MercuryBusinessDomainAbout';
|
|
142399
|
+
editorAdfContent?: Maybe<Scalars['String']['output']>;
|
|
142400
|
+
};
|
|
142401
|
+
export declare type MercuryBusinessDomainConnection = {
|
|
142402
|
+
__typename?: 'MercuryBusinessDomainConnection';
|
|
142403
|
+
edges?: Maybe<Array<Maybe<MercuryBusinessDomainEdge>>>;
|
|
142404
|
+
pageInfo: PageInfo;
|
|
142405
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
142406
|
+
};
|
|
142407
|
+
export declare type MercuryBusinessDomainCustomFieldDefinitionScope = MercuryCustomFieldDefinitionScope & {
|
|
142408
|
+
__typename?: 'MercuryBusinessDomainCustomFieldDefinitionScope';
|
|
142409
|
+
entityType: Scalars['String']['output'];
|
|
142410
|
+
};
|
|
142411
|
+
export declare type MercuryBusinessDomainEdge = {
|
|
142412
|
+
__typename?: 'MercuryBusinessDomainEdge';
|
|
142413
|
+
cursor: Scalars['String']['output'];
|
|
142414
|
+
node?: Maybe<MercuryBusinessDomain>;
|
|
142415
|
+
};
|
|
142416
|
+
export declare type MercuryBusinessDomainGoalLink = {
|
|
142417
|
+
__typename?: 'MercuryBusinessDomainGoalLink';
|
|
142418
|
+
atlasGoalAri: Scalars['String']['output'];
|
|
142419
|
+
atlasGoalId: Scalars['String']['output'];
|
|
142420
|
+
createdBy?: Maybe<User>;
|
|
142421
|
+
createdDate: Scalars['String']['output'];
|
|
142422
|
+
id: Scalars['ID']['output'];
|
|
142423
|
+
parentBusinessDomainId: Scalars['ID']['output'];
|
|
142424
|
+
};
|
|
142425
|
+
export declare type MercuryBusinessDomainGoalLinks = {
|
|
142426
|
+
__typename?: 'MercuryBusinessDomainGoalLinks';
|
|
142427
|
+
links: Array<MercuryBusinessDomainGoalLink>;
|
|
142428
|
+
};
|
|
142429
|
+
export declare type MercuryBusinessDomainHealth = {
|
|
142430
|
+
__typename?: 'MercuryBusinessDomainHealth';
|
|
142431
|
+
color: MercuryBusinessDomainHealthColor;
|
|
142432
|
+
displayName: Scalars['String']['output'];
|
|
142433
|
+
id: Scalars['ID']['output'];
|
|
142434
|
+
key: Scalars['String']['output'];
|
|
142435
|
+
order: Scalars['Int']['output'];
|
|
142436
|
+
};
|
|
142437
|
+
export declare enum MercuryBusinessDomainHealthColor {
|
|
142438
|
+
Green = "GREEN",
|
|
142439
|
+
Red = "RED",
|
|
142440
|
+
Yellow = "YELLOW"
|
|
142441
|
+
}
|
|
142442
|
+
export declare type MercuryBusinessDomainHierarchy = Node & {
|
|
142443
|
+
__typename?: 'MercuryBusinessDomainHierarchy';
|
|
142444
|
+
businessDomainTypes?: Maybe<Array<MercuryBusinessDomainType>>;
|
|
142445
|
+
hierarchyTypeKey?: Maybe<MercuryBusinessDomainHierarchyTypeKey>;
|
|
142446
|
+
id: Scalars['ID']['output'];
|
|
142447
|
+
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
142448
|
+
name: Scalars['String']['output'];
|
|
142449
|
+
};
|
|
142450
|
+
export declare type MercuryBusinessDomainHierarchyConnection = {
|
|
142451
|
+
__typename?: 'MercuryBusinessDomainHierarchyConnection';
|
|
142452
|
+
edges?: Maybe<Array<MercuryBusinessDomainHierarchyEdge>>;
|
|
142453
|
+
pageInfo: PageInfo;
|
|
142454
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
142455
|
+
};
|
|
142456
|
+
export declare type MercuryBusinessDomainHierarchyEdge = {
|
|
142457
|
+
__typename?: 'MercuryBusinessDomainHierarchyEdge';
|
|
142458
|
+
cursor: Scalars['String']['output'];
|
|
142459
|
+
node?: Maybe<MercuryBusinessDomainHierarchy>;
|
|
142460
|
+
};
|
|
142461
|
+
export declare type MercuryBusinessDomainHierarchySort = {
|
|
142462
|
+
field: MercuryBusinessDomainHierarchySortField;
|
|
142463
|
+
order: SortOrder;
|
|
142464
|
+
};
|
|
142465
|
+
export declare enum MercuryBusinessDomainHierarchySortField {
|
|
142466
|
+
Name = "NAME"
|
|
142467
|
+
}
|
|
142468
|
+
export declare enum MercuryBusinessDomainHierarchyTypeKey {
|
|
142469
|
+
Investment = "INVESTMENT",
|
|
142470
|
+
Portfolio = "PORTFOLIO"
|
|
142471
|
+
}
|
|
142472
|
+
export declare type MercuryBusinessDomainIcon = {
|
|
142473
|
+
__typename?: 'MercuryBusinessDomainIcon';
|
|
142474
|
+
url: Scalars['String']['output'];
|
|
142475
|
+
};
|
|
142476
|
+
export declare type MercuryBusinessDomainLink = {
|
|
142477
|
+
__typename?: 'MercuryBusinessDomainLink';
|
|
142478
|
+
childBusinessDomainId: Scalars['ID']['output'];
|
|
142479
|
+
createdBy?: Maybe<User>;
|
|
142480
|
+
createdDate: Scalars['String']['output'];
|
|
142481
|
+
id: Scalars['ID']['output'];
|
|
142482
|
+
parentBusinessDomainId: Scalars['ID']['output'];
|
|
142483
|
+
};
|
|
142484
|
+
export declare enum MercuryBusinessDomainLinkAction {
|
|
142485
|
+
LinkChildren = "LINK_CHILDREN",
|
|
142486
|
+
LinkParent = "LINK_PARENT",
|
|
142487
|
+
UnlinkChildren = "UNLINK_CHILDREN",
|
|
142488
|
+
UnlinkParent = "UNLINK_PARENT"
|
|
142489
|
+
}
|
|
142490
|
+
export declare type MercuryBusinessDomainLinkedGoalSummary = {
|
|
142491
|
+
__typename?: 'MercuryBusinessDomainLinkedGoalSummary';
|
|
142492
|
+
count: Scalars['Int']['output'];
|
|
142493
|
+
countIncludingSubBusinessDomains?: Maybe<Scalars['Int']['output']>;
|
|
142494
|
+
};
|
|
142495
|
+
export declare type MercuryBusinessDomainLinkedWorkSummary = {
|
|
142496
|
+
__typename?: 'MercuryBusinessDomainLinkedWorkSummary';
|
|
142497
|
+
count: Scalars['Int']['output'];
|
|
142498
|
+
countIncludingSubBusinessDomains?: Maybe<Scalars['Int']['output']>;
|
|
142499
|
+
};
|
|
142500
|
+
export declare type MercuryBusinessDomainLinks = {
|
|
142501
|
+
__typename?: 'MercuryBusinessDomainLinks';
|
|
142502
|
+
links: Array<MercuryBusinessDomainLink>;
|
|
142503
|
+
};
|
|
142504
|
+
export declare type MercuryBusinessDomainListSummary = {
|
|
142505
|
+
__typename?: 'MercuryBusinessDomainListSummary';
|
|
142506
|
+
ids: Array<Scalars['ID']['output']>;
|
|
142507
|
+
input?: Maybe<Scalars['String']['output']>;
|
|
142508
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
142509
|
+
};
|
|
142510
|
+
export declare enum MercuryBusinessDomainPermission {
|
|
142511
|
+
Archive = "ARCHIVE",
|
|
142512
|
+
CreateGoalLink = "CREATE_GOAL_LINK",
|
|
142513
|
+
CreateLink = "CREATE_LINK",
|
|
142514
|
+
CreateUpdate = "CREATE_UPDATE",
|
|
142515
|
+
CreateWorkLink = "CREATE_WORK_LINK",
|
|
142516
|
+
Delete = "DELETE",
|
|
142517
|
+
DeleteGoalLink = "DELETE_GOAL_LINK",
|
|
142518
|
+
DeleteLink = "DELETE_LINK",
|
|
142519
|
+
DeleteUpdate = "DELETE_UPDATE",
|
|
142520
|
+
DeleteWorkLink = "DELETE_WORK_LINK",
|
|
142521
|
+
EditAbout = "EDIT_ABOUT",
|
|
142522
|
+
EditName = "EDIT_NAME",
|
|
142523
|
+
EditOwner = "EDIT_OWNER",
|
|
142524
|
+
EditType = "EDIT_TYPE",
|
|
142525
|
+
Export = "EXPORT",
|
|
142526
|
+
ViewFund = "VIEW_FUND"
|
|
142527
|
+
}
|
|
142528
|
+
export declare type MercuryBusinessDomainRankingValidation = {
|
|
142529
|
+
__typename?: 'MercuryBusinessDomainRankingValidation';
|
|
142530
|
+
isValid: Scalars['Boolean']['output'];
|
|
142531
|
+
validationErrors?: Maybe<Array<MercuryBusinessDomainRankingValidationError>>;
|
|
142532
|
+
};
|
|
142533
|
+
export declare type MercuryBusinessDomainRankingValidationError = {
|
|
142534
|
+
__typename?: 'MercuryBusinessDomainRankingValidationError';
|
|
142535
|
+
businessDomain?: Maybe<MercuryBusinessDomain>;
|
|
142536
|
+
errorCode: MercuryBusinessDomainRankingValidationErrorCode;
|
|
142537
|
+
rankingView?: Maybe<MercuryBusinessDomainView>;
|
|
142538
|
+
};
|
|
142539
|
+
export declare enum MercuryBusinessDomainRankingValidationErrorCode {
|
|
142540
|
+
FaRanked = "FA_RANKED",
|
|
142541
|
+
FaTypeMismatch = "FA_TYPE_MISMATCH",
|
|
142542
|
+
FaVersionMismatch = "FA_VERSION_MISMATCH"
|
|
142543
|
+
}
|
|
142544
|
+
export declare type MercuryBusinessDomainSort = {
|
|
142545
|
+
field?: InputMaybe<MercuryBusinessDomainSortField>;
|
|
142546
|
+
fieldKey?: InputMaybe<Scalars['String']['input']>;
|
|
142547
|
+
order: SortOrder;
|
|
142548
|
+
};
|
|
142549
|
+
export declare enum MercuryBusinessDomainSortField {
|
|
142550
|
+
BusinessDomainType = "BUSINESS_DOMAIN_TYPE",
|
|
142551
|
+
HasParent = "HAS_PARENT",
|
|
142552
|
+
Health = "HEALTH",
|
|
142553
|
+
HierarchyLevel = "HIERARCHY_LEVEL",
|
|
142554
|
+
LastUpdated = "LAST_UPDATED",
|
|
142555
|
+
Name = "NAME",
|
|
142556
|
+
Rank = "RANK",
|
|
142557
|
+
Starred = "STARRED",
|
|
142558
|
+
Status = "STATUS",
|
|
142559
|
+
TargetDate = "TARGET_DATE",
|
|
142560
|
+
Watching = "WATCHING"
|
|
142561
|
+
}
|
|
142562
|
+
export declare type MercuryBusinessDomainStatus = {
|
|
142563
|
+
__typename?: 'MercuryBusinessDomainStatus';
|
|
142564
|
+
displayName: Scalars['String']['output'];
|
|
142565
|
+
id: Scalars['ID']['output'];
|
|
142566
|
+
key: Scalars['String']['output'];
|
|
142567
|
+
order: Scalars['Int']['output'];
|
|
142568
|
+
};
|
|
142569
|
+
export declare type MercuryBusinessDomainStatusCount = {
|
|
142570
|
+
__typename?: 'MercuryBusinessDomainStatusCount';
|
|
142571
|
+
atRisk?: Maybe<Scalars['Int']['output']>;
|
|
142572
|
+
completed?: Maybe<Scalars['Int']['output']>;
|
|
142573
|
+
inProgress?: Maybe<Scalars['Int']['output']>;
|
|
142574
|
+
offTrack?: Maybe<Scalars['Int']['output']>;
|
|
142575
|
+
onTrack?: Maybe<Scalars['Int']['output']>;
|
|
142576
|
+
paused?: Maybe<Scalars['Int']['output']>;
|
|
142577
|
+
pending?: Maybe<Scalars['Int']['output']>;
|
|
142578
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
142579
|
+
};
|
|
142580
|
+
export declare type MercuryBusinessDomainStatusTransition = {
|
|
142581
|
+
__typename?: 'MercuryBusinessDomainStatusTransition';
|
|
142582
|
+
health?: Maybe<MercuryBusinessDomainHealth>;
|
|
142583
|
+
id: Scalars['ID']['output'];
|
|
142584
|
+
status: MercuryBusinessDomainStatus;
|
|
142585
|
+
};
|
|
142586
|
+
export declare type MercuryBusinessDomainStatusTransitions = {
|
|
142587
|
+
__typename?: 'MercuryBusinessDomainStatusTransitions';
|
|
142588
|
+
available: Array<MercuryBusinessDomainStatusTransition>;
|
|
142589
|
+
};
|
|
142590
|
+
export declare type MercuryBusinessDomainStatusUpdate = Node & {
|
|
142591
|
+
__typename?: 'MercuryBusinessDomainStatusUpdate';
|
|
142592
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
142593
|
+
businessDomainId: Scalars['ID']['output'];
|
|
142594
|
+
comments?: Maybe<MercuryCommentConnection>;
|
|
142595
|
+
createdBy?: Maybe<User>;
|
|
142596
|
+
createdDate: Scalars['String']['output'];
|
|
142597
|
+
id: Scalars['ID']['output'];
|
|
142598
|
+
newHealth?: Maybe<MercuryBusinessDomainHealth>;
|
|
142599
|
+
newStatus?: Maybe<MercuryBusinessDomainStatus>;
|
|
142600
|
+
newTargetDate?: Maybe<MercuryTargetDate>;
|
|
142601
|
+
previousHealth?: Maybe<MercuryBusinessDomainHealth>;
|
|
142602
|
+
previousStatus?: Maybe<MercuryBusinessDomainStatus>;
|
|
142603
|
+
previousTargetDate?: Maybe<MercuryTargetDate>;
|
|
142604
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
142605
|
+
updatedBy?: Maybe<User>;
|
|
142606
|
+
updatedDate: Scalars['String']['output'];
|
|
142607
|
+
uuid: Scalars['ID']['output'];
|
|
142608
|
+
};
|
|
142609
|
+
export declare type MercuryBusinessDomainStatusUpdateCommentsArgs = {
|
|
142610
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
142611
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
142612
|
+
};
|
|
142613
|
+
export declare type MercuryBusinessDomainStatusUpdateConnection = {
|
|
142614
|
+
__typename?: 'MercuryBusinessDomainStatusUpdateConnection';
|
|
142615
|
+
edges?: Maybe<Array<Maybe<MercuryBusinessDomainStatusUpdateEdge>>>;
|
|
142616
|
+
pageInfo: PageInfo;
|
|
142617
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
142618
|
+
};
|
|
142619
|
+
export declare type MercuryBusinessDomainStatusUpdateEdge = {
|
|
142620
|
+
__typename?: 'MercuryBusinessDomainStatusUpdateEdge';
|
|
142621
|
+
cursor: Scalars['String']['output'];
|
|
142622
|
+
node?: Maybe<MercuryBusinessDomainStatusUpdate>;
|
|
142623
|
+
};
|
|
142624
|
+
export declare type MercuryBusinessDomainSummary = {
|
|
142625
|
+
__typename?: 'MercuryBusinessDomainSummary';
|
|
142626
|
+
id: Scalars['ID']['output'];
|
|
142627
|
+
input?: Maybe<Scalars['String']['output']>;
|
|
142628
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
142629
|
+
};
|
|
142630
|
+
export declare enum MercuryBusinessDomainSummaryType {
|
|
142631
|
+
BusinessDomain = "BUSINESS_DOMAIN",
|
|
142632
|
+
Goals = "GOALS",
|
|
142633
|
+
Work = "WORK"
|
|
142634
|
+
}
|
|
142635
|
+
export declare type MercuryBusinessDomainTargetDate = {
|
|
142636
|
+
__typename?: 'MercuryBusinessDomainTargetDate';
|
|
142637
|
+
targetDate?: Maybe<Scalars['String']['output']>;
|
|
142638
|
+
targetDateType?: Maybe<MercuryBusinessDomainTargetDateType>;
|
|
142639
|
+
};
|
|
142640
|
+
export declare type MercuryBusinessDomainTargetDateInput = {
|
|
142641
|
+
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
142642
|
+
targetDateType?: InputMaybe<MercuryBusinessDomainTargetDateType>;
|
|
142643
|
+
};
|
|
142644
|
+
export declare enum MercuryBusinessDomainTargetDateType {
|
|
142645
|
+
Day = "DAY",
|
|
142646
|
+
Month = "MONTH",
|
|
142647
|
+
Quarter = "QUARTER"
|
|
142648
|
+
}
|
|
142649
|
+
export declare type MercuryBusinessDomainType = {
|
|
142650
|
+
__typename?: 'MercuryBusinessDomainType';
|
|
142651
|
+
businessDomainCount?: Maybe<MercuryBusinessDomainTypeAggregation>;
|
|
142652
|
+
businessDomainHierarchy?: Maybe<MercuryBusinessDomainHierarchy>;
|
|
142653
|
+
hierarchyLevel: Scalars['Int']['output'];
|
|
142654
|
+
id: Scalars['ID']['output'];
|
|
142655
|
+
name: Scalars['String']['output'];
|
|
142656
|
+
};
|
|
142657
|
+
export declare type MercuryBusinessDomainTypeBusinessDomainCountArgs = {
|
|
142658
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
142659
|
+
};
|
|
142660
|
+
export declare type MercuryBusinessDomainTypeAggregation = {
|
|
142661
|
+
__typename?: 'MercuryBusinessDomainTypeAggregation';
|
|
142662
|
+
totalCount: Scalars['Int']['output'];
|
|
142663
|
+
};
|
|
142664
|
+
export declare type MercuryBusinessDomainUserAccess = {
|
|
142665
|
+
__typename?: 'MercuryBusinessDomainUserAccess';
|
|
142666
|
+
accessLevel?: Maybe<MercuryBusinessDomainUserAccessLevel>;
|
|
142667
|
+
accessReason?: Maybe<MercuryBusinessDomainUserAccessReason>;
|
|
142668
|
+
following?: Maybe<Scalars['Boolean']['output']>;
|
|
142669
|
+
hasAccess: Scalars['Boolean']['output'];
|
|
142670
|
+
user?: Maybe<User>;
|
|
142671
|
+
};
|
|
142672
|
+
export declare type MercuryBusinessDomainUserAccessConnection = {
|
|
142673
|
+
__typename?: 'MercuryBusinessDomainUserAccessConnection';
|
|
142674
|
+
edges?: Maybe<Array<MercuryBusinessDomainUserAccessEdge>>;
|
|
142675
|
+
pageInfo: PageInfo;
|
|
142676
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
142677
|
+
};
|
|
142678
|
+
export declare type MercuryBusinessDomainUserAccessEdge = {
|
|
142679
|
+
__typename?: 'MercuryBusinessDomainUserAccessEdge';
|
|
142680
|
+
cursor: Scalars['String']['output'];
|
|
142681
|
+
node?: Maybe<MercuryBusinessDomainUserAccess>;
|
|
142682
|
+
};
|
|
142683
|
+
export declare type MercuryBusinessDomainUserAccessInput = {
|
|
142684
|
+
accessLevel?: InputMaybe<MercuryBusinessDomainUserAccessLevel>;
|
|
142685
|
+
addAsFollower?: InputMaybe<Scalars['Boolean']['input']>;
|
|
142686
|
+
principalId: Scalars['ID']['input'];
|
|
142687
|
+
};
|
|
142688
|
+
export declare enum MercuryBusinessDomainUserAccessLevel {
|
|
142689
|
+
Edit = "EDIT",
|
|
142690
|
+
View = "VIEW"
|
|
142691
|
+
}
|
|
142692
|
+
export declare type MercuryBusinessDomainUserAccessMutation = {
|
|
142693
|
+
__typename?: 'MercuryBusinessDomainUserAccessMutation';
|
|
142694
|
+
addedAsFollower?: Maybe<Scalars['Boolean']['output']>;
|
|
142695
|
+
userAccess?: Maybe<MercuryBusinessDomainUserAccess>;
|
|
142696
|
+
};
|
|
142697
|
+
export declare enum MercuryBusinessDomainUserAccessReason {
|
|
142698
|
+
AccessGranted = "ACCESS_GRANTED",
|
|
142699
|
+
AlreadyHasAccess = "ALREADY_HAS_ACCESS",
|
|
142700
|
+
RequiresAppAccess = "REQUIRES_APP_ACCESS",
|
|
142701
|
+
RequiresNewProductRole = "REQUIRES_NEW_PRODUCT_ROLE",
|
|
142702
|
+
RequiresSiteAccess = "REQUIRES_SITE_ACCESS"
|
|
142703
|
+
}
|
|
142704
|
+
export declare type MercuryBusinessDomainView = Node & {
|
|
142705
|
+
__typename?: 'MercuryBusinessDomainView';
|
|
142706
|
+
aggregatedBusinessDomainStatusCount?: Maybe<MercuryAggregatedBusinessDomainViewStatusCount>;
|
|
142707
|
+
id: Scalars['ID']['output'];
|
|
142708
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
142709
|
+
linkedBusinessDomainGoalCount: Scalars['Int']['output'];
|
|
142710
|
+
linkedBusinessDomainSummary?: Maybe<MercuryBusinessDomainViewBusinessDomainSummary>;
|
|
142711
|
+
name: Scalars['String']['output'];
|
|
142712
|
+
owner?: Maybe<User>;
|
|
142713
|
+
starred: Scalars['Boolean']['output'];
|
|
142714
|
+
updatedBy?: Maybe<User>;
|
|
142715
|
+
updatedDate: Scalars['String']['output'];
|
|
142716
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
142717
|
+
uuid?: Maybe<Scalars['ID']['output']>;
|
|
142718
|
+
version?: Maybe<Scalars['String']['output']>;
|
|
142719
|
+
viewType: MercuryBusinessDomainViewType;
|
|
142720
|
+
};
|
|
142721
|
+
export declare type MercuryBusinessDomainViewBusinessDomainSummary = {
|
|
142722
|
+
__typename?: 'MercuryBusinessDomainViewBusinessDomainSummary';
|
|
142723
|
+
businessDomainTypeBreakdown?: Maybe<Array<Maybe<MercuryBusinessDomainViewBusinessDomainTypeBreakdown>>>;
|
|
142724
|
+
};
|
|
142725
|
+
export declare type MercuryBusinessDomainViewBusinessDomainTypeBreakdown = {
|
|
142726
|
+
__typename?: 'MercuryBusinessDomainViewBusinessDomainTypeBreakdown';
|
|
142727
|
+
businessDomainType: MercuryBusinessDomainType;
|
|
142728
|
+
count: Scalars['Int']['output'];
|
|
142729
|
+
};
|
|
142730
|
+
export declare type MercuryBusinessDomainViewConnection = {
|
|
142731
|
+
__typename?: 'MercuryBusinessDomainViewConnection';
|
|
142732
|
+
edges?: Maybe<Array<MercuryBusinessDomainViewEdge>>;
|
|
142733
|
+
pageInfo: PageInfo;
|
|
142734
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
142735
|
+
};
|
|
142736
|
+
export declare type MercuryBusinessDomainViewEdge = {
|
|
142737
|
+
__typename?: 'MercuryBusinessDomainViewEdge';
|
|
142738
|
+
cursor: Scalars['String']['output'];
|
|
142739
|
+
node: MercuryBusinessDomainView;
|
|
142740
|
+
};
|
|
142741
|
+
export declare type MercuryBusinessDomainViewSort = {
|
|
142742
|
+
field: MercuryBusinessDomainViewSortField;
|
|
142743
|
+
order: SortOrder;
|
|
142744
|
+
};
|
|
142745
|
+
export declare enum MercuryBusinessDomainViewSortField {
|
|
142746
|
+
Name = "NAME",
|
|
142747
|
+
Owner = "OWNER",
|
|
142748
|
+
Starred = "STARRED"
|
|
142749
|
+
}
|
|
142750
|
+
export declare enum MercuryBusinessDomainViewType {
|
|
142751
|
+
HierarchyView = "HIERARCHY_VIEW",
|
|
142752
|
+
RankingView = "RANKING_VIEW"
|
|
142753
|
+
}
|
|
142754
|
+
export declare type MercuryBusinessDomainsMutationApi = {
|
|
142755
|
+
__typename?: 'MercuryBusinessDomainsMutationApi';
|
|
142756
|
+
addBusinessDomainCustomFieldDefinitionOptions?: Maybe<MercuryAddCustomFieldDefinitionOptionsPayload>;
|
|
142757
|
+
addWatcherToBusinessDomain?: Maybe<MercuryAddWatcherToBusinessDomainPayload>;
|
|
142758
|
+
archiveBusinessDomain?: Maybe<MercuryArchiveBusinessDomainPayload>;
|
|
142759
|
+
assignUserAccessToBusinessDomain?: Maybe<MercuryAssignUserAccessToBusinessDomainPayload>;
|
|
142760
|
+
bulkCreateBusinessDomainTypes?: Maybe<MercuryBulkCreateBusinessDomainTypesPayload>;
|
|
142761
|
+
createBusinessDomain?: Maybe<MercuryCreateBusinessDomainPayload>;
|
|
142762
|
+
createBusinessDomainCustomFieldDefinition?: Maybe<MercuryCreateCustomFieldDefinitionPayload>;
|
|
142763
|
+
createBusinessDomainHierarchy?: Maybe<MercuryCreateBusinessDomainHierarchyPayload>;
|
|
142764
|
+
createBusinessDomainStatusUpdate?: Maybe<MercuryCreateBusinessDomainStatusUpdatePayload>;
|
|
142765
|
+
createBusinessDomainType?: Maybe<MercuryCreateBusinessDomainTypePayload>;
|
|
142766
|
+
createBusinessDomainViewWithBusinessDomains?: Maybe<MercuryCreateBusinessDomainViewPayload>;
|
|
142767
|
+
deleteBusinessDomain?: Maybe<MercuryDeleteBusinessDomainPayload>;
|
|
142768
|
+
deleteBusinessDomainCustomFieldDefinition?: Maybe<MercuryDeleteCustomFieldDefinitionPayload>;
|
|
142769
|
+
deleteBusinessDomainCustomFieldDefinitionOptions?: Maybe<MercuryDeleteCustomFieldDefinitionOptionsPayload>;
|
|
142770
|
+
deleteBusinessDomainGoalLinks?: Maybe<MercuryDeleteBusinessDomainGoalLinksPayload>;
|
|
142771
|
+
deleteBusinessDomainHierarchy?: Maybe<MercuryDeleteBusinessDomainHierarchyPayload>;
|
|
142772
|
+
deleteBusinessDomainLink?: Maybe<MercuryDeleteBusinessDomainLinkPayload>;
|
|
142773
|
+
deleteBusinessDomainStatusUpdate?: Maybe<MercuryDeleteBusinessDomainStatusUpdatePayload>;
|
|
142774
|
+
deleteBusinessDomainType?: Maybe<MercuryDeleteBusinessDomainTypePayload>;
|
|
142775
|
+
deleteBusinessDomainView?: Maybe<MercuryDeleteBusinessDomainViewPayload>;
|
|
142776
|
+
deleteBusinessDomainViewBusinessDomainLink?: Maybe<MercuryDeleteBusinessDomainViewBusinessDomainLinkPayload>;
|
|
142777
|
+
linkBusinessDomainToThirdPartyDocument?: Maybe<MercuryLinkBusinessDomainThirdPartyDocumentPayload>;
|
|
142778
|
+
linkBusinessDomainsToBusinessDomain?: Maybe<MercuryLinkBusinessDomainsToBusinessDomainPayload>;
|
|
142779
|
+
linkBusinessDomainsToBusinessDomainView?: Maybe<MercuryLinkBusinessDomainsToBusinessDomainViewPayload>;
|
|
142780
|
+
linkGoalsToBusinessDomain?: Maybe<MercuryLinkGoalsToBusinessDomainPayload>;
|
|
142781
|
+
publishBusinessDomain?: Maybe<MercuryPublishBusinessDomainPayload>;
|
|
142782
|
+
rankBusinessDomainsInView?: Maybe<MercuryRankBusinessDomainsInBusinessDomainViewPayload>;
|
|
142783
|
+
recreateBusinessDomainViewBusinessDomains?: Maybe<MercuryUpdateBusinessDomainViewPayload>;
|
|
142784
|
+
removeUserAccessToBusinessDomain?: Maybe<MercuryRemoveUserAccessToBusinessDomainPayload>;
|
|
142785
|
+
removeWatcherFromBusinessDomain?: Maybe<MercuryRemoveWatcherFromBusinessDomainPayload>;
|
|
142786
|
+
reorderBusinessDomainCustomFieldDefinitionOptions?: Maybe<MercuryReorderCustomFieldDefinitionOptionsPayload>;
|
|
142787
|
+
reorderBusinessDomainTypes?: Maybe<MercuryReorderBusinessDomainTypesPayload>;
|
|
142788
|
+
setBusinessDomainCustomFieldValue?: Maybe<MercurySetBusinessDomainCustomFieldPayload>;
|
|
142789
|
+
setBusinessDomainCustomFieldValues?: Maybe<MercurySetBusinessDomainCustomFieldsPayload>;
|
|
142790
|
+
starBusinessDomain?: Maybe<MercuryStarBusinessDomainPayload>;
|
|
142791
|
+
transitionBusinessDomainStatus?: Maybe<MercuryUpdateBusinessDomainPayload>;
|
|
142792
|
+
unStarBusinessDomain?: Maybe<MercuryUnStarBusinessDomainPayload>;
|
|
142793
|
+
unarchiveBusinessDomain?: Maybe<MercuryUnarchiveBusinessDomainPayload>;
|
|
142794
|
+
updateBusinessDomainAboutContent?: Maybe<MercuryUpdateBusinessDomainPayload>;
|
|
142795
|
+
updateBusinessDomainCustomFieldDefinitionDescription?: Maybe<MercuryUpdateCustomFieldDefinitionDescriptionPayload>;
|
|
142796
|
+
updateBusinessDomainCustomFieldDefinitionName?: Maybe<MercuryUpdateCustomFieldDefinitionNamePayload>;
|
|
142797
|
+
updateBusinessDomainCustomFieldDefinitionOption?: Maybe<MercuryUpdateCustomFieldDefinitionOptionPayload>;
|
|
142798
|
+
updateBusinessDomainHierarchyName?: Maybe<MercuryUpdateBusinessDomainHierarchyPayload>;
|
|
142799
|
+
updateBusinessDomainName?: Maybe<MercuryUpdateBusinessDomainPayload>;
|
|
142800
|
+
updateBusinessDomainOwner?: Maybe<MercuryUpdateBusinessDomainPayload>;
|
|
142801
|
+
updateBusinessDomainStatusUpdate?: Maybe<MercuryUpdateBusinessDomainStatusUpdatePayload>;
|
|
142802
|
+
updateBusinessDomainTargetDate?: Maybe<MercuryUpdateBusinessDomainPayload>;
|
|
142803
|
+
updateBusinessDomainType?: Maybe<MercuryUpdateBusinessDomainTypePayload>;
|
|
142804
|
+
updateBusinessDomainTypeName?: Maybe<MercuryUpdateBusinessDomainTypeNamePayload>;
|
|
142805
|
+
updateBusinessDomainViewName?: Maybe<MercuryUpdateBusinessDomainViewPayload>;
|
|
142806
|
+
validateBusinessDomainArchival?: Maybe<MercuryArchiveBusinessDomainValidationPayload>;
|
|
142807
|
+
validateBusinessDomainsForRanking?: Maybe<MercuryValidateBusinessDomainsForRankingPayload>;
|
|
142808
|
+
};
|
|
142809
|
+
export declare type MercuryBusinessDomainsMutationApiAddBusinessDomainCustomFieldDefinitionOptionsArgs = {
|
|
142810
|
+
input: MercuryAddCustomFieldDefinitionOptionsInput;
|
|
142811
|
+
};
|
|
142812
|
+
export declare type MercuryBusinessDomainsMutationApiAddWatcherToBusinessDomainArgs = {
|
|
142813
|
+
input: MercuryAddWatcherToBusinessDomainInput;
|
|
142814
|
+
};
|
|
142815
|
+
export declare type MercuryBusinessDomainsMutationApiArchiveBusinessDomainArgs = {
|
|
142816
|
+
input: MercuryArchiveBusinessDomainInput;
|
|
142817
|
+
};
|
|
142818
|
+
export declare type MercuryBusinessDomainsMutationApiAssignUserAccessToBusinessDomainArgs = {
|
|
142819
|
+
input: MercuryAssignUserAccessToBusinessDomainInput;
|
|
142820
|
+
};
|
|
142821
|
+
export declare type MercuryBusinessDomainsMutationApiBulkCreateBusinessDomainTypesArgs = {
|
|
142822
|
+
input: MercuryBulkCreateBusinessDomainTypesInput;
|
|
142823
|
+
};
|
|
142824
|
+
export declare type MercuryBusinessDomainsMutationApiCreateBusinessDomainArgs = {
|
|
142825
|
+
input: MercuryCreateBusinessDomainInput;
|
|
142826
|
+
};
|
|
142827
|
+
export declare type MercuryBusinessDomainsMutationApiCreateBusinessDomainCustomFieldDefinitionArgs = {
|
|
142828
|
+
input: MercuryCreateBusinessDomainCustomFieldDefinitionInput;
|
|
142829
|
+
};
|
|
142830
|
+
export declare type MercuryBusinessDomainsMutationApiCreateBusinessDomainHierarchyArgs = {
|
|
142831
|
+
input: MercuryCreateBusinessDomainHierarchyInput;
|
|
142832
|
+
};
|
|
142833
|
+
export declare type MercuryBusinessDomainsMutationApiCreateBusinessDomainStatusUpdateArgs = {
|
|
142834
|
+
input: MercuryCreateBusinessDomainStatusUpdateInput;
|
|
142835
|
+
};
|
|
142836
|
+
export declare type MercuryBusinessDomainsMutationApiCreateBusinessDomainTypeArgs = {
|
|
142837
|
+
input: MercuryCreateBusinessDomainTypeInput;
|
|
142838
|
+
};
|
|
142839
|
+
export declare type MercuryBusinessDomainsMutationApiCreateBusinessDomainViewWithBusinessDomainsArgs = {
|
|
142840
|
+
input: MercuryCreateBusinessDomainViewBusinessDomainsInput;
|
|
142841
|
+
};
|
|
142842
|
+
export declare type MercuryBusinessDomainsMutationApiDeleteBusinessDomainArgs = {
|
|
142843
|
+
input: MercuryDeleteBusinessDomainInput;
|
|
142844
|
+
};
|
|
142845
|
+
export declare type MercuryBusinessDomainsMutationApiDeleteBusinessDomainCustomFieldDefinitionArgs = {
|
|
142846
|
+
input: MercuryDeleteCustomFieldDefinitionInput;
|
|
142847
|
+
};
|
|
142848
|
+
export declare type MercuryBusinessDomainsMutationApiDeleteBusinessDomainCustomFieldDefinitionOptionsArgs = {
|
|
142849
|
+
input: MercuryDeleteCustomFieldDefinitionOptionsInput;
|
|
142850
|
+
};
|
|
142851
|
+
export declare type MercuryBusinessDomainsMutationApiDeleteBusinessDomainGoalLinksArgs = {
|
|
142852
|
+
input: MercuryDeleteBusinessDomainGoalLinksInput;
|
|
142853
|
+
};
|
|
142854
|
+
export declare type MercuryBusinessDomainsMutationApiDeleteBusinessDomainHierarchyArgs = {
|
|
142855
|
+
input: MercuryDeleteBusinessDomainHierarchyInput;
|
|
142856
|
+
};
|
|
142857
|
+
export declare type MercuryBusinessDomainsMutationApiDeleteBusinessDomainLinkArgs = {
|
|
142858
|
+
input: MercuryDeleteBusinessDomainLinkInput;
|
|
142859
|
+
};
|
|
142860
|
+
export declare type MercuryBusinessDomainsMutationApiDeleteBusinessDomainStatusUpdateArgs = {
|
|
142861
|
+
input: MercuryDeleteBusinessDomainStatusUpdateInput;
|
|
142862
|
+
};
|
|
142863
|
+
export declare type MercuryBusinessDomainsMutationApiDeleteBusinessDomainTypeArgs = {
|
|
142864
|
+
input: MercuryDeleteBusinessDomainTypeInput;
|
|
142865
|
+
};
|
|
142866
|
+
export declare type MercuryBusinessDomainsMutationApiDeleteBusinessDomainViewArgs = {
|
|
142867
|
+
input: MercuryDeleteBusinessDomainViewInput;
|
|
142868
|
+
};
|
|
142869
|
+
export declare type MercuryBusinessDomainsMutationApiDeleteBusinessDomainViewBusinessDomainLinkArgs = {
|
|
142870
|
+
input: MercuryDeleteBusinessDomainViewBusinessDomainLinkInput;
|
|
142871
|
+
};
|
|
142872
|
+
export declare type MercuryBusinessDomainsMutationApiLinkBusinessDomainToThirdPartyDocumentArgs = {
|
|
142873
|
+
input: MercuryLinkBusinessDomainToThirdPartyDocumentInput;
|
|
142874
|
+
};
|
|
142875
|
+
export declare type MercuryBusinessDomainsMutationApiLinkBusinessDomainsToBusinessDomainArgs = {
|
|
142876
|
+
input: MercuryLinkBusinessDomainsToBusinessDomainInput;
|
|
142877
|
+
};
|
|
142878
|
+
export declare type MercuryBusinessDomainsMutationApiLinkBusinessDomainsToBusinessDomainViewArgs = {
|
|
142879
|
+
input: MercuryLinkBusinessDomainsToBusinessDomainViewInput;
|
|
142880
|
+
};
|
|
142881
|
+
export declare type MercuryBusinessDomainsMutationApiLinkGoalsToBusinessDomainArgs = {
|
|
142882
|
+
input: MercuryLinkGoalsToBusinessDomainInput;
|
|
142883
|
+
};
|
|
142884
|
+
export declare type MercuryBusinessDomainsMutationApiPublishBusinessDomainArgs = {
|
|
142885
|
+
input: MercuryPublishBusinessDomainInput;
|
|
142886
|
+
};
|
|
142887
|
+
export declare type MercuryBusinessDomainsMutationApiRankBusinessDomainsInViewArgs = {
|
|
142888
|
+
input: MercuryRankBusinessDomainsInBusinessDomainViewInput;
|
|
142889
|
+
};
|
|
142890
|
+
export declare type MercuryBusinessDomainsMutationApiRecreateBusinessDomainViewBusinessDomainsArgs = {
|
|
142891
|
+
input: MercuryRecreateBusinessDomainViewBusinessDomainsInput;
|
|
142892
|
+
};
|
|
142893
|
+
export declare type MercuryBusinessDomainsMutationApiRemoveUserAccessToBusinessDomainArgs = {
|
|
142894
|
+
input: MercuryRemoveUserAccessToBusinessDomainInput;
|
|
142895
|
+
};
|
|
142896
|
+
export declare type MercuryBusinessDomainsMutationApiRemoveWatcherFromBusinessDomainArgs = {
|
|
142897
|
+
input: MercuryRemoveWatcherFromBusinessDomainInput;
|
|
142898
|
+
};
|
|
142899
|
+
export declare type MercuryBusinessDomainsMutationApiReorderBusinessDomainCustomFieldDefinitionOptionsArgs = {
|
|
142900
|
+
input: MercuryReorderCustomFieldDefinitionOptionsInput;
|
|
142901
|
+
};
|
|
142902
|
+
export declare type MercuryBusinessDomainsMutationApiReorderBusinessDomainTypesArgs = {
|
|
142903
|
+
input: MercuryReorderBusinessDomainTypesInput;
|
|
142904
|
+
};
|
|
142905
|
+
export declare type MercuryBusinessDomainsMutationApiSetBusinessDomainCustomFieldValueArgs = {
|
|
142906
|
+
input: MercurySetBusinessDomainCustomFieldInput;
|
|
142907
|
+
};
|
|
142908
|
+
export declare type MercuryBusinessDomainsMutationApiSetBusinessDomainCustomFieldValuesArgs = {
|
|
142909
|
+
input: MercurySetBusinessDomainCustomFieldsInput;
|
|
142910
|
+
};
|
|
142911
|
+
export declare type MercuryBusinessDomainsMutationApiStarBusinessDomainArgs = {
|
|
142912
|
+
input: MercuryStarBusinessDomainInput;
|
|
142913
|
+
};
|
|
142914
|
+
export declare type MercuryBusinessDomainsMutationApiTransitionBusinessDomainStatusArgs = {
|
|
142915
|
+
input: MercuryTransitionBusinessDomainStatusInput;
|
|
142916
|
+
};
|
|
142917
|
+
export declare type MercuryBusinessDomainsMutationApiUnStarBusinessDomainArgs = {
|
|
142918
|
+
input: MercuryUnStarBusinessDomainInput;
|
|
142919
|
+
};
|
|
142920
|
+
export declare type MercuryBusinessDomainsMutationApiUnarchiveBusinessDomainArgs = {
|
|
142921
|
+
input: MercuryUnarchiveBusinessDomainInput;
|
|
142922
|
+
};
|
|
142923
|
+
export declare type MercuryBusinessDomainsMutationApiUpdateBusinessDomainAboutContentArgs = {
|
|
142924
|
+
input: MercuryUpdateBusinessDomainAboutContentInput;
|
|
142925
|
+
};
|
|
142926
|
+
export declare type MercuryBusinessDomainsMutationApiUpdateBusinessDomainCustomFieldDefinitionDescriptionArgs = {
|
|
142927
|
+
input: MercuryUpdateCustomFieldDefinitionDescriptionInput;
|
|
142928
|
+
};
|
|
142929
|
+
export declare type MercuryBusinessDomainsMutationApiUpdateBusinessDomainCustomFieldDefinitionNameArgs = {
|
|
142930
|
+
input: MercuryUpdateCustomFieldDefinitionNameInput;
|
|
142931
|
+
};
|
|
142932
|
+
export declare type MercuryBusinessDomainsMutationApiUpdateBusinessDomainCustomFieldDefinitionOptionArgs = {
|
|
142933
|
+
input: MercuryUpdateCustomFieldDefinitionOptionInput;
|
|
142934
|
+
};
|
|
142935
|
+
export declare type MercuryBusinessDomainsMutationApiUpdateBusinessDomainHierarchyNameArgs = {
|
|
142936
|
+
input: MercuryUpdateBusinessDomainHierarchyNameInput;
|
|
142937
|
+
};
|
|
142938
|
+
export declare type MercuryBusinessDomainsMutationApiUpdateBusinessDomainNameArgs = {
|
|
142939
|
+
input: MercuryUpdateBusinessDomainNameInput;
|
|
142940
|
+
};
|
|
142941
|
+
export declare type MercuryBusinessDomainsMutationApiUpdateBusinessDomainOwnerArgs = {
|
|
142942
|
+
input: MercuryUpdateBusinessDomainOwnerInput;
|
|
142943
|
+
};
|
|
142944
|
+
export declare type MercuryBusinessDomainsMutationApiUpdateBusinessDomainStatusUpdateArgs = {
|
|
142945
|
+
input: MercuryUpdateBusinessDomainStatusUpdateInput;
|
|
142946
|
+
};
|
|
142947
|
+
export declare type MercuryBusinessDomainsMutationApiUpdateBusinessDomainTargetDateArgs = {
|
|
142948
|
+
input: MercuryUpdateBusinessDomainTargetDateInput;
|
|
142949
|
+
};
|
|
142950
|
+
export declare type MercuryBusinessDomainsMutationApiUpdateBusinessDomainTypeArgs = {
|
|
142951
|
+
input: MercuryUpdateBusinessDomainTypeInput;
|
|
142952
|
+
};
|
|
142953
|
+
export declare type MercuryBusinessDomainsMutationApiUpdateBusinessDomainTypeNameArgs = {
|
|
142954
|
+
input: MercuryUpdateBusinessDomainTypeNameInput;
|
|
142955
|
+
};
|
|
142956
|
+
export declare type MercuryBusinessDomainsMutationApiUpdateBusinessDomainViewNameArgs = {
|
|
142957
|
+
input: MercuryUpdateBusinessDomainViewNameInput;
|
|
142958
|
+
};
|
|
142959
|
+
export declare type MercuryBusinessDomainsMutationApiValidateBusinessDomainArchivalArgs = {
|
|
142960
|
+
input: MercuryArchiveBusinessDomainValidationInput;
|
|
142961
|
+
};
|
|
142962
|
+
export declare type MercuryBusinessDomainsMutationApiValidateBusinessDomainsForRankingArgs = {
|
|
142963
|
+
input: MercuryValidateBusinessDomainsForRankingInput;
|
|
142964
|
+
};
|
|
142965
|
+
export declare type MercuryBusinessDomainsQueryApi = {
|
|
142966
|
+
__typename?: 'MercuryBusinessDomainsQueryApi';
|
|
142967
|
+
aiBusinessDomainListSummary?: Maybe<MercuryBusinessDomainListSummary>;
|
|
142968
|
+
aiBusinessDomainSummary?: Maybe<MercuryBusinessDomainSummary>;
|
|
142969
|
+
businessDomain?: Maybe<MercuryBusinessDomain>;
|
|
142970
|
+
businessDomainCustomFieldDefinitionsSearch?: Maybe<MercuryCustomFieldDefinitionConnection>;
|
|
142971
|
+
businessDomainHierarchies?: Maybe<Array<MercuryBusinessDomainHierarchy>>;
|
|
142972
|
+
businessDomainHierarchiesSearch?: Maybe<MercuryBusinessDomainHierarchyConnection>;
|
|
142973
|
+
businessDomainHierarchy?: Maybe<MercuryBusinessDomainHierarchy>;
|
|
142974
|
+
businessDomainStatusTransitions?: Maybe<Array<MercuryBusinessDomainStatusTransition>>;
|
|
142975
|
+
businessDomainStatusUpdates?: Maybe<Array<MercuryBusinessDomainStatusUpdate>>;
|
|
142976
|
+
businessDomainTypes?: Maybe<Array<Maybe<MercuryBusinessDomainType>>>;
|
|
142977
|
+
businessDomainTypesSearch?: Maybe<Array<MercuryBusinessDomainType>>;
|
|
142978
|
+
businessDomainView?: Maybe<MercuryBusinessDomainView>;
|
|
142979
|
+
businessDomainViews?: Maybe<Array<MercuryBusinessDomainView>>;
|
|
142980
|
+
businessDomainViewsSearch?: Maybe<MercuryBusinessDomainViewConnection>;
|
|
142981
|
+
businessDomains?: Maybe<Array<MercuryBusinessDomain>>;
|
|
142982
|
+
businessDomainsByExternalIds?: Maybe<Array<Maybe<MercuryBusinessDomain>>>;
|
|
142983
|
+
businessDomainsSearch?: Maybe<MercuryBusinessDomainConnection>;
|
|
142984
|
+
};
|
|
142985
|
+
export declare type MercuryBusinessDomainsQueryApiAiBusinessDomainListSummaryArgs = {
|
|
142986
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
142987
|
+
dryRun?: InputMaybe<Scalars['Boolean']['input']>;
|
|
142988
|
+
ids: Array<Scalars['ID']['input']>;
|
|
142989
|
+
prompt?: InputMaybe<Scalars['String']['input']>;
|
|
142990
|
+
};
|
|
142991
|
+
export declare type MercuryBusinessDomainsQueryApiAiBusinessDomainSummaryArgs = {
|
|
142992
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
142993
|
+
dryRun?: InputMaybe<Scalars['Boolean']['input']>;
|
|
142994
|
+
id: Scalars['ID']['input'];
|
|
142995
|
+
includeGoalsFromSubBusinessDomains?: InputMaybe<Scalars['Boolean']['input']>;
|
|
142996
|
+
prompt?: InputMaybe<Scalars['String']['input']>;
|
|
142997
|
+
summaryType?: InputMaybe<MercuryBusinessDomainSummaryType>;
|
|
142998
|
+
};
|
|
142999
|
+
export declare type MercuryBusinessDomainsQueryApiBusinessDomainArgs = {
|
|
143000
|
+
id: Scalars['ID']['input'];
|
|
143001
|
+
};
|
|
143002
|
+
export declare type MercuryBusinessDomainsQueryApiBusinessDomainCustomFieldDefinitionsSearchArgs = {
|
|
143003
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
143004
|
+
cloudId: Scalars['ID']['input'];
|
|
143005
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
143006
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
143007
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryCustomFieldDefinitionSort>>>;
|
|
143008
|
+
};
|
|
143009
|
+
export declare type MercuryBusinessDomainsQueryApiBusinessDomainHierarchiesArgs = {
|
|
143010
|
+
ids: Array<Scalars['ID']['input']>;
|
|
143011
|
+
};
|
|
143012
|
+
export declare type MercuryBusinessDomainsQueryApiBusinessDomainHierarchiesSearchArgs = {
|
|
143013
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
143014
|
+
cloudId: Scalars['ID']['input'];
|
|
143015
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
143016
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
143017
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryBusinessDomainHierarchySort>>>;
|
|
143018
|
+
};
|
|
143019
|
+
export declare type MercuryBusinessDomainsQueryApiBusinessDomainHierarchyArgs = {
|
|
143020
|
+
id: Scalars['ID']['input'];
|
|
143021
|
+
};
|
|
143022
|
+
export declare type MercuryBusinessDomainsQueryApiBusinessDomainStatusTransitionsArgs = {
|
|
143023
|
+
cloudId: Scalars['ID']['input'];
|
|
143024
|
+
};
|
|
143025
|
+
export declare type MercuryBusinessDomainsQueryApiBusinessDomainStatusUpdatesArgs = {
|
|
143026
|
+
ids: Array<Scalars['ID']['input']>;
|
|
143027
|
+
};
|
|
143028
|
+
export declare type MercuryBusinessDomainsQueryApiBusinessDomainTypesArgs = {
|
|
143029
|
+
ids: Array<Scalars['ID']['input']>;
|
|
143030
|
+
};
|
|
143031
|
+
export declare type MercuryBusinessDomainsQueryApiBusinessDomainTypesSearchArgs = {
|
|
143032
|
+
cloudId: Scalars['ID']['input'];
|
|
143033
|
+
};
|
|
143034
|
+
export declare type MercuryBusinessDomainsQueryApiBusinessDomainViewArgs = {
|
|
143035
|
+
id: Scalars['ID']['input'];
|
|
143036
|
+
};
|
|
143037
|
+
export declare type MercuryBusinessDomainsQueryApiBusinessDomainViewsArgs = {
|
|
143038
|
+
ids: Array<Scalars['ID']['input']>;
|
|
143039
|
+
};
|
|
143040
|
+
export declare type MercuryBusinessDomainsQueryApiBusinessDomainViewsSearchArgs = {
|
|
143041
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
143042
|
+
cloudId: Scalars['ID']['input'];
|
|
143043
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
143044
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
143045
|
+
sort?: InputMaybe<Array<MercuryBusinessDomainViewSort>>;
|
|
143046
|
+
};
|
|
143047
|
+
export declare type MercuryBusinessDomainsQueryApiBusinessDomainsArgs = {
|
|
143048
|
+
ids: Array<Scalars['ID']['input']>;
|
|
143049
|
+
};
|
|
143050
|
+
export declare type MercuryBusinessDomainsQueryApiBusinessDomainsByExternalIdsArgs = {
|
|
143051
|
+
cloudId: Scalars['ID']['input'];
|
|
143052
|
+
ids: Array<Scalars['String']['input']>;
|
|
143053
|
+
};
|
|
143054
|
+
export declare type MercuryBusinessDomainsQueryApiBusinessDomainsSearchArgs = {
|
|
143055
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
143056
|
+
cloudId: Scalars['ID']['input'];
|
|
143057
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
143058
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
143059
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryBusinessDomainSort>>>;
|
|
143060
|
+
};
|
|
142004
143061
|
export declare type MercuryChange = MercuryArchiveFocusAreaChange | MercuryChangeParentFocusAreaChange | MercuryCreateFocusAreaChange | MercuryMoveFundsChange | MercuryMovePositionsChange | MercuryPositionAllocationChange | MercuryRenameFocusAreaChange | MercuryRequestFundsChange | MercuryRequestPositionsChange;
|
|
142005
143062
|
export declare type MercuryChangeConnection = {
|
|
142006
143063
|
__typename?: 'MercuryChangeConnection';
|
|
@@ -142320,6 +143377,31 @@ export declare type MercuryCommentEdge = {
|
|
|
142320
143377
|
cursor: Scalars['String']['output'];
|
|
142321
143378
|
node?: Maybe<MercuryComment>;
|
|
142322
143379
|
};
|
|
143380
|
+
export declare type MercuryCommentMutationApi = {
|
|
143381
|
+
__typename?: 'MercuryCommentMutationApi';
|
|
143382
|
+
createComment?: Maybe<MercuryCreateThreadedCommentPayload>;
|
|
143383
|
+
deleteComment?: Maybe<MercuryDeleteThreadedCommentPayload>;
|
|
143384
|
+
updateComment?: Maybe<MercuryUpdateThreadedCommentPayload>;
|
|
143385
|
+
};
|
|
143386
|
+
export declare type MercuryCommentMutationApiCreateCommentArgs = {
|
|
143387
|
+
input: MercuryCreateThreadedCommentInput;
|
|
143388
|
+
};
|
|
143389
|
+
export declare type MercuryCommentMutationApiDeleteCommentArgs = {
|
|
143390
|
+
input: MercuryDeleteThreadedCommentInput;
|
|
143391
|
+
};
|
|
143392
|
+
export declare type MercuryCommentMutationApiUpdateCommentArgs = {
|
|
143393
|
+
input: MercuryUpdateThreadedCommentInput;
|
|
143394
|
+
};
|
|
143395
|
+
export declare type MercuryCommentQueryApi = {
|
|
143396
|
+
__typename?: 'MercuryCommentQueryApi';
|
|
143397
|
+
commentsByParentId?: Maybe<MercuryThreadedCommentConnection>;
|
|
143398
|
+
};
|
|
143399
|
+
export declare type MercuryCommentQueryApiCommentsByParentIdArgs = {
|
|
143400
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
143401
|
+
cloudId: Scalars['ID']['input'];
|
|
143402
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
143403
|
+
parentId: Scalars['ID']['input'];
|
|
143404
|
+
};
|
|
142323
143405
|
export declare type MercuryCostItem = Node & {
|
|
142324
143406
|
__typename?: 'MercuryCostItem';
|
|
142325
143407
|
costItemSummary?: Maybe<MercuryCostItemSummary>;
|
|
@@ -142455,6 +143537,74 @@ export declare type MercuryCreateBenefitTypePayload = Payload & {
|
|
|
142455
143537
|
export declare type MercuryCreateBooleanCustomFieldDefinitionInput = {
|
|
142456
143538
|
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
142457
143539
|
};
|
|
143540
|
+
export declare type MercuryCreateBusinessDomainCustomFieldDefinitionInput = {
|
|
143541
|
+
cloudId: Scalars['ID']['input'];
|
|
143542
|
+
coreCustomFieldDefinition?: InputMaybe<MercuryCreateCoreCustomFieldDefinitionInput>;
|
|
143543
|
+
};
|
|
143544
|
+
export declare type MercuryCreateBusinessDomainHierarchyInput = {
|
|
143545
|
+
cloudId: Scalars['ID']['input'];
|
|
143546
|
+
hierarchyTypeKey: MercuryBusinessDomainHierarchyTypeKey;
|
|
143547
|
+
name: Scalars['String']['input'];
|
|
143548
|
+
};
|
|
143549
|
+
export declare type MercuryCreateBusinessDomainHierarchyPayload = Payload & {
|
|
143550
|
+
__typename?: 'MercuryCreateBusinessDomainHierarchyPayload';
|
|
143551
|
+
createdBusinessDomainHierarchy?: Maybe<MercuryBusinessDomainHierarchy>;
|
|
143552
|
+
errors?: Maybe<Array<MutationError>>;
|
|
143553
|
+
success: Scalars['Boolean']['output'];
|
|
143554
|
+
};
|
|
143555
|
+
export declare type MercuryCreateBusinessDomainInput = {
|
|
143556
|
+
businessDomainTypeId: Scalars['ID']['input'];
|
|
143557
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
143558
|
+
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
143559
|
+
name: Scalars['String']['input'];
|
|
143560
|
+
owner?: InputMaybe<Scalars['ID']['input']>;
|
|
143561
|
+
parentBusinessDomainId?: InputMaybe<Scalars['ID']['input']>;
|
|
143562
|
+
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
143563
|
+
targetDateType?: InputMaybe<MercuryBusinessDomainTargetDateType>;
|
|
143564
|
+
};
|
|
143565
|
+
export declare type MercuryCreateBusinessDomainPayload = Payload & {
|
|
143566
|
+
__typename?: 'MercuryCreateBusinessDomainPayload';
|
|
143567
|
+
createdBusinessDomain?: Maybe<MercuryBusinessDomain>;
|
|
143568
|
+
errors?: Maybe<Array<MutationError>>;
|
|
143569
|
+
success: Scalars['Boolean']['output'];
|
|
143570
|
+
};
|
|
143571
|
+
export declare type MercuryCreateBusinessDomainStatusUpdateInput = {
|
|
143572
|
+
businessDomainId: Scalars['ID']['input'];
|
|
143573
|
+
newTargetDate?: InputMaybe<MercuryBusinessDomainTargetDateInput>;
|
|
143574
|
+
statusTransitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
143575
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
143576
|
+
};
|
|
143577
|
+
export declare type MercuryCreateBusinessDomainStatusUpdatePayload = Payload & {
|
|
143578
|
+
__typename?: 'MercuryCreateBusinessDomainStatusUpdatePayload';
|
|
143579
|
+
createdBusinessDomainUpdateStatus?: Maybe<MercuryBusinessDomainStatusUpdate>;
|
|
143580
|
+
errors?: Maybe<Array<MutationError>>;
|
|
143581
|
+
success: Scalars['Boolean']['output'];
|
|
143582
|
+
};
|
|
143583
|
+
export declare type MercuryCreateBusinessDomainTypeInput = {
|
|
143584
|
+
businessDomainHierarchyId?: InputMaybe<Scalars['ID']['input']>;
|
|
143585
|
+
cloudId: Scalars['ID']['input'];
|
|
143586
|
+
level?: InputMaybe<Scalars['Int']['input']>;
|
|
143587
|
+
name: Scalars['String']['input'];
|
|
143588
|
+
};
|
|
143589
|
+
export declare type MercuryCreateBusinessDomainTypePayload = Payload & {
|
|
143590
|
+
__typename?: 'MercuryCreateBusinessDomainTypePayload';
|
|
143591
|
+
createdBusinessDomainType?: Maybe<MercuryBusinessDomainType>;
|
|
143592
|
+
errors?: Maybe<Array<MutationError>>;
|
|
143593
|
+
success: Scalars['Boolean']['output'];
|
|
143594
|
+
};
|
|
143595
|
+
export declare type MercuryCreateBusinessDomainViewBusinessDomainsInput = {
|
|
143596
|
+
businessDomainIds: Array<Scalars['ID']['input']>;
|
|
143597
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
143598
|
+
name: Scalars['String']['input'];
|
|
143599
|
+
owner?: InputMaybe<Scalars['String']['input']>;
|
|
143600
|
+
viewType?: InputMaybe<MercuryBusinessDomainViewType>;
|
|
143601
|
+
};
|
|
143602
|
+
export declare type MercuryCreateBusinessDomainViewPayload = Payload & {
|
|
143603
|
+
__typename?: 'MercuryCreateBusinessDomainViewPayload';
|
|
143604
|
+
createdBusinessDomainView?: Maybe<MercuryBusinessDomainView>;
|
|
143605
|
+
errors?: Maybe<Array<MutationError>>;
|
|
143606
|
+
success: Scalars['Boolean']['output'];
|
|
143607
|
+
};
|
|
142458
143608
|
export declare type MercuryCreateChangeProposalCommentInput = {
|
|
142459
143609
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
142460
143610
|
content: Scalars['String']['input'];
|
|
@@ -142729,6 +143879,18 @@ export declare type MercuryCreateStrategicEventPayload = Payload & {
|
|
|
142729
143879
|
export declare type MercuryCreateTextCustomFieldDefinitionInput = {
|
|
142730
143880
|
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
142731
143881
|
};
|
|
143882
|
+
export declare type MercuryCreateThreadedCommentInput = {
|
|
143883
|
+
cloudId: Scalars['ID']['input'];
|
|
143884
|
+
commentText: Scalars['String']['input'];
|
|
143885
|
+
containerId: Scalars['ID']['input'];
|
|
143886
|
+
parentId: Scalars['ID']['input'];
|
|
143887
|
+
};
|
|
143888
|
+
export declare type MercuryCreateThreadedCommentPayload = Payload & {
|
|
143889
|
+
__typename?: 'MercuryCreateThreadedCommentPayload';
|
|
143890
|
+
createdComment?: Maybe<MercuryThreadedComment>;
|
|
143891
|
+
errors?: Maybe<Array<MutationError>>;
|
|
143892
|
+
success: Scalars['Boolean']['output'];
|
|
143893
|
+
};
|
|
142732
143894
|
export declare type MercuryCurrency = {
|
|
142733
143895
|
__typename?: 'MercuryCurrency';
|
|
142734
143896
|
code?: Maybe<Scalars['String']['output']>;
|
|
@@ -142887,6 +144049,83 @@ export declare type MercuryDeleteBenefitTypePayload = Payload & {
|
|
|
142887
144049
|
errors?: Maybe<Array<MutationError>>;
|
|
142888
144050
|
success: Scalars['Boolean']['output'];
|
|
142889
144051
|
};
|
|
144052
|
+
export declare type MercuryDeleteBusinessDomainGoalLinksInput = {
|
|
144053
|
+
atlasGoalAris: Array<Scalars['String']['input']>;
|
|
144054
|
+
businessDomainAri: Scalars['String']['input'];
|
|
144055
|
+
};
|
|
144056
|
+
export declare type MercuryDeleteBusinessDomainGoalLinksPayload = Payload & {
|
|
144057
|
+
__typename?: 'MercuryDeleteBusinessDomainGoalLinksPayload';
|
|
144058
|
+
errors?: Maybe<Array<MutationError>>;
|
|
144059
|
+
success: Scalars['Boolean']['output'];
|
|
144060
|
+
};
|
|
144061
|
+
export declare type MercuryDeleteBusinessDomainHierarchyInput = {
|
|
144062
|
+
id: Scalars['ID']['input'];
|
|
144063
|
+
};
|
|
144064
|
+
export declare type MercuryDeleteBusinessDomainHierarchyPayload = Payload & {
|
|
144065
|
+
__typename?: 'MercuryDeleteBusinessDomainHierarchyPayload';
|
|
144066
|
+
errors?: Maybe<Array<MutationError>>;
|
|
144067
|
+
success: Scalars['Boolean']['output'];
|
|
144068
|
+
};
|
|
144069
|
+
export declare type MercuryDeleteBusinessDomainInput = {
|
|
144070
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
144071
|
+
id: Scalars['ID']['input'];
|
|
144072
|
+
};
|
|
144073
|
+
export declare type MercuryDeleteBusinessDomainLinkInput = {
|
|
144074
|
+
businessDomainLinkAction?: InputMaybe<MercuryBusinessDomainLinkAction>;
|
|
144075
|
+
cloudId: Scalars['ID']['input'];
|
|
144076
|
+
id: Scalars['ID']['input'];
|
|
144077
|
+
};
|
|
144078
|
+
export declare type MercuryDeleteBusinessDomainLinkPayload = Payload & {
|
|
144079
|
+
__typename?: 'MercuryDeleteBusinessDomainLinkPayload';
|
|
144080
|
+
errors?: Maybe<Array<MutationError>>;
|
|
144081
|
+
success: Scalars['Boolean']['output'];
|
|
144082
|
+
};
|
|
144083
|
+
export declare type MercuryDeleteBusinessDomainPayload = Payload & {
|
|
144084
|
+
__typename?: 'MercuryDeleteBusinessDomainPayload';
|
|
144085
|
+
errors?: Maybe<Array<MutationError>>;
|
|
144086
|
+
success: Scalars['Boolean']['output'];
|
|
144087
|
+
};
|
|
144088
|
+
export declare type MercuryDeleteBusinessDomainStatusUpdateInput = {
|
|
144089
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
144090
|
+
id: Scalars['ID']['input'];
|
|
144091
|
+
};
|
|
144092
|
+
export declare type MercuryDeleteBusinessDomainStatusUpdatePayload = Payload & {
|
|
144093
|
+
__typename?: 'MercuryDeleteBusinessDomainStatusUpdatePayload';
|
|
144094
|
+
errors?: Maybe<Array<MutationError>>;
|
|
144095
|
+
success: Scalars['Boolean']['output'];
|
|
144096
|
+
};
|
|
144097
|
+
export declare type MercuryDeleteBusinessDomainTypeInput = {
|
|
144098
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
144099
|
+
dryRun?: InputMaybe<Scalars['Boolean']['input']>;
|
|
144100
|
+
id: Scalars['ID']['input'];
|
|
144101
|
+
};
|
|
144102
|
+
export declare type MercuryDeleteBusinessDomainTypePayload = Payload & {
|
|
144103
|
+
__typename?: 'MercuryDeleteBusinessDomainTypePayload';
|
|
144104
|
+
deletedLinks?: Maybe<Array<MercuryBusinessDomainLink>>;
|
|
144105
|
+
dryRun?: Maybe<Scalars['Boolean']['output']>;
|
|
144106
|
+
errors?: Maybe<Array<MutationError>>;
|
|
144107
|
+
reassignedBusinessDomains?: Maybe<Array<MercuryBusinessDomain>>;
|
|
144108
|
+
remainingBusinessDomainTypes?: Maybe<Array<MercuryBusinessDomainType>>;
|
|
144109
|
+
success: Scalars['Boolean']['output'];
|
|
144110
|
+
};
|
|
144111
|
+
export declare type MercuryDeleteBusinessDomainViewBusinessDomainLinkInput = {
|
|
144112
|
+
businessDomainIds: Array<Scalars['ID']['input']>;
|
|
144113
|
+
businessDomainViewId: Scalars['ID']['input'];
|
|
144114
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
144115
|
+
};
|
|
144116
|
+
export declare type MercuryDeleteBusinessDomainViewBusinessDomainLinkPayload = Payload & {
|
|
144117
|
+
__typename?: 'MercuryDeleteBusinessDomainViewBusinessDomainLinkPayload';
|
|
144118
|
+
errors?: Maybe<Array<MutationError>>;
|
|
144119
|
+
success: Scalars['Boolean']['output'];
|
|
144120
|
+
};
|
|
144121
|
+
export declare type MercuryDeleteBusinessDomainViewInput = {
|
|
144122
|
+
id: Scalars['ID']['input'];
|
|
144123
|
+
};
|
|
144124
|
+
export declare type MercuryDeleteBusinessDomainViewPayload = Payload & {
|
|
144125
|
+
__typename?: 'MercuryDeleteBusinessDomainViewPayload';
|
|
144126
|
+
errors?: Maybe<Array<MutationError>>;
|
|
144127
|
+
success: Scalars['Boolean']['output'];
|
|
144128
|
+
};
|
|
142890
144129
|
export declare type MercuryDeleteChangeProposalCommentInput = {
|
|
142891
144130
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
142892
144131
|
id: Scalars['ID']['input'];
|
|
@@ -143102,6 +144341,15 @@ export declare type MercuryDeleteStrategicEventPayload = Payload & {
|
|
|
143102
144341
|
errors?: Maybe<Array<MutationError>>;
|
|
143103
144342
|
success: Scalars['Boolean']['output'];
|
|
143104
144343
|
};
|
|
144344
|
+
export declare type MercuryDeleteThreadedCommentInput = {
|
|
144345
|
+
cloudId: Scalars['ID']['input'];
|
|
144346
|
+
id: Scalars['ID']['input'];
|
|
144347
|
+
};
|
|
144348
|
+
export declare type MercuryDeleteThreadedCommentPayload = Payload & {
|
|
144349
|
+
__typename?: 'MercuryDeleteThreadedCommentPayload';
|
|
144350
|
+
errors?: Maybe<Array<MutationError>>;
|
|
144351
|
+
success: Scalars['Boolean']['output'];
|
|
144352
|
+
};
|
|
143105
144353
|
export declare type MercuryDismissInsightInput = {
|
|
143106
144354
|
dismissalType: MercuryDismissalType;
|
|
143107
144355
|
focusAreaId: Scalars['ID']['input'];
|
|
@@ -144509,6 +145757,36 @@ export declare type MercuryLinkAtlassianWorkToFocusAreaPayload = Payload & {
|
|
|
144509
145757
|
errors?: Maybe<Array<MutationError>>;
|
|
144510
145758
|
success: Scalars['Boolean']['output'];
|
|
144511
145759
|
};
|
|
145760
|
+
export declare type MercuryLinkBusinessDomainThirdPartyDocumentPayload = Payload & {
|
|
145761
|
+
__typename?: 'MercuryLinkBusinessDomainThirdPartyDocumentPayload';
|
|
145762
|
+
errors?: Maybe<Array<MutationError>>;
|
|
145763
|
+
success: Scalars['Boolean']['output'];
|
|
145764
|
+
};
|
|
145765
|
+
export declare type MercuryLinkBusinessDomainToThirdPartyDocumentInput = {
|
|
145766
|
+
id: Scalars['ID']['input'];
|
|
145767
|
+
thirdPartyDocumentId: Scalars['ID']['input'];
|
|
145768
|
+
};
|
|
145769
|
+
export declare type MercuryLinkBusinessDomainsToBusinessDomainInput = {
|
|
145770
|
+
businessDomainLinkAction?: InputMaybe<MercuryBusinessDomainLinkAction>;
|
|
145771
|
+
childBusinessDomainIds: Array<Scalars['ID']['input']>;
|
|
145772
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
145773
|
+
parentBusinessDomainId: Scalars['ID']['input'];
|
|
145774
|
+
};
|
|
145775
|
+
export declare type MercuryLinkBusinessDomainsToBusinessDomainPayload = Payload & {
|
|
145776
|
+
__typename?: 'MercuryLinkBusinessDomainsToBusinessDomainPayload';
|
|
145777
|
+
errors?: Maybe<Array<MutationError>>;
|
|
145778
|
+
success: Scalars['Boolean']['output'];
|
|
145779
|
+
};
|
|
145780
|
+
export declare type MercuryLinkBusinessDomainsToBusinessDomainViewInput = {
|
|
145781
|
+
businessDomainIds: Array<Scalars['ID']['input']>;
|
|
145782
|
+
businessDomainViewId: Scalars['ID']['input'];
|
|
145783
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
145784
|
+
};
|
|
145785
|
+
export declare type MercuryLinkBusinessDomainsToBusinessDomainViewPayload = Payload & {
|
|
145786
|
+
__typename?: 'MercuryLinkBusinessDomainsToBusinessDomainViewPayload';
|
|
145787
|
+
errors?: Maybe<Array<MutationError>>;
|
|
145788
|
+
success: Scalars['Boolean']['output'];
|
|
145789
|
+
};
|
|
144512
145790
|
export declare type MercuryLinkFocusAreasToFocusAreaInput = {
|
|
144513
145791
|
childFocusAreaIds: Array<Scalars['ID']['input']>;
|
|
144514
145792
|
cloudId: Scalars['ID']['input'];
|
|
@@ -144529,6 +145807,16 @@ export declare type MercuryLinkFocusAreasToPortfolioPayload = Payload & {
|
|
|
144529
145807
|
errors?: Maybe<Array<MutationError>>;
|
|
144530
145808
|
success: Scalars['Boolean']['output'];
|
|
144531
145809
|
};
|
|
145810
|
+
export declare type MercuryLinkGoalsToBusinessDomainInput = {
|
|
145811
|
+
atlasGoalAris?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
145812
|
+
atlasGoalIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
145813
|
+
parentBusinessDomainId: Scalars['ID']['input'];
|
|
145814
|
+
};
|
|
145815
|
+
export declare type MercuryLinkGoalsToBusinessDomainPayload = Payload & {
|
|
145816
|
+
__typename?: 'MercuryLinkGoalsToBusinessDomainPayload';
|
|
145817
|
+
errors?: Maybe<Array<MutationError>>;
|
|
145818
|
+
success: Scalars['Boolean']['output'];
|
|
145819
|
+
};
|
|
144532
145820
|
export declare type MercuryLinkGoalsToChangeProposalInput = {
|
|
144533
145821
|
changeProposalAri: Scalars['ID']['input'];
|
|
144534
145822
|
goalAris: Array<Scalars['ID']['input']>;
|
|
@@ -144556,6 +145844,15 @@ export declare type MercuryLinkRiskToFocusAreasPayload = Payload & {
|
|
|
144556
145844
|
errors?: Maybe<Array<MutationError>>;
|
|
144557
145845
|
success: Scalars['Boolean']['output'];
|
|
144558
145846
|
};
|
|
145847
|
+
export declare type MercuryLinkWorkToBenefitItemInput = {
|
|
145848
|
+
benefitItemId: Scalars['ID']['input'];
|
|
145849
|
+
workIds: Array<Scalars['ID']['input']>;
|
|
145850
|
+
};
|
|
145851
|
+
export declare type MercuryLinkWorkToBenefitItemPayload = Payload & {
|
|
145852
|
+
__typename?: 'MercuryLinkWorkToBenefitItemPayload';
|
|
145853
|
+
errors?: Maybe<Array<MutationError>>;
|
|
145854
|
+
success: Scalars['Boolean']['output'];
|
|
145855
|
+
};
|
|
144559
145856
|
export declare type MercuryLinkWorkToChangeProposalInput = {
|
|
144560
145857
|
changeProposalId: Scalars['ID']['input'];
|
|
144561
145858
|
workIds: Array<Scalars['ID']['input']>;
|
|
@@ -145001,6 +146298,7 @@ export declare type MercuryNormalizedWorkSearchFiltersInput = {
|
|
|
145001
146298
|
source?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
145002
146299
|
status?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
145003
146300
|
targetDate?: InputMaybe<MercuryNormalizedWorkTargetDateInput>;
|
|
146301
|
+
targetDateRange?: InputMaybe<MercuryNormalizedWorkTargetDateRangeInput>;
|
|
145004
146302
|
type?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
145005
146303
|
};
|
|
145006
146304
|
export declare enum MercuryNormalizedWorkSortField {
|
|
@@ -145029,6 +146327,10 @@ export declare type MercuryNormalizedWorkTargetDateInput = {
|
|
|
145029
146327
|
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
145030
146328
|
targetDateType?: InputMaybe<MercuryProjectTargetDateType>;
|
|
145031
146329
|
};
|
|
146330
|
+
export declare type MercuryNormalizedWorkTargetDateRangeInput = {
|
|
146331
|
+
targetDateMax?: InputMaybe<Scalars['String']['input']>;
|
|
146332
|
+
targetDateMin?: InputMaybe<Scalars['String']['input']>;
|
|
146333
|
+
};
|
|
145032
146334
|
export declare type MercuryNumberCustomField = MercuryCustomField & {
|
|
145033
146335
|
__typename?: 'MercuryNumberCustomField';
|
|
145034
146336
|
createdBy?: Maybe<User>;
|
|
@@ -145333,9 +146635,11 @@ export declare type MercuryProviderOrchestrationMutationApi = {
|
|
|
145333
146635
|
__typename?: 'MercuryProviderOrchestrationMutationApi';
|
|
145334
146636
|
deleteFocusAreaWorkLinks?: Maybe<MercuryDeleteFocusAreaWorkLinksPayload>;
|
|
145335
146637
|
linkAtlassianWorkToFocusArea?: Maybe<MercuryLinkAtlassianWorkToFocusAreaPayload>;
|
|
146638
|
+
linkWorkToBenefitItem?: Maybe<MercuryLinkWorkToBenefitItemPayload>;
|
|
145336
146639
|
linkWorkToChangeProposal?: Maybe<MercuryLinkWorkToChangeProposalPayload>;
|
|
145337
146640
|
linkWorkToFocusArea?: Maybe<MercuryLinkWorkToFocusAreaPayload>;
|
|
145338
146641
|
linkWorkToRisk?: Maybe<MercuryLinkWorkToRiskPayload>;
|
|
146642
|
+
unlinkWorkFromBenefitItem?: Maybe<MercuryUnlinkWorkFromBenefitItemPayload>;
|
|
145339
146643
|
unlinkWorkFromChangeProposal?: Maybe<MercuryUnlinkWorkFromChangeProposalPayload>;
|
|
145340
146644
|
unlinkWorkFromRisk?: Maybe<MercuryUnlinkWorkFromRiskPayload>;
|
|
145341
146645
|
};
|
|
@@ -145345,6 +146649,9 @@ export declare type MercuryProviderOrchestrationMutationApiDeleteFocusAreaWorkLi
|
|
|
145345
146649
|
export declare type MercuryProviderOrchestrationMutationApiLinkAtlassianWorkToFocusAreaArgs = {
|
|
145346
146650
|
input: MercuryLinkAtlassianWorkToFocusAreaInput;
|
|
145347
146651
|
};
|
|
146652
|
+
export declare type MercuryProviderOrchestrationMutationApiLinkWorkToBenefitItemArgs = {
|
|
146653
|
+
input: MercuryLinkWorkToBenefitItemInput;
|
|
146654
|
+
};
|
|
145348
146655
|
export declare type MercuryProviderOrchestrationMutationApiLinkWorkToChangeProposalArgs = {
|
|
145349
146656
|
input: MercuryLinkWorkToChangeProposalInput;
|
|
145350
146657
|
};
|
|
@@ -145354,6 +146661,9 @@ export declare type MercuryProviderOrchestrationMutationApiLinkWorkToFocusAreaAr
|
|
|
145354
146661
|
export declare type MercuryProviderOrchestrationMutationApiLinkWorkToRiskArgs = {
|
|
145355
146662
|
input: MercuryLinkWorkToRiskInput;
|
|
145356
146663
|
};
|
|
146664
|
+
export declare type MercuryProviderOrchestrationMutationApiUnlinkWorkFromBenefitItemArgs = {
|
|
146665
|
+
input: MercuryUnlinkWorkFromBenefitItemInput;
|
|
146666
|
+
};
|
|
145357
146667
|
export declare type MercuryProviderOrchestrationMutationApiUnlinkWorkFromChangeProposalArgs = {
|
|
145358
146668
|
input: MercuryUnlinkWorkFromChangeProposalInput;
|
|
145359
146669
|
};
|
|
@@ -145512,6 +146822,15 @@ export declare type MercuryProviderWorkType = {
|
|
|
145512
146822
|
name: Scalars['String']['output'];
|
|
145513
146823
|
providerKey: Scalars['String']['output'];
|
|
145514
146824
|
};
|
|
146825
|
+
export declare type MercuryPublishBusinessDomainInput = {
|
|
146826
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
146827
|
+
id: Scalars['ID']['input'];
|
|
146828
|
+
};
|
|
146829
|
+
export declare type MercuryPublishBusinessDomainPayload = Payload & {
|
|
146830
|
+
__typename?: 'MercuryPublishBusinessDomainPayload';
|
|
146831
|
+
errors?: Maybe<Array<MutationError>>;
|
|
146832
|
+
success: Scalars['Boolean']['output'];
|
|
146833
|
+
};
|
|
145515
146834
|
export declare type MercuryPublishFocusAreaInput = {
|
|
145516
146835
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
145517
146836
|
id: Scalars['ID']['input'];
|
|
@@ -145686,12 +147005,35 @@ export declare type MercuryQueryApiSearchFocusAreaActivityHistoryArgs = {
|
|
|
145686
147005
|
export declare type MercuryQueryApiWorkspaceContextArgs = {
|
|
145687
147006
|
cloudId: Scalars['ID']['input'];
|
|
145688
147007
|
};
|
|
147008
|
+
export declare type MercuryRankBusinessDomainsInBusinessDomainViewInput = {
|
|
147009
|
+
businessDomainViewId: Scalars['ID']['input'];
|
|
147010
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
147011
|
+
rankVersion: Scalars['String']['input'];
|
|
147012
|
+
rankedBusinessDomains: Array<MercuryRankedBusinessDomain>;
|
|
147013
|
+
};
|
|
147014
|
+
export declare type MercuryRankBusinessDomainsInBusinessDomainViewPayload = Payload & {
|
|
147015
|
+
__typename?: 'MercuryRankBusinessDomainsInBusinessDomainViewPayload';
|
|
147016
|
+
errorCode?: Maybe<MercuryBusinessDomainRankingValidationErrorCode>;
|
|
147017
|
+
errors?: Maybe<Array<MutationError>>;
|
|
147018
|
+
rankedBusinessDomainView?: Maybe<MercuryBusinessDomainView>;
|
|
147019
|
+
success: Scalars['Boolean']['output'];
|
|
147020
|
+
};
|
|
147021
|
+
export declare type MercuryRankedBusinessDomain = {
|
|
147022
|
+
businessDomainId: Scalars['ID']['input'];
|
|
147023
|
+
newRank: Scalars['Int']['input'];
|
|
147024
|
+
oldRank: Scalars['Int']['input'];
|
|
147025
|
+
};
|
|
145689
147026
|
export declare type MercuryRankedChangeProposal = {
|
|
145690
147027
|
__typename?: 'MercuryRankedChangeProposal';
|
|
145691
147028
|
changeProposal?: Maybe<MercuryChangeProposal>;
|
|
145692
147029
|
changeProposalsViewId: Scalars['ID']['output'];
|
|
145693
147030
|
rank?: Maybe<Scalars['Int']['output']>;
|
|
145694
147031
|
};
|
|
147032
|
+
export declare type MercuryRecreateBusinessDomainViewBusinessDomainsInput = {
|
|
147033
|
+
businessDomainIds: Array<Scalars['ID']['input']>;
|
|
147034
|
+
id: Scalars['ID']['input'];
|
|
147035
|
+
rankVersion?: InputMaybe<Scalars['String']['input']>;
|
|
147036
|
+
};
|
|
145695
147037
|
export declare type MercuryRecreatePortfolioFocusAreasInput = {
|
|
145696
147038
|
cloudId: Scalars['ID']['input'];
|
|
145697
147039
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
@@ -145708,6 +147050,15 @@ export declare type MercuryRemoveTagsFromProposalPayload = Payload & {
|
|
|
145708
147050
|
success: Scalars['Boolean']['output'];
|
|
145709
147051
|
updatedChangeProposal?: Maybe<MercuryChangeProposal>;
|
|
145710
147052
|
};
|
|
147053
|
+
export declare type MercuryRemoveUserAccessToBusinessDomainInput = {
|
|
147054
|
+
businessDomainAri: Scalars['ID']['input'];
|
|
147055
|
+
principalIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
147056
|
+
};
|
|
147057
|
+
export declare type MercuryRemoveUserAccessToBusinessDomainPayload = Payload & {
|
|
147058
|
+
__typename?: 'MercuryRemoveUserAccessToBusinessDomainPayload';
|
|
147059
|
+
errors?: Maybe<Array<MutationError>>;
|
|
147060
|
+
success: Scalars['Boolean']['output'];
|
|
147061
|
+
};
|
|
145711
147062
|
export declare type MercuryRemoveUserAccessToFocusAreaInput = {
|
|
145712
147063
|
focusAreaAri: Scalars['ID']['input'];
|
|
145713
147064
|
principalIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -145717,6 +147068,15 @@ export declare type MercuryRemoveUserAccessToFocusAreaPayload = Payload & {
|
|
|
145717
147068
|
errors?: Maybe<Array<MutationError>>;
|
|
145718
147069
|
success: Scalars['Boolean']['output'];
|
|
145719
147070
|
};
|
|
147071
|
+
export declare type MercuryRemoveWatcherFromBusinessDomainInput = {
|
|
147072
|
+
businessDomainId: Scalars['ID']['input'];
|
|
147073
|
+
userId: Scalars['ID']['input'];
|
|
147074
|
+
};
|
|
147075
|
+
export declare type MercuryRemoveWatcherFromBusinessDomainPayload = Payload & {
|
|
147076
|
+
__typename?: 'MercuryRemoveWatcherFromBusinessDomainPayload';
|
|
147077
|
+
errors?: Maybe<Array<MutationError>>;
|
|
147078
|
+
success: Scalars['Boolean']['output'];
|
|
147079
|
+
};
|
|
145720
147080
|
export declare type MercuryRemoveWatcherFromFocusAreaInput = {
|
|
145721
147081
|
cloudId: Scalars['ID']['input'];
|
|
145722
147082
|
focusAreaId: Scalars['ID']['input'];
|
|
@@ -145746,6 +147106,20 @@ export declare type MercuryRenameFocusAreaChangeInput = {
|
|
|
145746
147106
|
note?: InputMaybe<Scalars['String']['input']>;
|
|
145747
147107
|
targetFocusAreaId: Scalars['ID']['input'];
|
|
145748
147108
|
};
|
|
147109
|
+
export declare type MercuryReorderBusinessDomainTypesInput = {
|
|
147110
|
+
businessDomainHierarchyId?: InputMaybe<Scalars['ID']['input']>;
|
|
147111
|
+
businessDomainTypeIds: Array<Scalars['ID']['input']>;
|
|
147112
|
+
cloudId: Scalars['ID']['input'];
|
|
147113
|
+
dryRun?: InputMaybe<Scalars['Boolean']['input']>;
|
|
147114
|
+
};
|
|
147115
|
+
export declare type MercuryReorderBusinessDomainTypesPayload = Payload & {
|
|
147116
|
+
__typename?: 'MercuryReorderBusinessDomainTypesPayload';
|
|
147117
|
+
deletedLinks?: Maybe<Array<MercuryBusinessDomainLink>>;
|
|
147118
|
+
dryRun?: Maybe<Scalars['Boolean']['output']>;
|
|
147119
|
+
errors?: Maybe<Array<MutationError>>;
|
|
147120
|
+
reorderedBusinessDomainTypes?: Maybe<Array<MercuryBusinessDomainType>>;
|
|
147121
|
+
success: Scalars['Boolean']['output'];
|
|
147122
|
+
};
|
|
145749
147123
|
export declare type MercuryReorderCustomFieldDefinitionOptionsInput = {
|
|
145750
147124
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
145751
147125
|
optionIds: Array<Scalars['ID']['input']>;
|
|
@@ -145836,6 +147210,7 @@ export declare type MercuryRestrictedWork = {
|
|
|
145836
147210
|
};
|
|
145837
147211
|
export declare type MercuryRisk = Node & {
|
|
145838
147212
|
__typename?: 'MercuryRisk';
|
|
147213
|
+
comments?: Maybe<MercuryThreadedCommentConnection>;
|
|
145839
147214
|
createdDate: Scalars['String']['output'];
|
|
145840
147215
|
description?: Maybe<Scalars['String']['output']>;
|
|
145841
147216
|
id: Scalars['ID']['output'];
|
|
@@ -145854,6 +147229,11 @@ export declare type MercuryRisk = Node & {
|
|
|
145854
147229
|
targetDate?: Maybe<MercuryRiskTargetDate>;
|
|
145855
147230
|
updatedDate: Scalars['String']['output'];
|
|
145856
147231
|
};
|
|
147232
|
+
export declare type MercuryRiskCommentsArgs = {
|
|
147233
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
147234
|
+
cloudId: Scalars['ID']['input'];
|
|
147235
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
147236
|
+
};
|
|
145857
147237
|
export declare type MercuryRiskRiskStatusUpdatesArgs = {
|
|
145858
147238
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
145859
147239
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -146071,6 +147451,27 @@ export declare type MercurySetBaselinePayload = Payload & {
|
|
|
146071
147451
|
setBaseline?: Maybe<MercuryBaselineDetails>;
|
|
146072
147452
|
success: Scalars['Boolean']['output'];
|
|
146073
147453
|
};
|
|
147454
|
+
export declare type MercurySetBusinessDomainCustomFieldInput = {
|
|
147455
|
+
businessDomainId: Scalars['ID']['input'];
|
|
147456
|
+
coreField?: InputMaybe<MercuryCustomFieldInput>;
|
|
147457
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
147458
|
+
};
|
|
147459
|
+
export declare type MercurySetBusinessDomainCustomFieldPayload = Payload & {
|
|
147460
|
+
__typename?: 'MercurySetBusinessDomainCustomFieldPayload';
|
|
147461
|
+
customField?: Maybe<MercuryCustomField>;
|
|
147462
|
+
errors?: Maybe<Array<MutationError>>;
|
|
147463
|
+
success: Scalars['Boolean']['output'];
|
|
147464
|
+
};
|
|
147465
|
+
export declare type MercurySetBusinessDomainCustomFieldsInput = {
|
|
147466
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
147467
|
+
customFields: Array<MercurySetBusinessDomainCustomFieldInput>;
|
|
147468
|
+
};
|
|
147469
|
+
export declare type MercurySetBusinessDomainCustomFieldsPayload = Payload & {
|
|
147470
|
+
__typename?: 'MercurySetBusinessDomainCustomFieldsPayload';
|
|
147471
|
+
customFields?: Maybe<Array<MercuryCustomField>>;
|
|
147472
|
+
errors?: Maybe<Array<MutationError>>;
|
|
147473
|
+
success: Scalars['Boolean']['output'];
|
|
147474
|
+
};
|
|
146074
147475
|
export declare type MercurySetChangeProposalCustomFieldInput = {
|
|
146075
147476
|
changeProposalId: Scalars['ID']['input'];
|
|
146076
147477
|
coreField?: InputMaybe<MercuryCustomFieldInput>;
|
|
@@ -146182,6 +147583,14 @@ export declare type MercurySpendAggregation = {
|
|
|
146182
147583
|
aggregatedSpend?: Maybe<Scalars['BigDecimal']['output']>;
|
|
146183
147584
|
totalAssignedSpend?: Maybe<Scalars['BigDecimal']['output']>;
|
|
146184
147585
|
};
|
|
147586
|
+
export declare type MercuryStarBusinessDomainInput = {
|
|
147587
|
+
businessDomainId: Scalars['ID']['input'];
|
|
147588
|
+
};
|
|
147589
|
+
export declare type MercuryStarBusinessDomainPayload = Payload & {
|
|
147590
|
+
__typename?: 'MercuryStarBusinessDomainPayload';
|
|
147591
|
+
errors?: Maybe<Array<MutationError>>;
|
|
147592
|
+
success: Scalars['Boolean']['output'];
|
|
147593
|
+
};
|
|
146185
147594
|
export declare type MercuryStarFocusAreaInput = {
|
|
146186
147595
|
focusAreaId: Scalars['ID']['input'];
|
|
146187
147596
|
};
|
|
@@ -146614,6 +148023,17 @@ export declare type MercuryStrategicEventsQueryApiStrategicEventsSearchArgs = {
|
|
|
146614
148023
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
146615
148024
|
sort?: InputMaybe<Array<InputMaybe<MercuryStrategicEventSort>>>;
|
|
146616
148025
|
};
|
|
148026
|
+
export declare type MercurySubBusinessDomainCountByStatusHealth = {
|
|
148027
|
+
__typename?: 'MercurySubBusinessDomainCountByStatusHealth';
|
|
148028
|
+
atRisk?: Maybe<Scalars['Int']['output']>;
|
|
148029
|
+
completed?: Maybe<Scalars['Int']['output']>;
|
|
148030
|
+
inProgress?: Maybe<Scalars['Int']['output']>;
|
|
148031
|
+
offTrack?: Maybe<Scalars['Int']['output']>;
|
|
148032
|
+
onTrack?: Maybe<Scalars['Int']['output']>;
|
|
148033
|
+
paused?: Maybe<Scalars['Int']['output']>;
|
|
148034
|
+
pending?: Maybe<Scalars['Int']['output']>;
|
|
148035
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
148036
|
+
};
|
|
146617
148037
|
export declare type MercurySubscriptionApi = {
|
|
146618
148038
|
__typename?: 'MercurySubscriptionApi';
|
|
146619
148039
|
onUpdateChangeProposals?: Maybe<MercuryOnUpdateChangeProposalsPayload>;
|
|
@@ -146661,6 +148081,33 @@ export declare type MercuryTextCustomFieldDefinition = MercuryCustomFieldDefinit
|
|
|
146661
148081
|
export declare type MercuryTextCustomFieldInput = {
|
|
146662
148082
|
textValue?: InputMaybe<Scalars['String']['input']>;
|
|
146663
148083
|
};
|
|
148084
|
+
export declare type MercuryThreadedComment = Node & {
|
|
148085
|
+
__typename?: 'MercuryThreadedComment';
|
|
148086
|
+
commentText: Scalars['String']['output'];
|
|
148087
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
148088
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
148089
|
+
createdBy?: Maybe<User>;
|
|
148090
|
+
id: Scalars['ID']['output'];
|
|
148091
|
+
parentComment?: Maybe<MercuryThreadedComment>;
|
|
148092
|
+
parentId: Scalars['ID']['output'];
|
|
148093
|
+
replies?: Maybe<MercuryThreadedCommentConnection>;
|
|
148094
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
148095
|
+
};
|
|
148096
|
+
export declare type MercuryThreadedCommentRepliesArgs = {
|
|
148097
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
148098
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
148099
|
+
};
|
|
148100
|
+
export declare type MercuryThreadedCommentConnection = {
|
|
148101
|
+
__typename?: 'MercuryThreadedCommentConnection';
|
|
148102
|
+
edges?: Maybe<Array<MercuryThreadedCommentEdge>>;
|
|
148103
|
+
pageInfo: PageInfo;
|
|
148104
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
148105
|
+
};
|
|
148106
|
+
export declare type MercuryThreadedCommentEdge = {
|
|
148107
|
+
__typename?: 'MercuryThreadedCommentEdge';
|
|
148108
|
+
cursor: Scalars['String']['output'];
|
|
148109
|
+
node?: Maybe<MercuryThreadedComment>;
|
|
148110
|
+
};
|
|
146664
148111
|
export declare type MercuryTownsquareProjectInsight = MercuryInsight & {
|
|
146665
148112
|
__typename?: 'MercuryTownsquareProjectInsight';
|
|
146666
148113
|
ari: Scalars['ID']['output'];
|
|
@@ -146672,6 +148119,11 @@ export declare type MercuryTownsquareProjectInsight = MercuryInsight & {
|
|
|
146672
148119
|
summary?: Maybe<Scalars['String']['output']>;
|
|
146673
148120
|
title?: Maybe<Scalars['String']['output']>;
|
|
146674
148121
|
};
|
|
148122
|
+
export declare type MercuryTransitionBusinessDomainStatusInput = {
|
|
148123
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
148124
|
+
id: Scalars['ID']['input'];
|
|
148125
|
+
statusTransitionId: Scalars['ID']['input'];
|
|
148126
|
+
};
|
|
146675
148127
|
export declare type MercuryTransitionChangeProposalPayload = Payload & {
|
|
146676
148128
|
__typename?: 'MercuryTransitionChangeProposalPayload';
|
|
146677
148129
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -146709,6 +148161,14 @@ export declare type MercuryTransitionStrategicEventStatusInput = {
|
|
|
146709
148161
|
id: Scalars['ID']['input'];
|
|
146710
148162
|
statusTransitionId: Scalars['ID']['input'];
|
|
146711
148163
|
};
|
|
148164
|
+
export declare type MercuryUnStarBusinessDomainInput = {
|
|
148165
|
+
businessDomainId: Scalars['ID']['input'];
|
|
148166
|
+
};
|
|
148167
|
+
export declare type MercuryUnStarBusinessDomainPayload = Payload & {
|
|
148168
|
+
__typename?: 'MercuryUnStarBusinessDomainPayload';
|
|
148169
|
+
errors?: Maybe<Array<MutationError>>;
|
|
148170
|
+
success: Scalars['Boolean']['output'];
|
|
148171
|
+
};
|
|
146712
148172
|
export declare type MercuryUnStarFocusAreaInput = {
|
|
146713
148173
|
focusAreaId: Scalars['ID']['input'];
|
|
146714
148174
|
};
|
|
@@ -146717,6 +148177,16 @@ export declare type MercuryUnStarFocusAreaPayload = Payload & {
|
|
|
146717
148177
|
errors?: Maybe<Array<MutationError>>;
|
|
146718
148178
|
success: Scalars['Boolean']['output'];
|
|
146719
148179
|
};
|
|
148180
|
+
export declare type MercuryUnarchiveBusinessDomainInput = {
|
|
148181
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
148182
|
+
comment?: InputMaybe<Scalars['String']['input']>;
|
|
148183
|
+
id: Scalars['ID']['input'];
|
|
148184
|
+
};
|
|
148185
|
+
export declare type MercuryUnarchiveBusinessDomainPayload = Payload & {
|
|
148186
|
+
__typename?: 'MercuryUnarchiveBusinessDomainPayload';
|
|
148187
|
+
errors?: Maybe<Array<MutationError>>;
|
|
148188
|
+
success: Scalars['Boolean']['output'];
|
|
148189
|
+
};
|
|
146720
148190
|
export declare type MercuryUnarchiveFocusAreaInput = {
|
|
146721
148191
|
cloudId: Scalars['ID']['input'];
|
|
146722
148192
|
comment?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -146754,6 +148224,15 @@ export declare type MercuryUnlinkRiskFromFocusAreasPayload = Payload & {
|
|
|
146754
148224
|
errors?: Maybe<Array<MutationError>>;
|
|
146755
148225
|
success: Scalars['Boolean']['output'];
|
|
146756
148226
|
};
|
|
148227
|
+
export declare type MercuryUnlinkWorkFromBenefitItemInput = {
|
|
148228
|
+
benefitItemId: Scalars['ID']['input'];
|
|
148229
|
+
workIds: Array<Scalars['ID']['input']>;
|
|
148230
|
+
};
|
|
148231
|
+
export declare type MercuryUnlinkWorkFromBenefitItemPayload = Payload & {
|
|
148232
|
+
__typename?: 'MercuryUnlinkWorkFromBenefitItemPayload';
|
|
148233
|
+
errors?: Maybe<Array<MutationError>>;
|
|
148234
|
+
success: Scalars['Boolean']['output'];
|
|
148235
|
+
};
|
|
146757
148236
|
export declare type MercuryUnlinkWorkFromChangeProposalInput = {
|
|
146758
148237
|
changeProposalId: Scalars['ID']['input'];
|
|
146759
148238
|
workIds: Array<Scalars['ID']['input']>;
|
|
@@ -146843,6 +148322,87 @@ export declare type MercuryUpdateBenefitTypePayload = Payload & {
|
|
|
146843
148322
|
success: Scalars['Boolean']['output'];
|
|
146844
148323
|
updatedBenefitType?: Maybe<MercuryBenefitType>;
|
|
146845
148324
|
};
|
|
148325
|
+
export declare type MercuryUpdateBusinessDomainAboutContentInput = {
|
|
148326
|
+
aboutContent: Scalars['String']['input'];
|
|
148327
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
148328
|
+
id: Scalars['ID']['input'];
|
|
148329
|
+
};
|
|
148330
|
+
export declare type MercuryUpdateBusinessDomainHierarchyNameInput = {
|
|
148331
|
+
id: Scalars['ID']['input'];
|
|
148332
|
+
name: Scalars['String']['input'];
|
|
148333
|
+
};
|
|
148334
|
+
export declare type MercuryUpdateBusinessDomainHierarchyPayload = Payload & {
|
|
148335
|
+
__typename?: 'MercuryUpdateBusinessDomainHierarchyPayload';
|
|
148336
|
+
errors?: Maybe<Array<MutationError>>;
|
|
148337
|
+
success: Scalars['Boolean']['output'];
|
|
148338
|
+
updatedBusinessDomainHierarchy?: Maybe<MercuryBusinessDomainHierarchy>;
|
|
148339
|
+
};
|
|
148340
|
+
export declare type MercuryUpdateBusinessDomainNameInput = {
|
|
148341
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
148342
|
+
id: Scalars['ID']['input'];
|
|
148343
|
+
name: Scalars['String']['input'];
|
|
148344
|
+
};
|
|
148345
|
+
export declare type MercuryUpdateBusinessDomainOwnerInput = {
|
|
148346
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
148347
|
+
id: Scalars['ID']['input'];
|
|
148348
|
+
owner: Scalars['ID']['input'];
|
|
148349
|
+
};
|
|
148350
|
+
export declare type MercuryUpdateBusinessDomainPayload = Payload & {
|
|
148351
|
+
__typename?: 'MercuryUpdateBusinessDomainPayload';
|
|
148352
|
+
errors?: Maybe<Array<MutationError>>;
|
|
148353
|
+
success: Scalars['Boolean']['output'];
|
|
148354
|
+
updatedBusinessDomain?: Maybe<MercuryBusinessDomain>;
|
|
148355
|
+
};
|
|
148356
|
+
export declare type MercuryUpdateBusinessDomainStatusUpdateInput = {
|
|
148357
|
+
id: Scalars['ID']['input'];
|
|
148358
|
+
newTargetDate?: InputMaybe<MercuryBusinessDomainTargetDateInput>;
|
|
148359
|
+
statusTransitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
148360
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
148361
|
+
};
|
|
148362
|
+
export declare type MercuryUpdateBusinessDomainStatusUpdatePayload = Payload & {
|
|
148363
|
+
__typename?: 'MercuryUpdateBusinessDomainStatusUpdatePayload';
|
|
148364
|
+
errors?: Maybe<Array<MutationError>>;
|
|
148365
|
+
success: Scalars['Boolean']['output'];
|
|
148366
|
+
updatedBusinessDomainStatusUpdate?: Maybe<MercuryBusinessDomainStatusUpdate>;
|
|
148367
|
+
};
|
|
148368
|
+
export declare type MercuryUpdateBusinessDomainTargetDateInput = {
|
|
148369
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
148370
|
+
id: Scalars['ID']['input'];
|
|
148371
|
+
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
148372
|
+
targetDateType?: InputMaybe<MercuryBusinessDomainTargetDateType>;
|
|
148373
|
+
};
|
|
148374
|
+
export declare type MercuryUpdateBusinessDomainTypeInput = {
|
|
148375
|
+
businessDomainTypeId: Scalars['ID']['input'];
|
|
148376
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
148377
|
+
id: Scalars['ID']['input'];
|
|
148378
|
+
};
|
|
148379
|
+
export declare type MercuryUpdateBusinessDomainTypeNameInput = {
|
|
148380
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
148381
|
+
id: Scalars['ID']['input'];
|
|
148382
|
+
name: Scalars['String']['input'];
|
|
148383
|
+
};
|
|
148384
|
+
export declare type MercuryUpdateBusinessDomainTypeNamePayload = Payload & {
|
|
148385
|
+
__typename?: 'MercuryUpdateBusinessDomainTypeNamePayload';
|
|
148386
|
+
errors?: Maybe<Array<MutationError>>;
|
|
148387
|
+
success: Scalars['Boolean']['output'];
|
|
148388
|
+
updatedBusinessDomainType?: Maybe<MercuryBusinessDomainType>;
|
|
148389
|
+
};
|
|
148390
|
+
export declare type MercuryUpdateBusinessDomainTypePayload = Payload & {
|
|
148391
|
+
__typename?: 'MercuryUpdateBusinessDomainTypePayload';
|
|
148392
|
+
errors?: Maybe<Array<MutationError>>;
|
|
148393
|
+
success: Scalars['Boolean']['output'];
|
|
148394
|
+
updatedBusinessDomain?: Maybe<MercuryBusinessDomain>;
|
|
148395
|
+
};
|
|
148396
|
+
export declare type MercuryUpdateBusinessDomainViewNameInput = {
|
|
148397
|
+
id: Scalars['ID']['input'];
|
|
148398
|
+
name: Scalars['String']['input'];
|
|
148399
|
+
};
|
|
148400
|
+
export declare type MercuryUpdateBusinessDomainViewPayload = Payload & {
|
|
148401
|
+
__typename?: 'MercuryUpdateBusinessDomainViewPayload';
|
|
148402
|
+
errors?: Maybe<Array<MutationError>>;
|
|
148403
|
+
success: Scalars['Boolean']['output'];
|
|
148404
|
+
updatedBusinessDomainView?: Maybe<MercuryBusinessDomainView>;
|
|
148405
|
+
};
|
|
146846
148406
|
export declare type MercuryUpdateChangeFocusAreaInput = {
|
|
146847
148407
|
focusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
146848
148408
|
};
|
|
@@ -147253,6 +148813,17 @@ export declare type MercuryUpdateStrategicEventTargetDateInput = {
|
|
|
147253
148813
|
id: Scalars['ID']['input'];
|
|
147254
148814
|
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
147255
148815
|
};
|
|
148816
|
+
export declare type MercuryUpdateThreadedCommentInput = {
|
|
148817
|
+
cloudId: Scalars['ID']['input'];
|
|
148818
|
+
commentText: Scalars['String']['input'];
|
|
148819
|
+
id: Scalars['ID']['input'];
|
|
148820
|
+
};
|
|
148821
|
+
export declare type MercuryUpdateThreadedCommentPayload = Payload & {
|
|
148822
|
+
__typename?: 'MercuryUpdateThreadedCommentPayload';
|
|
148823
|
+
errors?: Maybe<Array<MutationError>>;
|
|
148824
|
+
success: Scalars['Boolean']['output'];
|
|
148825
|
+
updatedComment?: Maybe<MercuryThreadedComment>;
|
|
148826
|
+
};
|
|
147256
148827
|
export declare type MercuryUpdatedField = {
|
|
147257
148828
|
__typename?: 'MercuryUpdatedField';
|
|
147258
148829
|
field?: Maybe<Scalars['String']['output']>;
|
|
@@ -147275,6 +148846,17 @@ export declare type MercuryUserEdge = {
|
|
|
147275
148846
|
cursor: Scalars['String']['output'];
|
|
147276
148847
|
node?: Maybe<User>;
|
|
147277
148848
|
};
|
|
148849
|
+
export declare type MercuryValidateBusinessDomainsForRankingInput = {
|
|
148850
|
+
businessDomainIds: Array<Scalars['ID']['input']>;
|
|
148851
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
148852
|
+
rankingViewId?: InputMaybe<Scalars['ID']['input']>;
|
|
148853
|
+
};
|
|
148854
|
+
export declare type MercuryValidateBusinessDomainsForRankingPayload = Payload & {
|
|
148855
|
+
__typename?: 'MercuryValidateBusinessDomainsForRankingPayload';
|
|
148856
|
+
errors?: Maybe<Array<MutationError>>;
|
|
148857
|
+
success: Scalars['Boolean']['output'];
|
|
148858
|
+
validation?: Maybe<MercuryBusinessDomainRankingValidation>;
|
|
148859
|
+
};
|
|
147278
148860
|
export declare type MercuryValidateFocusAreasForRankingInput = {
|
|
147279
148861
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
147280
148862
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
@@ -147670,6 +149252,7 @@ export declare type Mutation = {
|
|
|
147670
149252
|
agentWorkspace_updateSkill?: Maybe<AgentWorkspaceSkillUpdatePayload>;
|
|
147671
149253
|
agentWorkspace_updateSkillProficiency?: Maybe<AgentWorkspaceUpdateSkillProficiencyPayload>;
|
|
147672
149254
|
agentWorkspace_updateSmartRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
|
|
149255
|
+
aiCoreApi_initiateCsvExport?: Maybe<AiCoreApiCsvExportResult>;
|
|
147673
149256
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
147674
149257
|
appStorage?: Maybe<AppStorageMutation>;
|
|
147675
149258
|
appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
|
|
@@ -147782,6 +149365,7 @@ export declare type Mutation = {
|
|
|
147782
149365
|
avp_updateChart?: Maybe<AvpUpdateChartPayload>;
|
|
147783
149366
|
avp_updateDashboard?: Maybe<AvpUpdateDashboardPayload>;
|
|
147784
149367
|
avp_updateDashboardFilter?: Maybe<AvpUpdateDashboardFilterPayload>;
|
|
149368
|
+
avp_updateDashboardIdentityAccess?: Maybe<AvpUpdateDashboardIdentityAccessPayload>;
|
|
147785
149369
|
avp_updateDashboardResourcePermission?: Maybe<AvpUpdateDashboardResourcePermissionPayload>;
|
|
147786
149370
|
avp_updateDashboardRowHeight?: Maybe<AvpUpdateDashboardRowHeightPayload>;
|
|
147787
149371
|
avp_updateDashboardRowNumElements?: Maybe<AvpUpdateDashboardRowNumElementsPayload>;
|
|
@@ -147923,6 +149507,7 @@ export declare type Mutation = {
|
|
|
147923
149507
|
confluence_sendToDesktop?: Maybe<ConfluenceDesktopSendPayload>;
|
|
147924
149508
|
confluence_setContentApprovalsSpaceSettings?: Maybe<ConfluenceContentApprovalsSpaceSettingsPayload>;
|
|
147925
149509
|
confluence_setContentGeneralAccessMode?: Maybe<ConfluenceSetContentGeneralAccessModePayload>;
|
|
149510
|
+
confluence_setCutoverRoleConfig?: Maybe<ConfluenceSetCutoverRoleConfigPayload>;
|
|
147926
149511
|
confluence_setSubCalendarReminder?: Maybe<ConfluenceSetSubCalendarReminderPayload>;
|
|
147927
149512
|
confluence_shareContent?: Maybe<ConfluenceShareContentPayload>;
|
|
147928
149513
|
confluence_subscribeCalendars?: Maybe<ConfluenceSubscribeCalendarPayload>;
|
|
@@ -147949,6 +149534,7 @@ export declare type Mutation = {
|
|
|
147949
149534
|
confluence_updateCustomRole?: Maybe<ConfluenceUpdateCustomRolePayload>;
|
|
147950
149535
|
confluence_updateDefaultTitleEmoji?: Maybe<ConfluenceUpdateDefaultTitleEmojiPayload>;
|
|
147951
149536
|
confluence_updateInstance?: Maybe<ConfluenceUpdateInstancePayload>;
|
|
149537
|
+
confluence_updateMarkdownMode?: Maybe<ConfluenceUpdateMarkdownModePayload>;
|
|
147952
149538
|
confluence_updateNcsPdfExportConfiguration?: Maybe<ConfluenceUpdateNcsPdfExportConfigurationPayload>;
|
|
147953
149539
|
confluence_updatePage?: Maybe<ConfluenceUpdatePagePayload>;
|
|
147954
149540
|
confluence_updateQuestion?: Maybe<ConfluenceUpdateQuestionPayload>;
|
|
@@ -147958,6 +149544,7 @@ export declare type Mutation = {
|
|
|
147958
149544
|
confluence_updateShareableLinkSpaceConfig?: Maybe<ConfluenceUpdateShareableLinkSpaceConfigPayload>;
|
|
147959
149545
|
confluence_updateSmartSpaceOverview?: Maybe<ConfluenceUpdateSmartSpaceOverviewPayload>;
|
|
147960
149546
|
confluence_updateSpaceAccessRequestSettings?: Maybe<ConfluenceUpdateAccessRequestSettingsPayload>;
|
|
149547
|
+
confluence_updateSpaceAnalyticsPermissions?: Maybe<ConfluenceUpdateSpaceAnalyticsPermissionsPayload>;
|
|
147961
149548
|
confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
|
|
147962
149549
|
confluence_updateTeamPresenceSpaceSettings?: Maybe<ConfluenceUpdateTeamPresenceSpaceSettingsPayload>;
|
|
147963
149550
|
confluence_updateTitleEmoji?: Maybe<ConfluenceUpdateTitleEmojiPayload>;
|
|
@@ -148448,6 +150035,8 @@ export declare type Mutation = {
|
|
|
148448
150035
|
marketplaceConsole: MarketplaceConsoleMutationApi;
|
|
148449
150036
|
marketplaceStore?: Maybe<MarketplaceStoreMutationApi>;
|
|
148450
150037
|
mercury?: Maybe<MercuryMutationApi>;
|
|
150038
|
+
mercury_businessDomains?: Maybe<MercuryBusinessDomainsMutationApi>;
|
|
150039
|
+
mercury_comments?: Maybe<MercuryCommentMutationApi>;
|
|
148451
150040
|
mercury_funds?: Maybe<MercuryFundsMutationApi>;
|
|
148452
150041
|
mercury_insights?: Maybe<MercuryInsightsMutationApi>;
|
|
148453
150042
|
mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationMutationApi>;
|
|
@@ -148464,6 +150053,7 @@ export declare type Mutation = {
|
|
|
148464
150053
|
newPage?: Maybe<NewPagePayload>;
|
|
148465
150054
|
notifications?: Maybe<InfluentsNotificationMutation>;
|
|
148466
150055
|
notifyUsersOnFirstView?: Maybe<NotificationResponsePayload>;
|
|
150056
|
+
oauthClients?: Maybe<OAuthClientsMutation>;
|
|
148467
150057
|
offlineUserAuthToken?: Maybe<OfflineUserAuthTokenResponse>;
|
|
148468
150058
|
offlineUserAuthTokenForExtension?: Maybe<OfflineUserAuthTokenResponse>;
|
|
148469
150059
|
openUpSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -148546,6 +150136,7 @@ export declare type Mutation = {
|
|
|
148546
150136
|
radar_updateFieldSettings?: Maybe<RadarMutationResponse>;
|
|
148547
150137
|
radar_updateFocusAreaMappings?: Maybe<RadarMutationResponse>;
|
|
148548
150138
|
radar_updateFocusAreaProposalChanges?: Maybe<RadarUpdateFocusAreaProposalChangesMutationResponse>;
|
|
150139
|
+
radar_updateMetricsSettings?: Maybe<Array<RadarMetricSettings>>;
|
|
148549
150140
|
radar_updateNotificationSettings?: Maybe<Array<RadarNotification>>;
|
|
148550
150141
|
radar_updatePositionLaborCostEstimateSettings?: Maybe<RadarUpdatePositionLaborCostResponse>;
|
|
148551
150142
|
radar_updateWorkspaceSettings?: Maybe<RadarMutationResponse>;
|
|
@@ -148633,6 +150224,7 @@ export declare type Mutation = {
|
|
|
148633
150224
|
spf_createPlanPortfolioAllowedType?: Maybe<SpfUpsertPlanPortfolioAllowedTypePayload>;
|
|
148634
150225
|
spf_createPlanScenario?: Maybe<SpfUpsertPlanScenarioPayload>;
|
|
148635
150226
|
spf_createPlanScenarioInvestments?: Maybe<SpfCreatePlanScenarioInvestmentsPayload>;
|
|
150227
|
+
spf_createView?: Maybe<SpfUpsertViewPayload>;
|
|
148636
150228
|
spf_deleteAsk?: Maybe<SpfDeleteAskPayload>;
|
|
148637
150229
|
spf_deleteAskComment?: Maybe<SpfDeleteAskCommentPayload>;
|
|
148638
150230
|
spf_deleteAskLink?: Maybe<SpfDeleteAskLinkPayload>;
|
|
@@ -148641,6 +150233,7 @@ export declare type Mutation = {
|
|
|
148641
150233
|
spf_deletePlanPortfolioAllowedType?: Maybe<SpfDeletePlanPortfolioAllowedTypePayload>;
|
|
148642
150234
|
spf_deletePlanScenario?: Maybe<SpfDeletePlanScenarioPayload>;
|
|
148643
150235
|
spf_deletePlanScenarioInvestments?: Maybe<SpfDeletePlanScenarioInvestmentsPayload>;
|
|
150236
|
+
spf_deleteView?: Maybe<SpfDeleteViewPayload>;
|
|
148644
150237
|
spf_grantEntityPermission?: Maybe<SpfGrantEntityPermissionPayload>;
|
|
148645
150238
|
spf_prioritizePlanScenarioInvestment?: Maybe<SpfPrioritizePlanScenarioInvestmentPayload>;
|
|
148646
150239
|
spf_rejectProposedDate?: Maybe<SpfUpsertAskUpdatePayload>;
|
|
@@ -148677,6 +150270,8 @@ export declare type Mutation = {
|
|
|
148677
150270
|
spf_updatePlanStatus?: Maybe<SpfUpsertPlanPayload>;
|
|
148678
150271
|
spf_updatePlanTimeframe?: Maybe<SpfUpsertPlanPayload>;
|
|
148679
150272
|
spf_updatePlanVisibility?: Maybe<SpfUpsertPlanPayload>;
|
|
150273
|
+
spf_updateViewName?: Maybe<SpfUpsertViewPayload>;
|
|
150274
|
+
spf_updateViewSettings?: Maybe<SpfUpsertViewPayload>;
|
|
148680
150275
|
splitIssue?: Maybe<SplitIssueOutput>;
|
|
148681
150276
|
spss_exportFullSiteScanResults?: Maybe<SpssExportFullSiteScanResultsPayload>;
|
|
148682
150277
|
stakeholderComms_addStakeholderMembers?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
@@ -148713,6 +150308,7 @@ export declare type Mutation = {
|
|
|
148713
150308
|
stakeholderComms_updateDraftPage?: Maybe<StakeholderCommsPageResponse>;
|
|
148714
150309
|
stakeholderComms_updateIncident?: Maybe<StakeholderCommsIncidentResponse>;
|
|
148715
150310
|
stakeholderComms_updatePage?: Maybe<StakeholderCommsPageResponse>;
|
|
150311
|
+
stakeholderComms_updatePrivatePageGroupAssignments?: Maybe<StakeholderCommsPrivatePageGroupAssignmentListResponse>;
|
|
148716
150312
|
stakeholderComms_updateStakeholder?: Maybe<StakeholderCommsStakeholderResponse>;
|
|
148717
150313
|
stakeholderComms_updateStakeholderGroup?: Maybe<StakeholderCommsStakeholderGroupsAndStakeholders>;
|
|
148718
150314
|
stakeholderComms_validateSubscriberToken?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -149182,6 +150778,9 @@ export declare type MutationAgentWorkspace_UpdateSkillProficiencyArgs = {
|
|
|
149182
150778
|
export declare type MutationAgentWorkspace_UpdateSmartRoutingConfigArgs = {
|
|
149183
150779
|
input: AgentWorkspaceUpdateSmartRoutingConfigInput;
|
|
149184
150780
|
};
|
|
150781
|
+
export declare type MutationAiCoreApi_InitiateCsvExportArgs = {
|
|
150782
|
+
input: AiCoreApiCsvExportInput;
|
|
150783
|
+
};
|
|
149185
150784
|
export declare type MutationAppStorage_AdminArgs = {
|
|
149186
150785
|
appId: Scalars['ID']['input'];
|
|
149187
150786
|
};
|
|
@@ -149640,6 +151239,9 @@ export declare type MutationAvp_UpdateDashboardArgs = {
|
|
|
149640
151239
|
export declare type MutationAvp_UpdateDashboardFilterArgs = {
|
|
149641
151240
|
input: AvpUpdateDashboardFilterInput;
|
|
149642
151241
|
};
|
|
151242
|
+
export declare type MutationAvp_UpdateDashboardIdentityAccessArgs = {
|
|
151243
|
+
input: AvpUpdateDashboardIdentityAccessInput;
|
|
151244
|
+
};
|
|
149643
151245
|
export declare type MutationAvp_UpdateDashboardResourcePermissionArgs = {
|
|
149644
151246
|
input: AvpUpdateDashboardResourcePermissionInput;
|
|
149645
151247
|
};
|
|
@@ -150140,6 +151742,10 @@ export declare type MutationConfluence_SetContentGeneralAccessModeArgs = {
|
|
|
150140
151742
|
cloudId: Scalars['ID']['input'];
|
|
150141
151743
|
input: ConfluenceSetContentGeneralAccessModeInput;
|
|
150142
151744
|
};
|
|
151745
|
+
export declare type MutationConfluence_SetCutoverRoleConfigArgs = {
|
|
151746
|
+
cloudId: Scalars['ID']['input'];
|
|
151747
|
+
input: ConfluenceSetCutoverRoleConfigInput;
|
|
151748
|
+
};
|
|
150143
151749
|
export declare type MutationConfluence_SetSubCalendarReminderArgs = {
|
|
150144
151750
|
cloudId: Scalars['ID']['input'];
|
|
150145
151751
|
input: ConfluenceSetSubCalendarReminderInput;
|
|
@@ -150245,6 +151851,10 @@ export declare type MutationConfluence_UpdateInstanceArgs = {
|
|
|
150245
151851
|
input: ConfluenceUpdateInstanceInput;
|
|
150246
151852
|
pageAri: Scalars['ID']['input'];
|
|
150247
151853
|
};
|
|
151854
|
+
export declare type MutationConfluence_UpdateMarkdownModeArgs = {
|
|
151855
|
+
cloudId: Scalars['ID']['input'];
|
|
151856
|
+
input: ConfluenceUpdateMarkdownModeInput;
|
|
151857
|
+
};
|
|
150248
151858
|
export declare type MutationConfluence_UpdateNcsPdfExportConfigurationArgs = {
|
|
150249
151859
|
cloudId: Scalars['ID']['input'];
|
|
150250
151860
|
input: ConfluenceUpdatePdfExportNoCodeStylingConfigInput;
|
|
@@ -150282,6 +151892,10 @@ export declare type MutationConfluence_UpdateSpaceAccessRequestSettingsArgs = {
|
|
|
150282
151892
|
cloudId: Scalars['ID']['input'];
|
|
150283
151893
|
input: ConfluenceUpdateAccessRequestSettingsInput;
|
|
150284
151894
|
};
|
|
151895
|
+
export declare type MutationConfluence_UpdateSpaceAnalyticsPermissionsArgs = {
|
|
151896
|
+
cloudId: Scalars['ID']['input'];
|
|
151897
|
+
input: ConfluenceUpdateSpaceAnalyticsPermissionsInput;
|
|
151898
|
+
};
|
|
150285
151899
|
export declare type MutationConfluence_UpdateSubCalendarHiddenEventsArgs = {
|
|
150286
151900
|
cloudId: Scalars['ID']['input'];
|
|
150287
151901
|
input: Array<ConfluenceUpdateSubCalendarHiddenEventsInput>;
|
|
@@ -152208,6 +153822,10 @@ export declare type MutationRadar_UpdateFocusAreaProposalChangesArgs = {
|
|
|
152208
153822
|
cloudId: Scalars['ID']['input'];
|
|
152209
153823
|
input: Array<RadarPositionProposalChangeInput>;
|
|
152210
153824
|
};
|
|
153825
|
+
export declare type MutationRadar_UpdateMetricsSettingsArgs = {
|
|
153826
|
+
cloudId: Scalars['ID']['input'];
|
|
153827
|
+
input: Array<RadarMetricSettingsInput>;
|
|
153828
|
+
};
|
|
152211
153829
|
export declare type MutationRadar_UpdateNotificationSettingsArgs = {
|
|
152212
153830
|
cloudId: Scalars['ID']['input'];
|
|
152213
153831
|
input: Array<RadarNotificationInput>;
|
|
@@ -152489,6 +154107,9 @@ export declare type MutationSpf_CreatePlanScenarioArgs = {
|
|
|
152489
154107
|
export declare type MutationSpf_CreatePlanScenarioInvestmentsArgs = {
|
|
152490
154108
|
input: SpfCreatePlanScenarioInvestmentsInput;
|
|
152491
154109
|
};
|
|
154110
|
+
export declare type MutationSpf_CreateViewArgs = {
|
|
154111
|
+
input: SpfCreateViewInput;
|
|
154112
|
+
};
|
|
152492
154113
|
export declare type MutationSpf_DeleteAskArgs = {
|
|
152493
154114
|
input: SpfDeleteAskInput;
|
|
152494
154115
|
};
|
|
@@ -152513,6 +154134,9 @@ export declare type MutationSpf_DeletePlanScenarioArgs = {
|
|
|
152513
154134
|
export declare type MutationSpf_DeletePlanScenarioInvestmentsArgs = {
|
|
152514
154135
|
input: SpfDeletePlanScenarioInvestmentsInput;
|
|
152515
154136
|
};
|
|
154137
|
+
export declare type MutationSpf_DeleteViewArgs = {
|
|
154138
|
+
input: SpfDeleteViewInput;
|
|
154139
|
+
};
|
|
152516
154140
|
export declare type MutationSpf_GrantEntityPermissionArgs = {
|
|
152517
154141
|
input: SpfEntityPermissionInput;
|
|
152518
154142
|
};
|
|
@@ -152621,6 +154245,12 @@ export declare type MutationSpf_UpdatePlanTimeframeArgs = {
|
|
|
152621
154245
|
export declare type MutationSpf_UpdatePlanVisibilityArgs = {
|
|
152622
154246
|
input: SpfUpdatePlanVisibilityInput;
|
|
152623
154247
|
};
|
|
154248
|
+
export declare type MutationSpf_UpdateViewNameArgs = {
|
|
154249
|
+
input: SpfUpdateViewNameInput;
|
|
154250
|
+
};
|
|
154251
|
+
export declare type MutationSpf_UpdateViewSettingsArgs = {
|
|
154252
|
+
input: SpfUpdateViewSettingsInput;
|
|
154253
|
+
};
|
|
152624
154254
|
export declare type MutationSplitIssueArgs = {
|
|
152625
154255
|
input?: InputMaybe<SplitIssueInput>;
|
|
152626
154256
|
};
|
|
@@ -152771,6 +154401,10 @@ export declare type MutationStakeholderComms_UpdatePageArgs = {
|
|
|
152771
154401
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
152772
154402
|
page: StakeholderCommsUpdatePageInputType;
|
|
152773
154403
|
};
|
|
154404
|
+
export declare type MutationStakeholderComms_UpdatePrivatePageGroupAssignmentsArgs = {
|
|
154405
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
154406
|
+
input: StakeholderCommsUpdatePrivatePageGroupAssignmentsInput;
|
|
154407
|
+
};
|
|
152774
154408
|
export declare type MutationStakeholderComms_UpdateStakeholderArgs = {
|
|
152775
154409
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
152776
154410
|
updateStakeholderInput: StakeholderCommsUpdateStakeholderInput;
|
|
@@ -153426,6 +155060,13 @@ export declare type OAuthClientsClientInfo = {
|
|
|
153426
155060
|
customerName?: Maybe<Scalars['String']['output']>;
|
|
153427
155061
|
profileName?: Maybe<Scalars['String']['output']>;
|
|
153428
155062
|
};
|
|
155063
|
+
export declare type OAuthClientsMutation = {
|
|
155064
|
+
__typename?: 'OAuthClientsMutation';
|
|
155065
|
+
revokeAccountGrant?: Maybe<OAuthClientsRevokeAccountGrantResult>;
|
|
155066
|
+
};
|
|
155067
|
+
export declare type OAuthClientsMutationRevokeAccountGrantArgs = {
|
|
155068
|
+
clientId: Scalars['ID']['input'];
|
|
155069
|
+
};
|
|
153429
155070
|
export declare type OAuthClientsQuery = {
|
|
153430
155071
|
__typename?: 'OAuthClientsQuery';
|
|
153431
155072
|
allAccountGrantsForUser?: Maybe<OAuthClientsAccountGrantConnection>;
|
|
@@ -153438,6 +155079,10 @@ export declare type OAuthClientsQueryAllAccountGrantsForUserArgs = {
|
|
|
153438
155079
|
export declare type OAuthClientsQueryClientArgs = {
|
|
153439
155080
|
id: Scalars['ID']['input'];
|
|
153440
155081
|
};
|
|
155082
|
+
export declare type OAuthClientsRevokeAccountGrantResult = {
|
|
155083
|
+
__typename?: 'OAuthClientsRevokeAccountGrantResult';
|
|
155084
|
+
revokedScopes: Array<Scalars['String']['output']>;
|
|
155085
|
+
};
|
|
153441
155086
|
export declare type OAuthClientsScopeDetails = {
|
|
153442
155087
|
__typename?: 'OAuthClientsScopeDetails';
|
|
153443
155088
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -155931,6 +157576,7 @@ export declare type PublishedContentProperties = {
|
|
|
155931
157576
|
externalVersionId?: Maybe<Scalars['String']['output']>;
|
|
155932
157577
|
generatedBy?: Maybe<Scalars['String']['output']>;
|
|
155933
157578
|
hasBeenTitled?: Maybe<Scalars['Boolean']['output']>;
|
|
157579
|
+
isMarkdownMode?: Maybe<Scalars['Boolean']['output']>;
|
|
155934
157580
|
titleEmoji?: Maybe<Scalars['String']['output']>;
|
|
155935
157581
|
versionContainsAIContent?: Maybe<Scalars['Boolean']['output']>;
|
|
155936
157582
|
};
|
|
@@ -156247,6 +157893,8 @@ export declare type Query = {
|
|
|
156247
157893
|
assetsVertical_verticalInstantiationCategory?: Maybe<AssetsVerticalVerticalInstantiationCategoryResult>;
|
|
156248
157894
|
assetsVertical_verticalInstantiations: AssetsVerticalVerticalInstantiationConnection;
|
|
156249
157895
|
assetsVertical_verticalTemplate?: Maybe<AssetsVerticalVerticalTemplateResult>;
|
|
157896
|
+
assets_cdmObjectTypesDefinitions?: Maybe<Array<Maybe<AssetsCdmObjectTypeResult>>>;
|
|
157897
|
+
assets_cdmSchemasDefinitions?: Maybe<Array<Maybe<AssetsCdmSchemaResult>>>;
|
|
156250
157898
|
assets_objectById?: Maybe<AssetsObjectNode>;
|
|
156251
157899
|
assets_objectTypeAttributeValuesByID?: Maybe<Array<Maybe<AssetsObjectTypeAttributeValue>>>;
|
|
156252
157900
|
assets_objectTypeAttributesByObjectTypeIds?: Maybe<Array<Maybe<AssetsObjectTypeAttribute>>>;
|
|
@@ -156282,6 +157930,7 @@ export declare type Query = {
|
|
|
156282
157930
|
avpanalytics_getJoinTypeConfigurations?: Maybe<Array<AvpAnalyticsJoinTypeConfiguration>>;
|
|
156283
157931
|
avpanalytics_getModel?: Maybe<AvpAnalyticsModel>;
|
|
156284
157932
|
avpanalytics_getModels?: Maybe<AvpAnalyticsModelConnection>;
|
|
157933
|
+
avpanalytics_getSites?: Maybe<Array<AvpAnalyticsSite>>;
|
|
156285
157934
|
avpanalytics_previewModelData?: Maybe<AvpAnalyticsModel>;
|
|
156286
157935
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
156287
157936
|
bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
|
|
@@ -156395,6 +158044,7 @@ export declare type Query = {
|
|
|
156395
158044
|
confluence_classificationLevelsForSpaceDefault?: Maybe<Array<ContentDataClassificationLevel>>;
|
|
156396
158045
|
confluence_commentMediaSession?: Maybe<ContentMediaSession>;
|
|
156397
158046
|
confluence_contentAISummaries?: Maybe<Array<Maybe<ConfluenceContentAiSummaryResponse>>>;
|
|
158047
|
+
confluence_contentAISummariesByContentId?: Maybe<Array<Maybe<ConfluenceContentAiSummaryByContentId>>>;
|
|
156398
158048
|
confluence_contentAccessRequestByStatus?: Maybe<ConfluenceContentAccessRequestConnection>;
|
|
156399
158049
|
confluence_contentAnalyticsCountUserByContentType?: Maybe<ConfluenceContentAnalyticsCountUserByContentType>;
|
|
156400
158050
|
confluence_contentApprovalStatuses?: Maybe<Array<Maybe<ConfluenceApprovalsWorkflowStatus>>>;
|
|
@@ -156490,6 +158140,7 @@ export declare type Query = {
|
|
|
156490
158140
|
confluence_slide?: Maybe<ConfluenceSlide>;
|
|
156491
158141
|
confluence_slides?: Maybe<Array<Maybe<ConfluenceSlide>>>;
|
|
156492
158142
|
confluence_smartSpaceOverview?: Maybe<ConfluenceSmartSpaceOverview>;
|
|
158143
|
+
confluence_spaceAnalyticsPermissions?: Maybe<ConfluenceSpaceAnalyticsPermissionConnection>;
|
|
156493
158144
|
confluence_spaceMediaSession?: Maybe<ContentMediaSession>;
|
|
156494
158145
|
confluence_spacePermissionCombinationsByCriteria?: Maybe<ConfluenceSpacePermissionCombinationConnection>;
|
|
156495
158146
|
confluence_spacePermissionsByCombinationId?: Maybe<ConfluenceSpacePermissionConnection>;
|
|
@@ -156548,6 +158199,7 @@ export declare type Query = {
|
|
|
156548
158199
|
contributorsLinkedToConfluencePageV2?: Maybe<GraphStoreCypherQueryConnection>;
|
|
156549
158200
|
convoAiAgentSession_getById?: Maybe<ConvoAiAgentSession>;
|
|
156550
158201
|
convoAiAgentSession_getByIds?: Maybe<Array<Maybe<ConvoAiAgentSession>>>;
|
|
158202
|
+
convoai_availableSkills?: Maybe<ConvoAiAvailableSkillsResult>;
|
|
156551
158203
|
convoai_confluenceSpaceRecommendations?: Maybe<Array<ConvoAiConfluenceSpaceRecommendation>>;
|
|
156552
158204
|
convoai_homeThreads?: Maybe<ConvoAiHomeThreadsResult>;
|
|
156553
158205
|
convoai_jiraEchoAiFeature?: Maybe<Scalars['String']['output']>;
|
|
@@ -156877,10 +158529,11 @@ export declare type Query = {
|
|
|
156877
158529
|
kitsune_organizationByAri?: Maybe<KitsuneOrganization>;
|
|
156878
158530
|
kitsune_organizations?: Maybe<Array<Maybe<KitsuneOrganization>>>;
|
|
156879
158531
|
kitsune_organizationsByName?: Maybe<Array<Maybe<KitsuneOrganization>>>;
|
|
156880
|
-
kitsune_searchChunk?: Maybe<Array<
|
|
158532
|
+
kitsune_searchChunk?: Maybe<Array<KitsuneSearchChunk>>;
|
|
156881
158533
|
kitsune_searchCustomers?: Maybe<KitsuneCustomerConnection>;
|
|
156882
158534
|
kitsune_searchFeedback?: Maybe<KitsuneFeedbackConnection>;
|
|
156883
158535
|
kitsune_searchFeedbackWithHighlights?: Maybe<KitsuneSearchFeedbackConnection>;
|
|
158536
|
+
kitsune_searchFields?: Maybe<KitsuneFieldConnection>;
|
|
156884
158537
|
kitsune_searchOrganizations?: Maybe<KitsuneOrganizationConnection>;
|
|
156885
158538
|
kitsune_sections?: Maybe<Array<Maybe<KitsuneSection>>>;
|
|
156886
158539
|
kitsune_snippets?: Maybe<Array<Maybe<KitsuneSnippet>>>;
|
|
@@ -156950,6 +158603,8 @@ export declare type Query = {
|
|
|
156950
158603
|
media_items?: Maybe<Array<MediaItem>>;
|
|
156951
158604
|
media_itemsByDescriptor?: Maybe<Array<MediaItem>>;
|
|
156952
158605
|
mercury?: Maybe<MercuryQueryApi>;
|
|
158606
|
+
mercury_businessDomains?: Maybe<MercuryBusinessDomainsQueryApi>;
|
|
158607
|
+
mercury_comments?: Maybe<MercuryCommentQueryApi>;
|
|
156953
158608
|
mercury_dataIntegrations?: Maybe<MercuryDataIntegrationsQueryApi>;
|
|
156954
158609
|
mercury_funds?: Maybe<MercuryFundsQueryApi>;
|
|
156955
158610
|
mercury_insights?: Maybe<MercuryInsightsQueryApi>;
|
|
@@ -157166,6 +158821,7 @@ export declare type Query = {
|
|
|
157166
158821
|
stakeholderComms_getDraftPageByName?: Maybe<StakeholderCommsPageResponse>;
|
|
157167
158822
|
stakeholderComms_getFileReadMediaToken?: Maybe<StakeholderCommsMediaToken>;
|
|
157168
158823
|
stakeholderComms_getFlattenedStakeholdersList?: Maybe<StakeholderCommsGetStakeholderListResponse>;
|
|
158824
|
+
stakeholderComms_getIdentityGroupsForPage?: Maybe<StakeholderCommsIdentityGroupForPageConnection>;
|
|
157169
158825
|
stakeholderComms_getIncident?: Maybe<StakeholderCommsIncidentResponse>;
|
|
157170
158826
|
stakeholderComms_getIncidentTemplate?: Maybe<StakeholderCommsIncidentTemplateResponse>;
|
|
157171
158827
|
stakeholderComms_getLicenseUsageLimit?: Maybe<StakeholderCommsLicenseUsage>;
|
|
@@ -157177,6 +158833,7 @@ export declare type Query = {
|
|
|
157177
158833
|
stakeholderComms_getPageUptimePercentage?: Maybe<StakeholderCommsPageUptimePercentageResponse>;
|
|
157178
158834
|
stakeholderComms_getPagesSummaryByCloudId?: Maybe<StakeholderCommsPagesSummaryByCloudIdResponse>;
|
|
157179
158835
|
stakeholderComms_getPagesSummaryByCloudIdV2?: Maybe<StakeholderCommsPagesSummaryByCloudIdResponse>;
|
|
158836
|
+
stakeholderComms_getPrivatePageGroupAssignmentsByPageId?: Maybe<StakeholderCommsPrivatePageGroupAssignmentListResponse>;
|
|
157180
158837
|
stakeholderComms_getStakeholder?: Maybe<StakeholderCommsStakeholderResponse>;
|
|
157181
158838
|
stakeholderComms_getStakeholderCommsTransformerRecord?: Maybe<StakeholderCommsTransformerRecordResponse>;
|
|
157182
158839
|
stakeholderComms_getStakeholderGroup?: Maybe<StakeholderCommsStakeholderGroup>;
|
|
@@ -157197,6 +158854,7 @@ export declare type Query = {
|
|
|
157197
158854
|
stakeholderComms_getWorkspaceAriMappingByPageId?: Maybe<StakeholderCommsWorkspaceAriMappingResponse>;
|
|
157198
158855
|
stakeholderComms_getWorkspaceAriMappingByStatuspageDomain?: Maybe<StakeholderCommsWorkspaceAriMappingResponse>;
|
|
157199
158856
|
stakeholderComms_isPageNameUnique?: Maybe<Scalars['Boolean']['output']>;
|
|
158857
|
+
stakeholderComms_isPagePrivate?: Maybe<Scalars['Boolean']['output']>;
|
|
157200
158858
|
stakeholderComms_isStakeholderGroupNameUnique?: Maybe<Scalars['Boolean']['output']>;
|
|
157201
158859
|
stakeholderComms_isUniqueSubdomainAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
157202
158860
|
stakeholderComms_listIncidentTemplates?: Maybe<StakeholderCommsListIncidentTemplateResponse>;
|
|
@@ -157205,6 +158863,7 @@ export declare type Query = {
|
|
|
157205
158863
|
stakeholderComms_listStakeholders?: Maybe<StakeholderCommsStakeholderConnection>;
|
|
157206
158864
|
stakeholderComms_listSubscribers?: Maybe<StakeholderCommsListSubscriberResponse>;
|
|
157207
158865
|
stakeholderComms_listSubscribersConnection?: Maybe<StakeholderCommsSubscriberConnection>;
|
|
158866
|
+
stakeholderComms_searchIdentityGroupsByName?: Maybe<StakeholderCommsIdentityGroupForPageConnection>;
|
|
157208
158867
|
stakeholderComms_subscriptionStats?: Maybe<StakeholderCommsSubscriptionStatsResponse>;
|
|
157209
158868
|
stakeholderComms_testAPIEnterpriseOnly?: Maybe<Scalars['String']['output']>;
|
|
157210
158869
|
stakeholderComms_testAPIFreeOnly?: Maybe<Scalars['String']['output']>;
|
|
@@ -158576,6 +160235,14 @@ export declare type QueryAssetsVertical_VerticalTemplateArgs = {
|
|
|
158576
160235
|
type: AssetsVerticalVerticalType;
|
|
158577
160236
|
version?: InputMaybe<Scalars['String']['input']>;
|
|
158578
160237
|
};
|
|
160238
|
+
export declare type QueryAssets_CdmObjectTypesDefinitionsArgs = {
|
|
160239
|
+
cloudId: Scalars['ID']['input'];
|
|
160240
|
+
ids: Array<Scalars['ID']['input']>;
|
|
160241
|
+
};
|
|
160242
|
+
export declare type QueryAssets_CdmSchemasDefinitionsArgs = {
|
|
160243
|
+
cloudId: Scalars['ID']['input'];
|
|
160244
|
+
ids: Array<Scalars['ID']['input']>;
|
|
160245
|
+
};
|
|
158579
160246
|
export declare type QueryAssets_ObjectByIdArgs = {
|
|
158580
160247
|
id: Scalars['ID']['input'];
|
|
158581
160248
|
};
|
|
@@ -158696,10 +160363,12 @@ export declare type QueryAvp_GetReadOnlyDashboardArgs = {
|
|
|
158696
160363
|
};
|
|
158697
160364
|
export declare type QueryAvpanalytics_GetDataSourceArgs = {
|
|
158698
160365
|
cloudId: Scalars['ID']['input'];
|
|
160366
|
+
dataSourceCloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
158699
160367
|
dataSourceId: Scalars['ID']['input'];
|
|
158700
160368
|
};
|
|
158701
160369
|
export declare type QueryAvpanalytics_GetDataSourcesArgs = {
|
|
158702
160370
|
cloudId: Scalars['ID']['input'];
|
|
160371
|
+
dataSourceCloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
158703
160372
|
searchInput?: InputMaybe<AvpAnalyticsSearchInput>;
|
|
158704
160373
|
};
|
|
158705
160374
|
export declare type QueryAvpanalytics_GetJoinTypeConfigurationsArgs = {
|
|
@@ -158713,6 +160382,9 @@ export declare type QueryAvpanalytics_GetModelsArgs = {
|
|
|
158713
160382
|
cloudId: Scalars['ID']['input'];
|
|
158714
160383
|
input?: InputMaybe<AvpAnalyticsGetModelsInput>;
|
|
158715
160384
|
};
|
|
160385
|
+
export declare type QueryAvpanalytics_GetSitesArgs = {
|
|
160386
|
+
cloudId: Scalars['ID']['input'];
|
|
160387
|
+
};
|
|
158716
160388
|
export declare type QueryAvpanalytics_PreviewModelDataArgs = {
|
|
158717
160389
|
cloudId: Scalars['ID']['input'];
|
|
158718
160390
|
input?: InputMaybe<AvpAnalyticsPreviewModelDataInput>;
|
|
@@ -159133,6 +160805,13 @@ export declare type QueryConfluence_ContentAiSummariesArgs = {
|
|
|
159133
160805
|
entryPoint?: InputMaybe<Scalars['String']['input']>;
|
|
159134
160806
|
objectType: KnowledgeGraphObjectType;
|
|
159135
160807
|
};
|
|
160808
|
+
export declare type QueryConfluence_ContentAiSummariesByContentIdArgs = {
|
|
160809
|
+
cloudId: Scalars['String']['input'];
|
|
160810
|
+
contentIds: Array<Scalars['ID']['input']>;
|
|
160811
|
+
contentTypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
160812
|
+
entryPoint?: InputMaybe<Scalars['String']['input']>;
|
|
160813
|
+
objectType: KnowledgeGraphObjectType;
|
|
160814
|
+
};
|
|
159136
160815
|
export declare type QueryConfluence_ContentAccessRequestByStatusArgs = {
|
|
159137
160816
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
159138
160817
|
cloudId: Scalars['ID']['input'];
|
|
@@ -159596,6 +161275,12 @@ export declare type QueryConfluence_SmartSpaceOverviewArgs = {
|
|
|
159596
161275
|
cloudId: Scalars['ID']['input'];
|
|
159597
161276
|
spaceKey: Scalars['String']['input'];
|
|
159598
161277
|
};
|
|
161278
|
+
export declare type QueryConfluence_SpaceAnalyticsPermissionsArgs = {
|
|
161279
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
161280
|
+
cloudId: Scalars['ID']['input'];
|
|
161281
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
161282
|
+
spaceId: Scalars['ID']['input'];
|
|
161283
|
+
};
|
|
159599
161284
|
export declare type QueryConfluence_SpaceMediaSessionArgs = {
|
|
159600
161285
|
cloudId: Scalars['ID']['input'];
|
|
159601
161286
|
contentId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -159904,6 +161589,13 @@ export declare type QueryConvoAiAgentSession_GetByIdArgs = {
|
|
|
159904
161589
|
export declare type QueryConvoAiAgentSession_GetByIdsArgs = {
|
|
159905
161590
|
ids?: InputMaybe<Array<InputMaybe<SkyBridgeIdInput>>>;
|
|
159906
161591
|
};
|
|
161592
|
+
export declare type QueryConvoai_AvailableSkillsArgs = {
|
|
161593
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
161594
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
161595
|
+
cloudId: Scalars['ID']['input'];
|
|
161596
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
161597
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
161598
|
+
};
|
|
159907
161599
|
export declare type QueryConvoai_ConfluenceSpaceRecommendationsArgs = {
|
|
159908
161600
|
cloudId: Scalars['ID']['input'];
|
|
159909
161601
|
pageTitle: Scalars['String']['input'];
|
|
@@ -160008,6 +161700,7 @@ export declare type QueryCpls_CustomContributionTargetsByIdsArgs = {
|
|
|
160008
161700
|
ids: Array<Scalars['ID']['input']>;
|
|
160009
161701
|
};
|
|
160010
161702
|
export declare type QueryCpls_FiltersArgs = {
|
|
161703
|
+
includeSuggestions?: InputMaybe<Scalars['Boolean']['input']>;
|
|
160011
161704
|
scopeId: Scalars['ID']['input'];
|
|
160012
161705
|
};
|
|
160013
161706
|
export declare type QueryCpls_PeopleViewArgs = {
|
|
@@ -161251,6 +162944,15 @@ export declare type QueryKitsune_SearchFeedbackWithHighlightsArgs = {
|
|
|
161251
162944
|
workspace?: InputMaybe<KitsuneWorkspaceIdentifierInput>;
|
|
161252
162945
|
workspaceAri: Scalars['ID']['input'];
|
|
161253
162946
|
};
|
|
162947
|
+
export declare type QueryKitsune_SearchFieldsArgs = {
|
|
162948
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
162949
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
162950
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
162951
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
162952
|
+
name: Scalars['String']['input'];
|
|
162953
|
+
workspace?: InputMaybe<KitsuneWorkspaceIdentifierInput>;
|
|
162954
|
+
workspaceAri: Scalars['ID']['input'];
|
|
162955
|
+
};
|
|
161254
162956
|
export declare type QueryKitsune_SearchOrganizationsArgs = {
|
|
161255
162957
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
161256
162958
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -162298,6 +164000,11 @@ export declare type QueryStakeholderComms_GetFlattenedStakeholdersListArgs = {
|
|
|
162298
164000
|
groupIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
162299
164001
|
teamIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
162300
164002
|
};
|
|
164003
|
+
export declare type QueryStakeholderComms_GetIdentityGroupsForPageArgs = {
|
|
164004
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
164005
|
+
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
164006
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
164007
|
+
};
|
|
162301
164008
|
export declare type QueryStakeholderComms_GetIncidentArgs = {
|
|
162302
164009
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
162303
164010
|
getIncidentInput?: InputMaybe<StakeholderCommsGetIncidentInput>;
|
|
@@ -162341,6 +164048,10 @@ export declare type QueryStakeholderComms_GetPagesSummaryByCloudIdV2Args = {
|
|
|
162341
164048
|
cloudId: Scalars['String']['input'];
|
|
162342
164049
|
filter?: InputMaybe<StakeholderCommsPageStatusFilter>;
|
|
162343
164050
|
};
|
|
164051
|
+
export declare type QueryStakeholderComms_GetPrivatePageGroupAssignmentsByPageIdArgs = {
|
|
164052
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
164053
|
+
pageId: Scalars['String']['input'];
|
|
164054
|
+
};
|
|
162344
164055
|
export declare type QueryStakeholderComms_GetStakeholderArgs = {
|
|
162345
164056
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
162346
164057
|
stakeholderIdInput: StakeholderCommsStakeholderIdInput;
|
|
@@ -162422,6 +164133,10 @@ export declare type QueryStakeholderComms_IsPageNameUniqueArgs = {
|
|
|
162422
164133
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
162423
164134
|
name: Scalars['String']['input'];
|
|
162424
164135
|
};
|
|
164136
|
+
export declare type QueryStakeholderComms_IsPagePrivateArgs = {
|
|
164137
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
164138
|
+
domain: Scalars['String']['input'];
|
|
164139
|
+
};
|
|
162425
164140
|
export declare type QueryStakeholderComms_IsStakeholderGroupNameUniqueArgs = {
|
|
162426
164141
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
162427
164142
|
name: Scalars['String']['input'];
|
|
@@ -162468,6 +164183,10 @@ export declare type QueryStakeholderComms_ListSubscribersConnectionArgs = {
|
|
|
162468
164183
|
order?: InputMaybe<StakeholderCommsSubscriberConnectionOrder>;
|
|
162469
164184
|
search?: InputMaybe<StakeholderCommsSubscriberConnectionSearch>;
|
|
162470
164185
|
};
|
|
164186
|
+
export declare type QueryStakeholderComms_SearchIdentityGroupsByNameArgs = {
|
|
164187
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
164188
|
+
nameContains: Scalars['String']['input'];
|
|
164189
|
+
};
|
|
162471
164190
|
export declare type QueryStakeholderComms_SubscriptionStatsArgs = {
|
|
162472
164191
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
162473
164192
|
itemId: Scalars['ID']['input'];
|
|
@@ -163192,6 +164911,36 @@ export declare type RadarLastAppliedFilterInput = {
|
|
|
163192
164911
|
pageName: Scalars['String']['input'];
|
|
163193
164912
|
rqlQuery?: InputMaybe<Scalars['String']['input']>;
|
|
163194
164913
|
};
|
|
164914
|
+
export declare type RadarMetricSettings = {
|
|
164915
|
+
__typename?: 'RadarMetricSettings';
|
|
164916
|
+
id: Scalars['ID']['output'];
|
|
164917
|
+
metricKey: RadarOrgMetric;
|
|
164918
|
+
metricType: RadarMetricType;
|
|
164919
|
+
values?: Maybe<Array<RadarMetricValue>>;
|
|
164920
|
+
};
|
|
164921
|
+
export declare type RadarMetricSettingsInput = {
|
|
164922
|
+
metricKey: RadarOrgMetric;
|
|
164923
|
+
metricType: RadarMetricType;
|
|
164924
|
+
orgId: Scalars['ID']['input'];
|
|
164925
|
+
values?: InputMaybe<Array<RadarMetricValueInput>>;
|
|
164926
|
+
};
|
|
164927
|
+
export declare enum RadarMetricType {
|
|
164928
|
+
Multi = "MULTI",
|
|
164929
|
+
Range = "RANGE",
|
|
164930
|
+
Single = "SINGLE"
|
|
164931
|
+
}
|
|
164932
|
+
export declare type RadarMetricValue = {
|
|
164933
|
+
__typename?: 'RadarMetricValue';
|
|
164934
|
+
dimensionName: Scalars['String']['output'];
|
|
164935
|
+
id: Scalars['ID']['output'];
|
|
164936
|
+
target: Scalars['Float']['output'];
|
|
164937
|
+
tolerance?: Maybe<Scalars['Float']['output']>;
|
|
164938
|
+
};
|
|
164939
|
+
export declare type RadarMetricValueInput = {
|
|
164940
|
+
dimensionName: Scalars['String']['input'];
|
|
164941
|
+
target: Scalars['Float']['input'];
|
|
164942
|
+
tolerance?: InputMaybe<Scalars['Float']['input']>;
|
|
164943
|
+
};
|
|
163195
164944
|
export declare type RadarMoney = {
|
|
163196
164945
|
__typename?: 'RadarMoney';
|
|
163197
164946
|
amount: Scalars['String']['output'];
|
|
@@ -163278,6 +165027,11 @@ export declare type RadarNumericFieldValue = {
|
|
|
163278
165027
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
163279
165028
|
value?: Maybe<Scalars['Int']['output']>;
|
|
163280
165029
|
};
|
|
165030
|
+
export declare enum RadarOrgMetric {
|
|
165031
|
+
CraftRatio = "CRAFT_RATIO",
|
|
165032
|
+
Footprint = "FOOTPRINT",
|
|
165033
|
+
SpanOfControl = "SPAN_OF_CONTROL"
|
|
165034
|
+
}
|
|
163281
165035
|
export declare type RadarPermissions = {
|
|
163282
165036
|
__typename?: 'RadarPermissions';
|
|
163283
165037
|
canManagersAllocate: Scalars['Boolean']['output'];
|
|
@@ -185952,6 +187706,11 @@ export declare type SmartUserFeatures = {
|
|
|
185952
187706
|
recommendedPeople?: Maybe<Array<Maybe<RecommendedPeopleItem>>>;
|
|
185953
187707
|
recommendedSpaces?: Maybe<Array<Maybe<RecommendedSpaceItem>>>;
|
|
185954
187708
|
};
|
|
187709
|
+
export declare type SmartsConfluenceContext = {
|
|
187710
|
+
__typename?: 'SmartsConfluenceContext';
|
|
187711
|
+
id: Scalars['ID']['output'];
|
|
187712
|
+
status: Scalars['String']['output'];
|
|
187713
|
+
};
|
|
185955
187714
|
export declare type SmartsContext = {
|
|
185956
187715
|
additionalContextList?: InputMaybe<Array<SmartsKeyValue>>;
|
|
185957
187716
|
containerId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -185969,8 +187728,9 @@ export declare type SmartsContextServiceQueryApiQuickfindUserRecommendationsArgs
|
|
|
185969
187728
|
};
|
|
185970
187729
|
export declare type SmartsContextServiceUserRecommendation = {
|
|
185971
187730
|
__typename?: 'SmartsContextServiceUserRecommendation';
|
|
187731
|
+
context?: Maybe<SmartsRecommendationContext>;
|
|
185972
187732
|
id: Scalars['ID']['output'];
|
|
185973
|
-
object?: Maybe<
|
|
187733
|
+
object?: Maybe<SmartsRecommendedEntity>;
|
|
185974
187734
|
reason?: Maybe<Scalars['String']['output']>;
|
|
185975
187735
|
score?: Maybe<Scalars['Float']['output']>;
|
|
185976
187736
|
};
|
|
@@ -186015,6 +187775,11 @@ export declare type SmartsQueryApiRecommendedObjectArgs = {
|
|
|
186015
187775
|
export declare type SmartsQueryApiRecommendedUserArgs = {
|
|
186016
187776
|
recommendationsQuery: SmartsRecommendationsQuery;
|
|
186017
187777
|
};
|
|
187778
|
+
export declare type SmartsRecommendationContext = {
|
|
187779
|
+
__typename?: 'SmartsRecommendationContext';
|
|
187780
|
+
confluence?: Maybe<SmartsConfluenceContext>;
|
|
187781
|
+
thirdParty?: Maybe<SmartsThirdPartyContext>;
|
|
187782
|
+
};
|
|
186018
187783
|
export declare type SmartsRecommendationsFieldQuery = {
|
|
186019
187784
|
context: SmartsFieldContext;
|
|
186020
187785
|
maxNumberOfResults?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -186042,6 +187807,7 @@ export declare type SmartsRecommendedContainerV2 = {
|
|
|
186042
187807
|
id: Scalars['ID']['output'];
|
|
186043
187808
|
score?: Maybe<Scalars['Float']['output']>;
|
|
186044
187809
|
};
|
|
187810
|
+
export declare type SmartsRecommendedEntity = ConfluencePage | ExternalDocument;
|
|
186045
187811
|
export declare type SmartsRecommendedFieldObject = {
|
|
186046
187812
|
__typename?: 'SmartsRecommendedFieldObject';
|
|
186047
187813
|
id: Scalars['ID']['output'];
|
|
@@ -186063,6 +187829,11 @@ export declare type SmartsRecommendedUser = {
|
|
|
186063
187829
|
score?: Maybe<Scalars['Float']['output']>;
|
|
186064
187830
|
user?: Maybe<User>;
|
|
186065
187831
|
};
|
|
187832
|
+
export declare type SmartsThirdPartyContext = {
|
|
187833
|
+
__typename?: 'SmartsThirdPartyContext';
|
|
187834
|
+
ari: Scalars['ID']['output'];
|
|
187835
|
+
siteOrGraphWorkspaceAri: Scalars['ID']['output'];
|
|
187836
|
+
};
|
|
186066
187837
|
export declare type SocialSignalSearch = {
|
|
186067
187838
|
__typename?: 'SocialSignalSearch';
|
|
186068
187839
|
objectARI: Scalars['ID']['output'];
|
|
@@ -187391,6 +189162,12 @@ export declare type SpfCreatePlanScenarioInvestmentsPayload = Payload & {
|
|
|
187391
189162
|
planScenarioInvestments: Array<SpfPlanScenarioInvestment>;
|
|
187392
189163
|
success: Scalars['Boolean']['output'];
|
|
187393
189164
|
};
|
|
189165
|
+
export declare type SpfCreateViewInput = {
|
|
189166
|
+
cloudId: Scalars['ID']['input'];
|
|
189167
|
+
entityType: Scalars['String']['input'];
|
|
189168
|
+
name: Scalars['String']['input'];
|
|
189169
|
+
settings: SpfViewSettingsInput;
|
|
189170
|
+
};
|
|
187394
189171
|
export declare type SpfDeleteAskCommentInput = {
|
|
187395
189172
|
id: Scalars['ID']['input'];
|
|
187396
189173
|
};
|
|
@@ -187464,6 +189241,15 @@ export declare type SpfDeletePlanScenarioPayload = Payload & {
|
|
|
187464
189241
|
id: Scalars['ID']['output'];
|
|
187465
189242
|
success: Scalars['Boolean']['output'];
|
|
187466
189243
|
};
|
|
189244
|
+
export declare type SpfDeleteViewInput = {
|
|
189245
|
+
id: Scalars['ID']['input'];
|
|
189246
|
+
};
|
|
189247
|
+
export declare type SpfDeleteViewPayload = Payload & {
|
|
189248
|
+
__typename?: 'SpfDeleteViewPayload';
|
|
189249
|
+
errors?: Maybe<Array<MutationError>>;
|
|
189250
|
+
id: Scalars['ID']['output'];
|
|
189251
|
+
success: Scalars['Boolean']['output'];
|
|
189252
|
+
};
|
|
187467
189253
|
export declare type SpfEntityPermissionEntry = {
|
|
187468
189254
|
__typename?: 'SpfEntityPermissionEntry';
|
|
187469
189255
|
entityId: Scalars['ID']['output'];
|
|
@@ -187879,6 +189665,14 @@ export declare type SpfUpdatePlanVisibilityInput = {
|
|
|
187879
189665
|
id: Scalars['ID']['input'];
|
|
187880
189666
|
visibility: SpfPlanVisibility;
|
|
187881
189667
|
};
|
|
189668
|
+
export declare type SpfUpdateViewNameInput = {
|
|
189669
|
+
id: Scalars['ID']['input'];
|
|
189670
|
+
name: Scalars['String']['input'];
|
|
189671
|
+
};
|
|
189672
|
+
export declare type SpfUpdateViewSettingsInput = {
|
|
189673
|
+
id: Scalars['ID']['input'];
|
|
189674
|
+
settings: SpfViewSettingsInput;
|
|
189675
|
+
};
|
|
187882
189676
|
export declare type SpfUpsertAskCommentPayload = Payload & {
|
|
187883
189677
|
__typename?: 'SpfUpsertAskCommentPayload';
|
|
187884
189678
|
comment?: Maybe<SpfAskComment>;
|
|
@@ -187938,6 +189732,12 @@ export declare type SpfUpsertPlanScenarioPayload = Payload & {
|
|
|
187938
189732
|
planScenario?: Maybe<SpfPlanScenario>;
|
|
187939
189733
|
success: Scalars['Boolean']['output'];
|
|
187940
189734
|
};
|
|
189735
|
+
export declare type SpfUpsertViewPayload = Payload & {
|
|
189736
|
+
__typename?: 'SpfUpsertViewPayload';
|
|
189737
|
+
errors?: Maybe<Array<MutationError>>;
|
|
189738
|
+
success: Scalars['Boolean']['output'];
|
|
189739
|
+
view?: Maybe<SpfView>;
|
|
189740
|
+
};
|
|
187941
189741
|
export declare type SpfView = Node & {
|
|
187942
189742
|
__typename?: 'SpfView';
|
|
187943
189743
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -187968,10 +189768,17 @@ export declare type SpfViewSettingValue = {
|
|
|
187968
189768
|
key: Scalars['String']['output'];
|
|
187969
189769
|
value: Scalars['String']['output'];
|
|
187970
189770
|
};
|
|
189771
|
+
export declare type SpfViewSettingValueInput = {
|
|
189772
|
+
key: Scalars['String']['input'];
|
|
189773
|
+
value: Scalars['String']['input'];
|
|
189774
|
+
};
|
|
187971
189775
|
export declare type SpfViewSettings = {
|
|
187972
189776
|
__typename?: 'SpfViewSettings';
|
|
187973
189777
|
values: Array<SpfViewSettingValue>;
|
|
187974
189778
|
};
|
|
189779
|
+
export declare type SpfViewSettingsInput = {
|
|
189780
|
+
values: Array<SpfViewSettingValueInput>;
|
|
189781
|
+
};
|
|
187975
189782
|
export declare type SplitIssueInput = {
|
|
187976
189783
|
newIssues: Array<InputMaybe<NewSplitIssueRequest>>;
|
|
187977
189784
|
originalIssue: OriginalSplitIssue;
|
|
@@ -188436,6 +190243,20 @@ export declare type StakeholderCommsHeaderDataType = {
|
|
|
188436
190243
|
headerText?: Maybe<Scalars['String']['output']>;
|
|
188437
190244
|
links?: Maybe<Array<Maybe<StakeholderCommsLinkType>>>;
|
|
188438
190245
|
};
|
|
190246
|
+
export declare type StakeholderCommsIdentityGroupForPage = {
|
|
190247
|
+
__typename?: 'StakeholderCommsIdentityGroupForPage';
|
|
190248
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
190249
|
+
id: Scalars['String']['output'];
|
|
190250
|
+
membersCount?: Maybe<Scalars['Int']['output']>;
|
|
190251
|
+
name: Scalars['String']['output'];
|
|
190252
|
+
};
|
|
190253
|
+
export declare type StakeholderCommsIdentityGroupForPageConnection = {
|
|
190254
|
+
__typename?: 'StakeholderCommsIdentityGroupForPageConnection';
|
|
190255
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
190256
|
+
groups: Array<StakeholderCommsIdentityGroupForPage>;
|
|
190257
|
+
pageInfo: StakeholderCommsPageInfo;
|
|
190258
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
190259
|
+
};
|
|
188439
190260
|
export declare type StakeholderCommsIncident = {
|
|
188440
190261
|
__typename?: 'StakeholderCommsIncident';
|
|
188441
190262
|
autoCompleted?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -188995,6 +190816,18 @@ export declare type StakeholderCommsPreferencesInput = {
|
|
|
188995
190816
|
sms?: InputMaybe<StakeholderCommsModePreferenceInput>;
|
|
188996
190817
|
webhook?: InputMaybe<StakeholderCommsModePreferenceInput>;
|
|
188997
190818
|
};
|
|
190819
|
+
export declare type StakeholderCommsPrivatePageGroupAssignment = {
|
|
190820
|
+
__typename?: 'StakeholderCommsPrivatePageGroupAssignment';
|
|
190821
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
190822
|
+
groupId: Scalars['String']['output'];
|
|
190823
|
+
groupName?: Maybe<Scalars['String']['output']>;
|
|
190824
|
+
membersCount?: Maybe<Scalars['Int']['output']>;
|
|
190825
|
+
pageId: Scalars['String']['output'];
|
|
190826
|
+
};
|
|
190827
|
+
export declare type StakeholderCommsPrivatePageGroupAssignmentListResponse = {
|
|
190828
|
+
__typename?: 'StakeholderCommsPrivatePageGroupAssignmentListResponse';
|
|
190829
|
+
assignments?: Maybe<Array<Maybe<StakeholderCommsPrivatePageGroupAssignment>>>;
|
|
190830
|
+
};
|
|
188998
190831
|
export declare type StakeholderCommsPublicCommunicationResponse = {
|
|
188999
190832
|
__typename?: 'StakeholderCommsPublicCommunicationResponse';
|
|
189000
190833
|
error?: Maybe<Scalars['String']['output']>;
|
|
@@ -189438,6 +191271,11 @@ export declare type StakeholderCommsUpdatePageInputType = {
|
|
|
189438
191271
|
url?: InputMaybe<Scalars['String']['input']>;
|
|
189439
191272
|
version?: InputMaybe<Scalars['Int']['input']>;
|
|
189440
191273
|
};
|
|
191274
|
+
export declare type StakeholderCommsUpdatePrivatePageGroupAssignmentsInput = {
|
|
191275
|
+
groupIdsToAdd?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
191276
|
+
groupIdsToRemove?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
191277
|
+
pageId: Scalars['String']['input'];
|
|
191278
|
+
};
|
|
189441
191279
|
export declare type StakeholderCommsUpdateStakeholderGroupInput = {
|
|
189442
191280
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
189443
191281
|
id: Scalars['String']['input'];
|
|
@@ -189703,6 +191541,7 @@ export declare type Subscription = {
|
|
|
189703
191541
|
jiraProductDiscovery?: Maybe<JpdSubscriptions>;
|
|
189704
191542
|
jira_onIssueUpdateSuggestions?: Maybe<JiraIssueUpdatesSuggestion>;
|
|
189705
191543
|
jpdViewsService_echo?: Maybe<Scalars['String']['output']>;
|
|
191544
|
+
jpdViewsService_onJPDViewCommentEvent?: Maybe<JpdViewsServiceViewCommentEvent>;
|
|
189706
191545
|
jsmAgentWorkspace_dummy?: Maybe<Scalars['String']['output']>;
|
|
189707
191546
|
jsmChannels_getResolutionPlanGraphUpdate: JsmChannelsResolutionPlanGraphResult;
|
|
189708
191547
|
jsmChannels_onServiceAgentResolutionStateByTicketIdUpdate: JsmChannelsTicketServiceAgentResolutionStateResult;
|
|
@@ -189792,6 +191631,11 @@ export declare type SubscriptionJpdViewsService_EchoArgs = {
|
|
|
189792
191631
|
cloudId: Scalars['ID']['input'];
|
|
189793
191632
|
message: Scalars['String']['input'];
|
|
189794
191633
|
};
|
|
191634
|
+
export declare type SubscriptionJpdViewsService_OnJpdViewCommentEventArgs = {
|
|
191635
|
+
cloudId: Scalars['ID']['input'];
|
|
191636
|
+
containerId: Scalars['String']['input'];
|
|
191637
|
+
containerType: Scalars['String']['input'];
|
|
191638
|
+
};
|
|
189795
191639
|
export declare type SubscriptionJsmChannels_GetResolutionPlanGraphUpdateArgs = {
|
|
189796
191640
|
jiraProjectAri: Scalars['ID']['input'];
|
|
189797
191641
|
planEditTransactionId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -196116,7 +197960,7 @@ export declare type TrelloBoardCustomFieldsLimits = {
|
|
|
196116
197960
|
export declare type TrelloBoardEdge = {
|
|
196117
197961
|
__typename?: 'TrelloBoardEdge';
|
|
196118
197962
|
cursor: Scalars['String']['output'];
|
|
196119
|
-
node:
|
|
197963
|
+
node: TrelloBaseBoard;
|
|
196120
197964
|
};
|
|
196121
197965
|
export declare type TrelloBoardId = TrelloBaseBoardId & {
|
|
196122
197966
|
__typename?: 'TrelloBoardId';
|
|
@@ -196883,7 +198727,7 @@ export declare enum TrelloCheckItemState {
|
|
|
196883
198727
|
}
|
|
196884
198728
|
export declare type TrelloChecklist = Node & {
|
|
196885
198729
|
__typename?: 'TrelloChecklist';
|
|
196886
|
-
board?: Maybe<
|
|
198730
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
196887
198731
|
card?: Maybe<TrelloBaseCard>;
|
|
196888
198732
|
checkItems?: Maybe<TrelloCheckItemConnection>;
|
|
196889
198733
|
id: Scalars['ID']['output'];
|
|
@@ -197249,7 +199093,7 @@ export declare type TrelloCreateListInput = {
|
|
|
197249
199093
|
creationMethod?: InputMaybe<TrelloListCreationMethod>;
|
|
197250
199094
|
dataSource?: InputMaybe<TrelloListDataSourceInput>;
|
|
197251
199095
|
name: Scalars['String']['input'];
|
|
197252
|
-
|
|
199096
|
+
position?: InputMaybe<TrelloListPosition>;
|
|
197253
199097
|
type?: InputMaybe<TrelloListType>;
|
|
197254
199098
|
};
|
|
197255
199099
|
export declare type TrelloCreateListPayload = Payload & {
|
|
@@ -197418,10 +199262,15 @@ export declare type TrelloCustomFieldItemValueInfo = {
|
|
|
197418
199262
|
export declare type TrelloCustomFieldOption = {
|
|
197419
199263
|
__typename?: 'TrelloCustomFieldOption';
|
|
197420
199264
|
color?: Maybe<Scalars['String']['output']>;
|
|
199265
|
+
id: Scalars['ID']['output'];
|
|
197421
199266
|
objectId: Scalars['ID']['output'];
|
|
197422
199267
|
position?: Maybe<Scalars['Float']['output']>;
|
|
197423
199268
|
value?: Maybe<TrelloCustomFieldOptionValue>;
|
|
197424
199269
|
};
|
|
199270
|
+
export declare type TrelloCustomFieldOptionDeleted = {
|
|
199271
|
+
__typename?: 'TrelloCustomFieldOptionDeleted';
|
|
199272
|
+
id: Scalars['ID']['output'];
|
|
199273
|
+
};
|
|
197425
199274
|
export declare type TrelloCustomFieldOptionValue = {
|
|
197426
199275
|
__typename?: 'TrelloCustomFieldOptionValue';
|
|
197427
199276
|
text?: Maybe<Scalars['String']['output']>;
|
|
@@ -197489,6 +199338,16 @@ export declare type TrelloDeleteBoardPayload = Payload & {
|
|
|
197489
199338
|
export declare type TrelloDeleteCustomFieldInput = {
|
|
197490
199339
|
customFieldId: Scalars['ID']['input'];
|
|
197491
199340
|
};
|
|
199341
|
+
export declare type TrelloDeleteCustomFieldOptionInput = {
|
|
199342
|
+
customFieldId: Scalars['ID']['input'];
|
|
199343
|
+
customFieldOptionId: Scalars['ID']['input'];
|
|
199344
|
+
};
|
|
199345
|
+
export declare type TrelloDeleteCustomFieldOptionPayload = Payload & {
|
|
199346
|
+
__typename?: 'TrelloDeleteCustomFieldOptionPayload';
|
|
199347
|
+
customFieldOption?: Maybe<TrelloCustomFieldOptionDeleted>;
|
|
199348
|
+
errors?: Maybe<Array<MutationError>>;
|
|
199349
|
+
success: Scalars['Boolean']['output'];
|
|
199350
|
+
};
|
|
197492
199351
|
export declare type TrelloDeleteCustomFieldPayload = Payload & {
|
|
197493
199352
|
__typename?: 'TrelloDeleteCustomFieldPayload';
|
|
197494
199353
|
customField?: Maybe<TrelloCustomFieldDeleted>;
|
|
@@ -197586,6 +199445,7 @@ export declare type TrelloEnterprise = Node & {
|
|
|
197586
199445
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
197587
199446
|
id: Scalars['ID']['output'];
|
|
197588
199447
|
managedMemberTokensCount?: Maybe<Scalars['Int']['output']>;
|
|
199448
|
+
memberOAuth2AccessGrants?: Maybe<TrelloMemberOAuth2AccessGrantsResult>;
|
|
197589
199449
|
membersWithTokens?: Maybe<TrelloEnterpriseMemberTokenConnection>;
|
|
197590
199450
|
objectId: Scalars['ID']['output'];
|
|
197591
199451
|
prefs: TrelloEnterprisePrefs;
|
|
@@ -197597,6 +199457,9 @@ export declare type TrelloEnterpriseAdminsArgs = {
|
|
|
197597
199457
|
export declare type TrelloEnterpriseManagedMemberTokensCountArgs = {
|
|
197598
199458
|
filter?: InputMaybe<TrelloTokenFilter>;
|
|
197599
199459
|
};
|
|
199460
|
+
export declare type TrelloEnterpriseMemberOAuth2AccessGrantsArgs = {
|
|
199461
|
+
memberId: Scalars['ID']['input'];
|
|
199462
|
+
};
|
|
197600
199463
|
export declare type TrelloEnterpriseMembersWithTokensArgs = {
|
|
197601
199464
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
197602
199465
|
filter?: InputMaybe<TrelloTokenFilter>;
|
|
@@ -198189,7 +200052,7 @@ export declare enum TrelloMemberBoardFilterValue {
|
|
|
198189
200052
|
export declare type TrelloMemberBoardStarConnection = {
|
|
198190
200053
|
__typename?: 'TrelloMemberBoardStarConnection';
|
|
198191
200054
|
edges?: Maybe<Array<TrelloMemberBoardStarEdge>>;
|
|
198192
|
-
nodes?: Maybe<Array<Maybe<
|
|
200055
|
+
nodes?: Maybe<Array<Maybe<TrelloBaseBoard>>>;
|
|
198193
200056
|
pageInfo: PageInfo;
|
|
198194
200057
|
};
|
|
198195
200058
|
export declare type TrelloMemberBoardStarEdge = {
|
|
@@ -198197,7 +200060,7 @@ export declare type TrelloMemberBoardStarEdge = {
|
|
|
198197
200060
|
boardObjectId: Scalars['String']['output'];
|
|
198198
200061
|
cursor: Scalars['String']['output'];
|
|
198199
200062
|
id: Scalars['ID']['output'];
|
|
198200
|
-
node?: Maybe<
|
|
200063
|
+
node?: Maybe<TrelloBaseBoard>;
|
|
198201
200064
|
objectId: Scalars['String']['output'];
|
|
198202
200065
|
position: Scalars['Float']['output'];
|
|
198203
200066
|
};
|
|
@@ -198230,6 +200093,16 @@ export declare type TrelloMemberNonPublicData = {
|
|
|
198230
200093
|
initials?: Maybe<Scalars['String']['output']>;
|
|
198231
200094
|
};
|
|
198232
200095
|
export declare type TrelloMemberNotificationsUpdated = TrelloInboxNotificationsUpdated;
|
|
200096
|
+
export declare type TrelloMemberOAuth2AccessGrant = {
|
|
200097
|
+
__typename?: 'TrelloMemberOAuth2AccessGrant';
|
|
200098
|
+
oauth2ClientId: Scalars['String']['output'];
|
|
200099
|
+
scopes: Array<Scalars['String']['output']>;
|
|
200100
|
+
};
|
|
200101
|
+
export declare type TrelloMemberOAuth2AccessGrantsResult = {
|
|
200102
|
+
__typename?: 'TrelloMemberOAuth2AccessGrantsResult';
|
|
200103
|
+
grants: Array<TrelloMemberOAuth2AccessGrant>;
|
|
200104
|
+
member: TrelloMember;
|
|
200105
|
+
};
|
|
198233
200106
|
export declare type TrelloMemberPlannerEventCardsUpdated = {
|
|
198234
200107
|
__typename?: 'TrelloMemberPlannerEventCardsUpdated';
|
|
198235
200108
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -198465,6 +200338,7 @@ export declare type TrelloMutationApi = {
|
|
|
198465
200338
|
deleteBoard?: Maybe<TrelloDeleteBoardPayload>;
|
|
198466
200339
|
deleteBoardBackground?: Maybe<TrelloDeleteBoardBackgroundPayload>;
|
|
198467
200340
|
deleteCustomField?: Maybe<TrelloDeleteCustomFieldPayload>;
|
|
200341
|
+
deleteCustomFieldOption?: Maybe<TrelloDeleteCustomFieldOptionPayload>;
|
|
198468
200342
|
deletePlannerCalendarEvent?: Maybe<TrelloDeletePlannerCalendarEventPayload>;
|
|
198469
200343
|
deleteWorkspaceTag?: Maybe<TrelloDeleteWorkspaceTagPayload>;
|
|
198470
200344
|
disableBoardSelfJoin?: Maybe<TrelloDisableBoardSelfJoinPayload>;
|
|
@@ -198490,6 +200364,7 @@ export declare type TrelloMutationApi = {
|
|
|
198490
200364
|
removeLabelsFromCard?: Maybe<TrelloRemoveLabelsFromCardPayload>;
|
|
198491
200365
|
removeMemberFromCard?: Maybe<TrelloRemoveMemberFromCardPayload>;
|
|
198492
200366
|
removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
|
|
200367
|
+
removePlannerBoardOverride?: Maybe<TrelloRemovePlannerBoardOverridePayload>;
|
|
198493
200368
|
removeWorkspaceTagFromBoard?: Maybe<TrelloRemoveWorkspaceTagFromBoardPayload>;
|
|
198494
200369
|
reopenBoard?: Maybe<TrelloReopenBoardPayload>;
|
|
198495
200370
|
reopenCard?: Maybe<TrelloReopenCardPayload>;
|
|
@@ -198532,6 +200407,7 @@ export declare type TrelloMutationApi = {
|
|
|
198532
200407
|
updateCardPositionOnPlannerCalendarEvent?: Maybe<TrelloUpdateCardPositionOnPlannerCalendarEventPayload>;
|
|
198533
200408
|
updateCardRole?: Maybe<TrelloUpdateCardRolePayload>;
|
|
198534
200409
|
updateCustomField?: Maybe<TrelloUpdateCustomFieldPayload>;
|
|
200410
|
+
updateCustomFieldOption?: Maybe<TrelloUpdateCustomFieldOptionPayload>;
|
|
198535
200411
|
updateInboxBackground?: Maybe<TrelloUpdateInboxBackgroundPayload>;
|
|
198536
200412
|
updateKeyboardShortcutsPref?: Maybe<TrelloUpdateKeyboardShortcutsPrefPayload>;
|
|
198537
200413
|
updateMemberTimezone?: Maybe<TrelloUpdateMemberTimezonePayload>;
|
|
@@ -198638,6 +200514,9 @@ export declare type TrelloMutationApiDeleteBoardBackgroundArgs = {
|
|
|
198638
200514
|
export declare type TrelloMutationApiDeleteCustomFieldArgs = {
|
|
198639
200515
|
input: TrelloDeleteCustomFieldInput;
|
|
198640
200516
|
};
|
|
200517
|
+
export declare type TrelloMutationApiDeleteCustomFieldOptionArgs = {
|
|
200518
|
+
input: TrelloDeleteCustomFieldOptionInput;
|
|
200519
|
+
};
|
|
198641
200520
|
export declare type TrelloMutationApiDeletePlannerCalendarEventArgs = {
|
|
198642
200521
|
input: TrelloDeletePlannerCalendarEventInput;
|
|
198643
200522
|
};
|
|
@@ -198710,6 +200589,9 @@ export declare type TrelloMutationApiRemoveMemberFromCardArgs = {
|
|
|
198710
200589
|
export declare type TrelloMutationApiRemoveMemberFromWorkspaceArgs = {
|
|
198711
200590
|
input: TrelloRemoveMemberFromWorkspaceInput;
|
|
198712
200591
|
};
|
|
200592
|
+
export declare type TrelloMutationApiRemovePlannerBoardOverrideArgs = {
|
|
200593
|
+
input: TrelloRemovePlannerBoardOverrideInput;
|
|
200594
|
+
};
|
|
198713
200595
|
export declare type TrelloMutationApiRemoveWorkspaceTagFromBoardArgs = {
|
|
198714
200596
|
input: TrelloRemoveWorkspaceTagFromBoardInput;
|
|
198715
200597
|
};
|
|
@@ -198833,6 +200715,9 @@ export declare type TrelloMutationApiUpdateCardRoleArgs = {
|
|
|
198833
200715
|
export declare type TrelloMutationApiUpdateCustomFieldArgs = {
|
|
198834
200716
|
input: TrelloUpdateCustomFieldInput;
|
|
198835
200717
|
};
|
|
200718
|
+
export declare type TrelloMutationApiUpdateCustomFieldOptionArgs = {
|
|
200719
|
+
input: TrelloUpdateCustomFieldOptionInput;
|
|
200720
|
+
};
|
|
198836
200721
|
export declare type TrelloMutationApiUpdateInboxBackgroundArgs = {
|
|
198837
200722
|
input: TrelloUpdateInboxBackgroundInput;
|
|
198838
200723
|
};
|
|
@@ -198984,11 +200869,31 @@ export declare type TrelloPlannerBoardOverrideConnection = {
|
|
|
198984
200869
|
edges: Array<TrelloPlannerBoardOverrideEdge>;
|
|
198985
200870
|
pageInfo: PageInfo;
|
|
198986
200871
|
};
|
|
200872
|
+
export declare type TrelloPlannerBoardOverrideConnectionUpdated = {
|
|
200873
|
+
__typename?: 'TrelloPlannerBoardOverrideConnectionUpdated';
|
|
200874
|
+
edges?: Maybe<Array<TrelloPlannerBoardOverrideEdgeUpdated>>;
|
|
200875
|
+
};
|
|
200876
|
+
export declare type TrelloPlannerBoardOverrideDeleted = {
|
|
200877
|
+
__typename?: 'TrelloPlannerBoardOverrideDeleted';
|
|
200878
|
+
id: Scalars['ID']['output'];
|
|
200879
|
+
};
|
|
198987
200880
|
export declare type TrelloPlannerBoardOverrideEdge = {
|
|
198988
200881
|
__typename?: 'TrelloPlannerBoardOverrideEdge';
|
|
198989
200882
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
198990
200883
|
node?: Maybe<TrelloPlannerBoardOverride>;
|
|
198991
200884
|
};
|
|
200885
|
+
export declare type TrelloPlannerBoardOverrideEdgeUpdated = {
|
|
200886
|
+
__typename?: 'TrelloPlannerBoardOverrideEdgeUpdated';
|
|
200887
|
+
node?: Maybe<TrelloPlannerBoardOverrideUpdated>;
|
|
200888
|
+
};
|
|
200889
|
+
export declare type TrelloPlannerBoardOverrideUpdated = {
|
|
200890
|
+
__typename?: 'TrelloPlannerBoardOverrideUpdated';
|
|
200891
|
+
boardId?: Maybe<Scalars['ID']['output']>;
|
|
200892
|
+
boardObjectId?: Maybe<Scalars['ID']['output']>;
|
|
200893
|
+
hasAccess?: Maybe<Scalars['Boolean']['output']>;
|
|
200894
|
+
id: Scalars['ID']['output'];
|
|
200895
|
+
mode?: Maybe<TrelloPlannerBoardFilterMode>;
|
|
200896
|
+
};
|
|
198992
200897
|
export declare type TrelloPlannerCalendar = Node & TrelloProviderCalendarInterface & {
|
|
198993
200898
|
__typename?: 'TrelloPlannerCalendar';
|
|
198994
200899
|
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
@@ -199399,6 +201304,13 @@ export declare type TrelloPlannerDueDateCardsSettingsBoardOverridesArgs = {
|
|
|
199399
201304
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
199400
201305
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
199401
201306
|
};
|
|
201307
|
+
export declare type TrelloPlannerDueDateCardsSettingsUpdated = {
|
|
201308
|
+
__typename?: 'TrelloPlannerDueDateCardsSettingsUpdated';
|
|
201309
|
+
assignedToMe?: Maybe<Scalars['Boolean']['output']>;
|
|
201310
|
+
boardOverrides?: Maybe<TrelloPlannerBoardOverrideConnectionUpdated>;
|
|
201311
|
+
onBoardOverrideDeleted?: Maybe<Array<TrelloPlannerBoardOverrideDeleted>>;
|
|
201312
|
+
soloBoards?: Maybe<Scalars['Boolean']['output']>;
|
|
201313
|
+
};
|
|
199402
201314
|
export declare type TrelloPlannerEventCardConnection = {
|
|
199403
201315
|
__typename?: 'TrelloPlannerEventCardConnection';
|
|
199404
201316
|
calendarStatus?: Maybe<TrelloPlannerCalendarStatus>;
|
|
@@ -199549,7 +201461,7 @@ export declare type TrelloPlannerUpdated = {
|
|
|
199549
201461
|
__typename?: 'TrelloPlannerUpdated';
|
|
199550
201462
|
accounts?: Maybe<TrelloPlannerCalendarAccountConnectionUpdated>;
|
|
199551
201463
|
cardsWithDueDates?: Maybe<TrelloPlannerCardsWithDueDatesConnectionUpdated>;
|
|
199552
|
-
dueDateCardsSettings?: Maybe<
|
|
201464
|
+
dueDateCardsSettings?: Maybe<TrelloPlannerDueDateCardsSettingsUpdated>;
|
|
199553
201465
|
forceUpdateCardsDueTimestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
199554
201466
|
id: Scalars['ID']['output'];
|
|
199555
201467
|
onBoardWithCardDueDeleted?: Maybe<Array<TrelloPlannerCardWithDueDateBoardDeleted>>;
|
|
@@ -200052,6 +201964,15 @@ export declare type TrelloRemoveMemberInput = {
|
|
|
200052
201964
|
cardId: Scalars['ID']['input'];
|
|
200053
201965
|
userId: Scalars['ID']['input'];
|
|
200054
201966
|
};
|
|
201967
|
+
export declare type TrelloRemovePlannerBoardOverrideInput = {
|
|
201968
|
+
boardId: Scalars['ID']['input'];
|
|
201969
|
+
};
|
|
201970
|
+
export declare type TrelloRemovePlannerBoardOverridePayload = Payload & {
|
|
201971
|
+
__typename?: 'TrelloRemovePlannerBoardOverridePayload';
|
|
201972
|
+
boardOverride?: Maybe<TrelloPlannerBoardOverrideDeleted>;
|
|
201973
|
+
errors?: Maybe<Array<MutationError>>;
|
|
201974
|
+
success: Scalars['Boolean']['output'];
|
|
201975
|
+
};
|
|
200055
201976
|
export declare type TrelloRemoveWorkspaceTagFromBoardInput = {
|
|
200056
201977
|
boardId: Scalars['ID']['input'];
|
|
200057
201978
|
tagId: Scalars['ID']['input'];
|
|
@@ -200335,7 +202256,7 @@ export declare type TrelloTemplateGalleryCategory = {
|
|
|
200335
202256
|
export declare type TrelloTemplateGalleryConnection = {
|
|
200336
202257
|
__typename?: 'TrelloTemplateGalleryConnection';
|
|
200337
202258
|
edges: Array<TrelloBoardEdge>;
|
|
200338
|
-
nodes: Array<
|
|
202259
|
+
nodes: Array<TrelloBaseBoard>;
|
|
200339
202260
|
pageInfo: PageInfo;
|
|
200340
202261
|
};
|
|
200341
202262
|
export declare type TrelloTemplateGalleryFilterInput = {
|
|
@@ -200753,6 +202674,19 @@ export declare type TrelloUpdateCustomFieldItemActionDisplayEntities = {
|
|
|
200753
202674
|
customFieldItem?: Maybe<TrelloActionCustomFieldItemEntity>;
|
|
200754
202675
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
200755
202676
|
};
|
|
202677
|
+
export declare type TrelloUpdateCustomFieldOptionInput = {
|
|
202678
|
+
color?: InputMaybe<Scalars['String']['input']>;
|
|
202679
|
+
customFieldId: Scalars['ID']['input'];
|
|
202680
|
+
customFieldOptionId: Scalars['ID']['input'];
|
|
202681
|
+
position?: InputMaybe<Scalars['Float']['input']>;
|
|
202682
|
+
value?: InputMaybe<TrelloCustomFieldOptionValueInput>;
|
|
202683
|
+
};
|
|
202684
|
+
export declare type TrelloUpdateCustomFieldOptionPayload = Payload & {
|
|
202685
|
+
__typename?: 'TrelloUpdateCustomFieldOptionPayload';
|
|
202686
|
+
customFieldOption?: Maybe<TrelloCustomFieldOption>;
|
|
202687
|
+
errors?: Maybe<Array<MutationError>>;
|
|
202688
|
+
success: Scalars['Boolean']['output'];
|
|
202689
|
+
};
|
|
200756
202690
|
export declare type TrelloUpdateCustomFieldPayload = Payload & {
|
|
200757
202691
|
__typename?: 'TrelloUpdateCustomFieldPayload';
|
|
200758
202692
|
customField?: Maybe<TrelloCustomField>;
|
|
@@ -202337,6 +204271,7 @@ export declare type UnifiedPostSummarizerResult = {
|
|
|
202337
204271
|
sentiment?: Maybe<Scalars['String']['output']>;
|
|
202338
204272
|
sessionId?: Maybe<Scalars['String']['output']>;
|
|
202339
204273
|
solutionConfidence?: Maybe<Scalars['String']['output']>;
|
|
204274
|
+
suggestedAnswer?: Maybe<Scalars['String']['output']>;
|
|
202340
204275
|
summary?: Maybe<Scalars['String']['output']>;
|
|
202341
204276
|
};
|
|
202342
204277
|
export declare type UnifiedProfile = UnifiedINode & {
|