@forge/cli-shared 8.20.0-next.2 → 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 +6 -0
- package/out/graphql/graphql-types.d.ts +1453 -75
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +131 -27
- package/out/ui/text.d.ts +3 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +3 -0
- package/package.json +1 -1
|
@@ -1333,12 +1333,12 @@ export declare type AvpDashboardTemplateInput = {
|
|
|
1333
1333
|
};
|
|
1334
1334
|
export declare type AvpDashboardUserAccessInput = {
|
|
1335
1335
|
accessLevel: AvpDashboardIdentityAccessLevel;
|
|
1336
|
-
|
|
1336
|
+
principalAri: Scalars['ID']['input'];
|
|
1337
1337
|
};
|
|
1338
1338
|
export declare type AvpDashboardUserAccessResult = {
|
|
1339
1339
|
__typename?: 'AVPDashboardUserAccessResult';
|
|
1340
1340
|
accessLevel: AvpDashboardIdentityAccessLevel;
|
|
1341
|
-
|
|
1341
|
+
principalAri: Scalars['ID']['output'];
|
|
1342
1342
|
};
|
|
1343
1343
|
export declare type AvpDashboardsConnection = HasPageInfo & {
|
|
1344
1344
|
__typename?: 'AVPDashboardsConnection';
|
|
@@ -15932,6 +15932,7 @@ export declare type ChannelPlatformCheckOtpVerifiedResponse = {
|
|
|
15932
15932
|
export declare type ChannelPlatformClientConfigDetailsResponse = {
|
|
15933
15933
|
__typename?: 'ChannelPlatformClientConfigDetailsResponse';
|
|
15934
15934
|
showCustomerLocalTimeToAgent?: Maybe<Scalars['Boolean']['output']>;
|
|
15935
|
+
supportedChannels?: Maybe<Array<ChannelPlatformChannelType>>;
|
|
15935
15936
|
ticketPlatformType?: Maybe<Scalars['String']['output']>;
|
|
15936
15937
|
};
|
|
15937
15938
|
export declare type ChannelPlatformConnectDetails = {
|
|
@@ -31213,6 +31214,34 @@ export declare type ConfluenceSpace = Node & {
|
|
|
31213
31214
|
type?: Maybe<ConfluenceSpaceType>;
|
|
31214
31215
|
typeSettings?: Maybe<ConfluenceSpaceTypeSettings>;
|
|
31215
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
|
+
};
|
|
31216
31245
|
export declare type ConfluenceSpaceConnection = {
|
|
31217
31246
|
__typename?: 'ConfluenceSpaceConnection';
|
|
31218
31247
|
edges?: Maybe<Array<Maybe<ConfluenceSpaceEdge>>>;
|
|
@@ -32155,6 +32184,17 @@ export declare type ConfluenceUpdateLoomEntryPointsConfigurationPayload = Payloa
|
|
|
32155
32184
|
errors?: Maybe<Array<MutationError>>;
|
|
32156
32185
|
success: Scalars['Boolean']['output'];
|
|
32157
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
|
+
};
|
|
32158
32198
|
export declare type ConfluenceUpdateNcsPdfExportConfigurationPayload = Payload & {
|
|
32159
32199
|
__typename?: 'ConfluenceUpdateNCSPdfExportConfigurationPayload';
|
|
32160
32200
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -32364,6 +32404,18 @@ export declare type ConfluenceUpdateSmartSpaceOverviewTopLinksInput = {
|
|
|
32364
32404
|
edit?: InputMaybe<ConfluenceEditTopLinkInput>;
|
|
32365
32405
|
remove?: InputMaybe<ConfluenceRemoveTopLinkInput>;
|
|
32366
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
|
+
};
|
|
32367
32419
|
export declare type ConfluenceUpdateSpaceInput = {
|
|
32368
32420
|
id: Scalars['ID']['input'];
|
|
32369
32421
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -103213,66 +103265,10 @@ export declare type GrowthUnifiedProfileCompany = {
|
|
|
103213
103265
|
size?: Maybe<GrowthUnifiedProfileCompanySize>;
|
|
103214
103266
|
type?: Maybe<GrowthUnifiedProfileCompanyType>;
|
|
103215
103267
|
};
|
|
103216
|
-
export declare type GrowthUnifiedProfileCompanyProductUsageRecord = {
|
|
103217
|
-
__typename?: 'GrowthUnifiedProfileCompanyProductUsageRecord';
|
|
103218
|
-
domain: Scalars['String']['output'];
|
|
103219
|
-
productUsageAggregateMetrics?: Maybe<Array<Maybe<GrowthUnifiedProfileProductUsageMetric>>>;
|
|
103220
|
-
snapshotDay: Scalars['String']['output'];
|
|
103221
|
-
};
|
|
103222
103268
|
export declare type GrowthUnifiedProfileCompanyProfile = {
|
|
103223
103269
|
__typename?: 'GrowthUnifiedProfileCompanyProfile';
|
|
103224
103270
|
companyType?: Maybe<GrowthUnifiedProfileEntryType>;
|
|
103225
103271
|
};
|
|
103226
|
-
export declare type GrowthUnifiedProfileCompanyProfileResult = {
|
|
103227
|
-
__typename?: 'GrowthUnifiedProfileCompanyProfileResult';
|
|
103228
|
-
companyInfo?: Maybe<GrowthUnifiedProfileCompanyRecord>;
|
|
103229
|
-
companyProductUsage?: Maybe<GrowthUnifiedProfileCompanyProductUsageRecord>;
|
|
103230
|
-
};
|
|
103231
|
-
export declare type GrowthUnifiedProfileCompanyRecord = {
|
|
103232
|
-
__typename?: 'GrowthUnifiedProfileCompanyRecord';
|
|
103233
|
-
address?: Maybe<Scalars['String']['output']>;
|
|
103234
|
-
addressCity?: Maybe<Scalars['String']['output']>;
|
|
103235
|
-
addressCountry?: Maybe<Scalars['String']['output']>;
|
|
103236
|
-
addressState?: Maybe<Scalars['String']['output']>;
|
|
103237
|
-
annualRevenue?: Maybe<Scalars['Float']['output']>;
|
|
103238
|
-
businessName?: Maybe<Scalars['String']['output']>;
|
|
103239
|
-
companyEnterpriseSized?: Maybe<Scalars['Boolean']['output']>;
|
|
103240
|
-
companyId: Scalars['String']['output'];
|
|
103241
|
-
companySize?: Maybe<Scalars['String']['output']>;
|
|
103242
|
-
companyType?: Maybe<Scalars['String']['output']>;
|
|
103243
|
-
countryCode?: Maybe<Scalars['String']['output']>;
|
|
103244
|
-
createdDate?: Maybe<Scalars['String']['output']>;
|
|
103245
|
-
customerAccountId?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
103246
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
103247
|
-
developersCount?: Maybe<Scalars['Int']['output']>;
|
|
103248
|
-
domain: Scalars['String']['output'];
|
|
103249
|
-
employeesRange?: Maybe<Scalars['String']['output']>;
|
|
103250
|
-
enrichmentSource?: Maybe<Scalars['String']['output']>;
|
|
103251
|
-
enterpriseAccountStatus?: Maybe<Scalars['String']['output']>;
|
|
103252
|
-
estimatedAnnualRevenue?: Maybe<Scalars['String']['output']>;
|
|
103253
|
-
industry?: Maybe<Scalars['String']['output']>;
|
|
103254
|
-
industryGroup?: Maybe<Scalars['String']['output']>;
|
|
103255
|
-
itAgentsCount?: Maybe<Scalars['Int']['output']>;
|
|
103256
|
-
knowledgeWorkersCount?: Maybe<Scalars['Int']['output']>;
|
|
103257
|
-
marketCap?: Maybe<Scalars['String']['output']>;
|
|
103258
|
-
naicsCode?: Maybe<Scalars['String']['output']>;
|
|
103259
|
-
numberOfEmployees?: Maybe<Scalars['Int']['output']>;
|
|
103260
|
-
phone?: Maybe<Scalars['String']['output']>;
|
|
103261
|
-
postalCode?: Maybe<Scalars['String']['output']>;
|
|
103262
|
-
recordNumber?: Maybe<Scalars['Int']['output']>;
|
|
103263
|
-
recordStatus?: Maybe<Scalars['String']['output']>;
|
|
103264
|
-
refreshDate?: Maybe<Scalars['String']['output']>;
|
|
103265
|
-
region?: Maybe<Scalars['String']['output']>;
|
|
103266
|
-
revenueCurrency?: Maybe<Scalars['String']['output']>;
|
|
103267
|
-
sector?: Maybe<Scalars['String']['output']>;
|
|
103268
|
-
sectorRaw?: Maybe<Scalars['String']['output']>;
|
|
103269
|
-
sicCode?: Maybe<Scalars['String']['output']>;
|
|
103270
|
-
sourceSequenceIso?: Maybe<Scalars['String']['output']>;
|
|
103271
|
-
stockTicker?: Maybe<Scalars['String']['output']>;
|
|
103272
|
-
subIndustry?: Maybe<Scalars['String']['output']>;
|
|
103273
|
-
techsUsed?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
103274
|
-
website?: Maybe<Scalars['String']['output']>;
|
|
103275
|
-
};
|
|
103276
103272
|
export declare enum GrowthUnifiedProfileCompanySize {
|
|
103277
103273
|
Large = "LARGE",
|
|
103278
103274
|
Medium = "MEDIUM",
|
|
@@ -103562,10 +103558,6 @@ export declare type GrowthUnifiedProfileMarketingUtmInput = {
|
|
|
103562
103558
|
sfdcCampaignId?: InputMaybe<Scalars['String']['input']>;
|
|
103563
103559
|
source?: InputMaybe<Scalars['String']['input']>;
|
|
103564
103560
|
};
|
|
103565
|
-
export declare enum GrowthUnifiedProfileMetric {
|
|
103566
|
-
Mau = "MAU",
|
|
103567
|
-
MauVariation = "MAU_VARIATION"
|
|
103568
|
-
}
|
|
103569
103561
|
export declare type GrowthUnifiedProfileNbpUserRecommendationProduct = {
|
|
103570
103562
|
__typename?: 'GrowthUnifiedProfileNBPUserRecommendationProduct';
|
|
103571
103563
|
key: Scalars['String']['output'];
|
|
@@ -103705,17 +103697,6 @@ export declare type GrowthUnifiedProfileProductNbe = {
|
|
|
103705
103697
|
edition?: Maybe<GrowthUnifiedProfileProductEdition>;
|
|
103706
103698
|
recommendationDate?: Maybe<Scalars['String']['output']>;
|
|
103707
103699
|
};
|
|
103708
|
-
export declare type GrowthUnifiedProfileProductRecord = {
|
|
103709
|
-
__typename?: 'GrowthUnifiedProfileProductRecord';
|
|
103710
|
-
metric: GrowthUnifiedProfileMetric;
|
|
103711
|
-
platform?: Maybe<Scalars['String']['output']>;
|
|
103712
|
-
value: Scalars['Float']['output'];
|
|
103713
|
-
};
|
|
103714
|
-
export declare type GrowthUnifiedProfileProductUsageMetric = {
|
|
103715
|
-
__typename?: 'GrowthUnifiedProfileProductUsageMetric';
|
|
103716
|
-
metrics?: Maybe<Array<Maybe<GrowthUnifiedProfileProductRecord>>>;
|
|
103717
|
-
product: Scalars['String']['output'];
|
|
103718
|
-
};
|
|
103719
103700
|
export declare type GrowthUnifiedProfileResult = {
|
|
103720
103701
|
__typename?: 'GrowthUnifiedProfileResult';
|
|
103721
103702
|
company?: Maybe<GrowthUnifiedProfileCompany>;
|
|
@@ -135501,6 +135482,13 @@ export declare type KitsuneRankInput = {
|
|
|
135501
135482
|
after?: InputMaybe<Scalars['ID']['input']>;
|
|
135502
135483
|
before?: InputMaybe<Scalars['ID']['input']>;
|
|
135503
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
|
+
};
|
|
135504
135492
|
export declare type KitsuneSearchFeedbackConnection = KitsuneConnection & {
|
|
135505
135493
|
__typename?: 'KitsuneSearchFeedbackConnection';
|
|
135506
135494
|
edges: Array<KitsuneSearchFeedbackEdge>;
|
|
@@ -141715,11 +141703,16 @@ export declare type MarketplaceStoreQueryApiWatchedAppsArgs = {
|
|
|
141715
141703
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
141716
141704
|
nextCursor?: InputMaybe<Scalars['String']['input']>;
|
|
141717
141705
|
};
|
|
141706
|
+
export declare type MarketplaceStoreRecommendationsMetadata = {
|
|
141707
|
+
__typename?: 'MarketplaceStoreRecommendationsMetadata';
|
|
141708
|
+
recommendedForYouMetadata?: Maybe<Array<Maybe<MarketplaceStoreRecommendedForYouMetadataItem>>>;
|
|
141709
|
+
};
|
|
141718
141710
|
export declare type MarketplaceStoreRecommendationsSection = {
|
|
141719
141711
|
__typename?: 'MarketplaceStoreRecommendationsSection';
|
|
141720
141712
|
description: Scalars['String']['output'];
|
|
141721
141713
|
id: Scalars['ID']['output'];
|
|
141722
141714
|
recommendationResultsCount: Scalars['Int']['output'];
|
|
141715
|
+
recommendationsMetadata?: Maybe<MarketplaceStoreRecommendationsMetadata>;
|
|
141723
141716
|
screenSpecificProperties: MarketplaceStoreHomePageSectionScreenSpecificProperties;
|
|
141724
141717
|
searchMetadata: MarketplaceStoreSearchMetadata;
|
|
141725
141718
|
title: Scalars['String']['output'];
|
|
@@ -141728,6 +141721,11 @@ export declare enum MarketplaceStoreRecommendationsUsecase {
|
|
|
141728
141721
|
RecommendedAppsForYou = "RECOMMENDED_APPS_FOR_YOU",
|
|
141729
141722
|
SimilarApps = "SIMILAR_APPS"
|
|
141730
141723
|
}
|
|
141724
|
+
export declare type MarketplaceStoreRecommendedForYouMetadataItem = {
|
|
141725
|
+
__typename?: 'MarketplaceStoreRecommendedForYouMetadataItem';
|
|
141726
|
+
productId: Scalars['String']['output'];
|
|
141727
|
+
recoSessionId?: Maybe<Scalars['String']['output']>;
|
|
141728
|
+
};
|
|
141731
141729
|
export declare type MarketplaceStoreRetentionDurationInDays = {
|
|
141732
141730
|
__typename?: 'MarketplaceStoreRetentionDurationInDays';
|
|
141733
141731
|
max: Scalars['Int']['output'];
|
|
@@ -142113,6 +142111,15 @@ export declare type MercuryAddTagsToProposalPayload = Payload & {
|
|
|
142113
142111
|
success: Scalars['Boolean']['output'];
|
|
142114
142112
|
updatedChangeProposal?: Maybe<MercuryChangeProposal>;
|
|
142115
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
|
+
};
|
|
142116
142123
|
export declare type MercuryAddWatcherToFocusAreaInput = {
|
|
142117
142124
|
cloudId: Scalars['ID']['input'];
|
|
142118
142125
|
focusAreaId: Scalars['ID']['input'];
|
|
@@ -142123,6 +142130,16 @@ export declare type MercuryAddWatcherToFocusAreaPayload = Payload & {
|
|
|
142123
142130
|
errors?: Maybe<Array<MutationError>>;
|
|
142124
142131
|
success: Scalars['Boolean']['output'];
|
|
142125
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
|
+
};
|
|
142126
142143
|
export declare type MercuryAggregatedFocusAreaStatusCount = {
|
|
142127
142144
|
__typename?: 'MercuryAggregatedFocusAreaStatusCount';
|
|
142128
142145
|
children: MercuryFocusAreaStatusCount;
|
|
@@ -142133,6 +142150,25 @@ export declare type MercuryAggregatedPortfolioStatusCount = {
|
|
|
142133
142150
|
__typename?: 'MercuryAggregatedPortfolioStatusCount';
|
|
142134
142151
|
children: MercuryFocusAreaStatusCount;
|
|
142135
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
|
+
};
|
|
142136
142172
|
export declare type MercuryArchiveFocusAreaChange = MercuryChangeInterface & Node & {
|
|
142137
142173
|
__typename?: 'MercuryArchiveFocusAreaChange';
|
|
142138
142174
|
changeProposal?: Maybe<MercuryChangeProposal>;
|
|
@@ -142168,6 +142204,16 @@ export declare type MercuryArchiveFocusAreaValidationPayload = Payload & {
|
|
|
142168
142204
|
errors?: Maybe<Array<MutationError>>;
|
|
142169
142205
|
success: Scalars['Boolean']['output'];
|
|
142170
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
|
+
};
|
|
142171
142217
|
export declare type MercuryAssignUserAccessToFocusAreaInput = {
|
|
142172
142218
|
focusAreaAri: Scalars['ID']['input'];
|
|
142173
142219
|
focusAreaUserAccessAssignment: Array<InputMaybe<MercuryFocusAreaUserAccessInput>>;
|
|
@@ -142282,6 +142328,736 @@ export declare type MercuryBudgetAggregation = {
|
|
|
142282
142328
|
aggregatedBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
142283
142329
|
totalAssignedBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
142284
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
|
+
};
|
|
142285
143061
|
export declare type MercuryChange = MercuryArchiveFocusAreaChange | MercuryChangeParentFocusAreaChange | MercuryCreateFocusAreaChange | MercuryMoveFundsChange | MercuryMovePositionsChange | MercuryPositionAllocationChange | MercuryRenameFocusAreaChange | MercuryRequestFundsChange | MercuryRequestPositionsChange;
|
|
142286
143062
|
export declare type MercuryChangeConnection = {
|
|
142287
143063
|
__typename?: 'MercuryChangeConnection';
|
|
@@ -142601,6 +143377,31 @@ export declare type MercuryCommentEdge = {
|
|
|
142601
143377
|
cursor: Scalars['String']['output'];
|
|
142602
143378
|
node?: Maybe<MercuryComment>;
|
|
142603
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
|
+
};
|
|
142604
143405
|
export declare type MercuryCostItem = Node & {
|
|
142605
143406
|
__typename?: 'MercuryCostItem';
|
|
142606
143407
|
costItemSummary?: Maybe<MercuryCostItemSummary>;
|
|
@@ -142736,6 +143537,74 @@ export declare type MercuryCreateBenefitTypePayload = Payload & {
|
|
|
142736
143537
|
export declare type MercuryCreateBooleanCustomFieldDefinitionInput = {
|
|
142737
143538
|
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
142738
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
|
+
};
|
|
142739
143608
|
export declare type MercuryCreateChangeProposalCommentInput = {
|
|
142740
143609
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
142741
143610
|
content: Scalars['String']['input'];
|
|
@@ -143010,6 +143879,18 @@ export declare type MercuryCreateStrategicEventPayload = Payload & {
|
|
|
143010
143879
|
export declare type MercuryCreateTextCustomFieldDefinitionInput = {
|
|
143011
143880
|
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
143012
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
|
+
};
|
|
143013
143894
|
export declare type MercuryCurrency = {
|
|
143014
143895
|
__typename?: 'MercuryCurrency';
|
|
143015
143896
|
code?: Maybe<Scalars['String']['output']>;
|
|
@@ -143168,6 +144049,83 @@ export declare type MercuryDeleteBenefitTypePayload = Payload & {
|
|
|
143168
144049
|
errors?: Maybe<Array<MutationError>>;
|
|
143169
144050
|
success: Scalars['Boolean']['output'];
|
|
143170
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
|
+
};
|
|
143171
144129
|
export declare type MercuryDeleteChangeProposalCommentInput = {
|
|
143172
144130
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
143173
144131
|
id: Scalars['ID']['input'];
|
|
@@ -143383,6 +144341,15 @@ export declare type MercuryDeleteStrategicEventPayload = Payload & {
|
|
|
143383
144341
|
errors?: Maybe<Array<MutationError>>;
|
|
143384
144342
|
success: Scalars['Boolean']['output'];
|
|
143385
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
|
+
};
|
|
143386
144353
|
export declare type MercuryDismissInsightInput = {
|
|
143387
144354
|
dismissalType: MercuryDismissalType;
|
|
143388
144355
|
focusAreaId: Scalars['ID']['input'];
|
|
@@ -144790,6 +145757,36 @@ export declare type MercuryLinkAtlassianWorkToFocusAreaPayload = Payload & {
|
|
|
144790
145757
|
errors?: Maybe<Array<MutationError>>;
|
|
144791
145758
|
success: Scalars['Boolean']['output'];
|
|
144792
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
|
+
};
|
|
144793
145790
|
export declare type MercuryLinkFocusAreasToFocusAreaInput = {
|
|
144794
145791
|
childFocusAreaIds: Array<Scalars['ID']['input']>;
|
|
144795
145792
|
cloudId: Scalars['ID']['input'];
|
|
@@ -144810,6 +145807,16 @@ export declare type MercuryLinkFocusAreasToPortfolioPayload = Payload & {
|
|
|
144810
145807
|
errors?: Maybe<Array<MutationError>>;
|
|
144811
145808
|
success: Scalars['Boolean']['output'];
|
|
144812
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
|
+
};
|
|
144813
145820
|
export declare type MercuryLinkGoalsToChangeProposalInput = {
|
|
144814
145821
|
changeProposalAri: Scalars['ID']['input'];
|
|
144815
145822
|
goalAris: Array<Scalars['ID']['input']>;
|
|
@@ -145291,6 +146298,7 @@ export declare type MercuryNormalizedWorkSearchFiltersInput = {
|
|
|
145291
146298
|
source?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
145292
146299
|
status?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
145293
146300
|
targetDate?: InputMaybe<MercuryNormalizedWorkTargetDateInput>;
|
|
146301
|
+
targetDateRange?: InputMaybe<MercuryNormalizedWorkTargetDateRangeInput>;
|
|
145294
146302
|
type?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
145295
146303
|
};
|
|
145296
146304
|
export declare enum MercuryNormalizedWorkSortField {
|
|
@@ -145319,6 +146327,10 @@ export declare type MercuryNormalizedWorkTargetDateInput = {
|
|
|
145319
146327
|
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
145320
146328
|
targetDateType?: InputMaybe<MercuryProjectTargetDateType>;
|
|
145321
146329
|
};
|
|
146330
|
+
export declare type MercuryNormalizedWorkTargetDateRangeInput = {
|
|
146331
|
+
targetDateMax?: InputMaybe<Scalars['String']['input']>;
|
|
146332
|
+
targetDateMin?: InputMaybe<Scalars['String']['input']>;
|
|
146333
|
+
};
|
|
145322
146334
|
export declare type MercuryNumberCustomField = MercuryCustomField & {
|
|
145323
146335
|
__typename?: 'MercuryNumberCustomField';
|
|
145324
146336
|
createdBy?: Maybe<User>;
|
|
@@ -145810,6 +146822,15 @@ export declare type MercuryProviderWorkType = {
|
|
|
145810
146822
|
name: Scalars['String']['output'];
|
|
145811
146823
|
providerKey: Scalars['String']['output'];
|
|
145812
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
|
+
};
|
|
145813
146834
|
export declare type MercuryPublishFocusAreaInput = {
|
|
145814
146835
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
145815
146836
|
id: Scalars['ID']['input'];
|
|
@@ -145984,12 +147005,35 @@ export declare type MercuryQueryApiSearchFocusAreaActivityHistoryArgs = {
|
|
|
145984
147005
|
export declare type MercuryQueryApiWorkspaceContextArgs = {
|
|
145985
147006
|
cloudId: Scalars['ID']['input'];
|
|
145986
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
|
+
};
|
|
145987
147026
|
export declare type MercuryRankedChangeProposal = {
|
|
145988
147027
|
__typename?: 'MercuryRankedChangeProposal';
|
|
145989
147028
|
changeProposal?: Maybe<MercuryChangeProposal>;
|
|
145990
147029
|
changeProposalsViewId: Scalars['ID']['output'];
|
|
145991
147030
|
rank?: Maybe<Scalars['Int']['output']>;
|
|
145992
147031
|
};
|
|
147032
|
+
export declare type MercuryRecreateBusinessDomainViewBusinessDomainsInput = {
|
|
147033
|
+
businessDomainIds: Array<Scalars['ID']['input']>;
|
|
147034
|
+
id: Scalars['ID']['input'];
|
|
147035
|
+
rankVersion?: InputMaybe<Scalars['String']['input']>;
|
|
147036
|
+
};
|
|
145993
147037
|
export declare type MercuryRecreatePortfolioFocusAreasInput = {
|
|
145994
147038
|
cloudId: Scalars['ID']['input'];
|
|
145995
147039
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
@@ -146006,6 +147050,15 @@ export declare type MercuryRemoveTagsFromProposalPayload = Payload & {
|
|
|
146006
147050
|
success: Scalars['Boolean']['output'];
|
|
146007
147051
|
updatedChangeProposal?: Maybe<MercuryChangeProposal>;
|
|
146008
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
|
+
};
|
|
146009
147062
|
export declare type MercuryRemoveUserAccessToFocusAreaInput = {
|
|
146010
147063
|
focusAreaAri: Scalars['ID']['input'];
|
|
146011
147064
|
principalIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -146015,6 +147068,15 @@ export declare type MercuryRemoveUserAccessToFocusAreaPayload = Payload & {
|
|
|
146015
147068
|
errors?: Maybe<Array<MutationError>>;
|
|
146016
147069
|
success: Scalars['Boolean']['output'];
|
|
146017
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
|
+
};
|
|
146018
147080
|
export declare type MercuryRemoveWatcherFromFocusAreaInput = {
|
|
146019
147081
|
cloudId: Scalars['ID']['input'];
|
|
146020
147082
|
focusAreaId: Scalars['ID']['input'];
|
|
@@ -146044,6 +147106,20 @@ export declare type MercuryRenameFocusAreaChangeInput = {
|
|
|
146044
147106
|
note?: InputMaybe<Scalars['String']['input']>;
|
|
146045
147107
|
targetFocusAreaId: Scalars['ID']['input'];
|
|
146046
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
|
+
};
|
|
146047
147123
|
export declare type MercuryReorderCustomFieldDefinitionOptionsInput = {
|
|
146048
147124
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
146049
147125
|
optionIds: Array<Scalars['ID']['input']>;
|
|
@@ -146134,6 +147210,7 @@ export declare type MercuryRestrictedWork = {
|
|
|
146134
147210
|
};
|
|
146135
147211
|
export declare type MercuryRisk = Node & {
|
|
146136
147212
|
__typename?: 'MercuryRisk';
|
|
147213
|
+
comments?: Maybe<MercuryThreadedCommentConnection>;
|
|
146137
147214
|
createdDate: Scalars['String']['output'];
|
|
146138
147215
|
description?: Maybe<Scalars['String']['output']>;
|
|
146139
147216
|
id: Scalars['ID']['output'];
|
|
@@ -146152,6 +147229,11 @@ export declare type MercuryRisk = Node & {
|
|
|
146152
147229
|
targetDate?: Maybe<MercuryRiskTargetDate>;
|
|
146153
147230
|
updatedDate: Scalars['String']['output'];
|
|
146154
147231
|
};
|
|
147232
|
+
export declare type MercuryRiskCommentsArgs = {
|
|
147233
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
147234
|
+
cloudId: Scalars['ID']['input'];
|
|
147235
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
147236
|
+
};
|
|
146155
147237
|
export declare type MercuryRiskRiskStatusUpdatesArgs = {
|
|
146156
147238
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
146157
147239
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -146369,6 +147451,27 @@ export declare type MercurySetBaselinePayload = Payload & {
|
|
|
146369
147451
|
setBaseline?: Maybe<MercuryBaselineDetails>;
|
|
146370
147452
|
success: Scalars['Boolean']['output'];
|
|
146371
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
|
+
};
|
|
146372
147475
|
export declare type MercurySetChangeProposalCustomFieldInput = {
|
|
146373
147476
|
changeProposalId: Scalars['ID']['input'];
|
|
146374
147477
|
coreField?: InputMaybe<MercuryCustomFieldInput>;
|
|
@@ -146480,6 +147583,14 @@ export declare type MercurySpendAggregation = {
|
|
|
146480
147583
|
aggregatedSpend?: Maybe<Scalars['BigDecimal']['output']>;
|
|
146481
147584
|
totalAssignedSpend?: Maybe<Scalars['BigDecimal']['output']>;
|
|
146482
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
|
+
};
|
|
146483
147594
|
export declare type MercuryStarFocusAreaInput = {
|
|
146484
147595
|
focusAreaId: Scalars['ID']['input'];
|
|
146485
147596
|
};
|
|
@@ -146912,6 +148023,17 @@ export declare type MercuryStrategicEventsQueryApiStrategicEventsSearchArgs = {
|
|
|
146912
148023
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
146913
148024
|
sort?: InputMaybe<Array<InputMaybe<MercuryStrategicEventSort>>>;
|
|
146914
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
|
+
};
|
|
146915
148037
|
export declare type MercurySubscriptionApi = {
|
|
146916
148038
|
__typename?: 'MercurySubscriptionApi';
|
|
146917
148039
|
onUpdateChangeProposals?: Maybe<MercuryOnUpdateChangeProposalsPayload>;
|
|
@@ -146959,6 +148081,33 @@ export declare type MercuryTextCustomFieldDefinition = MercuryCustomFieldDefinit
|
|
|
146959
148081
|
export declare type MercuryTextCustomFieldInput = {
|
|
146960
148082
|
textValue?: InputMaybe<Scalars['String']['input']>;
|
|
146961
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
|
+
};
|
|
146962
148111
|
export declare type MercuryTownsquareProjectInsight = MercuryInsight & {
|
|
146963
148112
|
__typename?: 'MercuryTownsquareProjectInsight';
|
|
146964
148113
|
ari: Scalars['ID']['output'];
|
|
@@ -146970,6 +148119,11 @@ export declare type MercuryTownsquareProjectInsight = MercuryInsight & {
|
|
|
146970
148119
|
summary?: Maybe<Scalars['String']['output']>;
|
|
146971
148120
|
title?: Maybe<Scalars['String']['output']>;
|
|
146972
148121
|
};
|
|
148122
|
+
export declare type MercuryTransitionBusinessDomainStatusInput = {
|
|
148123
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
148124
|
+
id: Scalars['ID']['input'];
|
|
148125
|
+
statusTransitionId: Scalars['ID']['input'];
|
|
148126
|
+
};
|
|
146973
148127
|
export declare type MercuryTransitionChangeProposalPayload = Payload & {
|
|
146974
148128
|
__typename?: 'MercuryTransitionChangeProposalPayload';
|
|
146975
148129
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -147007,6 +148161,14 @@ export declare type MercuryTransitionStrategicEventStatusInput = {
|
|
|
147007
148161
|
id: Scalars['ID']['input'];
|
|
147008
148162
|
statusTransitionId: Scalars['ID']['input'];
|
|
147009
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
|
+
};
|
|
147010
148172
|
export declare type MercuryUnStarFocusAreaInput = {
|
|
147011
148173
|
focusAreaId: Scalars['ID']['input'];
|
|
147012
148174
|
};
|
|
@@ -147015,6 +148177,16 @@ export declare type MercuryUnStarFocusAreaPayload = Payload & {
|
|
|
147015
148177
|
errors?: Maybe<Array<MutationError>>;
|
|
147016
148178
|
success: Scalars['Boolean']['output'];
|
|
147017
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
|
+
};
|
|
147018
148190
|
export declare type MercuryUnarchiveFocusAreaInput = {
|
|
147019
148191
|
cloudId: Scalars['ID']['input'];
|
|
147020
148192
|
comment?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -147150,6 +148322,87 @@ export declare type MercuryUpdateBenefitTypePayload = Payload & {
|
|
|
147150
148322
|
success: Scalars['Boolean']['output'];
|
|
147151
148323
|
updatedBenefitType?: Maybe<MercuryBenefitType>;
|
|
147152
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
|
+
};
|
|
147153
148406
|
export declare type MercuryUpdateChangeFocusAreaInput = {
|
|
147154
148407
|
focusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
147155
148408
|
};
|
|
@@ -147560,6 +148813,17 @@ export declare type MercuryUpdateStrategicEventTargetDateInput = {
|
|
|
147560
148813
|
id: Scalars['ID']['input'];
|
|
147561
148814
|
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
147562
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
|
+
};
|
|
147563
148827
|
export declare type MercuryUpdatedField = {
|
|
147564
148828
|
__typename?: 'MercuryUpdatedField';
|
|
147565
148829
|
field?: Maybe<Scalars['String']['output']>;
|
|
@@ -147582,6 +148846,17 @@ export declare type MercuryUserEdge = {
|
|
|
147582
148846
|
cursor: Scalars['String']['output'];
|
|
147583
148847
|
node?: Maybe<User>;
|
|
147584
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
|
+
};
|
|
147585
148860
|
export declare type MercuryValidateFocusAreasForRankingInput = {
|
|
147586
148861
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
147587
148862
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
@@ -148259,6 +149534,7 @@ export declare type Mutation = {
|
|
|
148259
149534
|
confluence_updateCustomRole?: Maybe<ConfluenceUpdateCustomRolePayload>;
|
|
148260
149535
|
confluence_updateDefaultTitleEmoji?: Maybe<ConfluenceUpdateDefaultTitleEmojiPayload>;
|
|
148261
149536
|
confluence_updateInstance?: Maybe<ConfluenceUpdateInstancePayload>;
|
|
149537
|
+
confluence_updateMarkdownMode?: Maybe<ConfluenceUpdateMarkdownModePayload>;
|
|
148262
149538
|
confluence_updateNcsPdfExportConfiguration?: Maybe<ConfluenceUpdateNcsPdfExportConfigurationPayload>;
|
|
148263
149539
|
confluence_updatePage?: Maybe<ConfluenceUpdatePagePayload>;
|
|
148264
149540
|
confluence_updateQuestion?: Maybe<ConfluenceUpdateQuestionPayload>;
|
|
@@ -148268,6 +149544,7 @@ export declare type Mutation = {
|
|
|
148268
149544
|
confluence_updateShareableLinkSpaceConfig?: Maybe<ConfluenceUpdateShareableLinkSpaceConfigPayload>;
|
|
148269
149545
|
confluence_updateSmartSpaceOverview?: Maybe<ConfluenceUpdateSmartSpaceOverviewPayload>;
|
|
148270
149546
|
confluence_updateSpaceAccessRequestSettings?: Maybe<ConfluenceUpdateAccessRequestSettingsPayload>;
|
|
149547
|
+
confluence_updateSpaceAnalyticsPermissions?: Maybe<ConfluenceUpdateSpaceAnalyticsPermissionsPayload>;
|
|
148271
149548
|
confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
|
|
148272
149549
|
confluence_updateTeamPresenceSpaceSettings?: Maybe<ConfluenceUpdateTeamPresenceSpaceSettingsPayload>;
|
|
148273
149550
|
confluence_updateTitleEmoji?: Maybe<ConfluenceUpdateTitleEmojiPayload>;
|
|
@@ -148758,6 +150035,8 @@ export declare type Mutation = {
|
|
|
148758
150035
|
marketplaceConsole: MarketplaceConsoleMutationApi;
|
|
148759
150036
|
marketplaceStore?: Maybe<MarketplaceStoreMutationApi>;
|
|
148760
150037
|
mercury?: Maybe<MercuryMutationApi>;
|
|
150038
|
+
mercury_businessDomains?: Maybe<MercuryBusinessDomainsMutationApi>;
|
|
150039
|
+
mercury_comments?: Maybe<MercuryCommentMutationApi>;
|
|
148761
150040
|
mercury_funds?: Maybe<MercuryFundsMutationApi>;
|
|
148762
150041
|
mercury_insights?: Maybe<MercuryInsightsMutationApi>;
|
|
148763
150042
|
mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationMutationApi>;
|
|
@@ -148857,6 +150136,7 @@ export declare type Mutation = {
|
|
|
148857
150136
|
radar_updateFieldSettings?: Maybe<RadarMutationResponse>;
|
|
148858
150137
|
radar_updateFocusAreaMappings?: Maybe<RadarMutationResponse>;
|
|
148859
150138
|
radar_updateFocusAreaProposalChanges?: Maybe<RadarUpdateFocusAreaProposalChangesMutationResponse>;
|
|
150139
|
+
radar_updateMetricsSettings?: Maybe<Array<RadarMetricSettings>>;
|
|
148860
150140
|
radar_updateNotificationSettings?: Maybe<Array<RadarNotification>>;
|
|
148861
150141
|
radar_updatePositionLaborCostEstimateSettings?: Maybe<RadarUpdatePositionLaborCostResponse>;
|
|
148862
150142
|
radar_updateWorkspaceSettings?: Maybe<RadarMutationResponse>;
|
|
@@ -150571,6 +151851,10 @@ export declare type MutationConfluence_UpdateInstanceArgs = {
|
|
|
150571
151851
|
input: ConfluenceUpdateInstanceInput;
|
|
150572
151852
|
pageAri: Scalars['ID']['input'];
|
|
150573
151853
|
};
|
|
151854
|
+
export declare type MutationConfluence_UpdateMarkdownModeArgs = {
|
|
151855
|
+
cloudId: Scalars['ID']['input'];
|
|
151856
|
+
input: ConfluenceUpdateMarkdownModeInput;
|
|
151857
|
+
};
|
|
150574
151858
|
export declare type MutationConfluence_UpdateNcsPdfExportConfigurationArgs = {
|
|
150575
151859
|
cloudId: Scalars['ID']['input'];
|
|
150576
151860
|
input: ConfluenceUpdatePdfExportNoCodeStylingConfigInput;
|
|
@@ -150608,6 +151892,10 @@ export declare type MutationConfluence_UpdateSpaceAccessRequestSettingsArgs = {
|
|
|
150608
151892
|
cloudId: Scalars['ID']['input'];
|
|
150609
151893
|
input: ConfluenceUpdateAccessRequestSettingsInput;
|
|
150610
151894
|
};
|
|
151895
|
+
export declare type MutationConfluence_UpdateSpaceAnalyticsPermissionsArgs = {
|
|
151896
|
+
cloudId: Scalars['ID']['input'];
|
|
151897
|
+
input: ConfluenceUpdateSpaceAnalyticsPermissionsInput;
|
|
151898
|
+
};
|
|
150611
151899
|
export declare type MutationConfluence_UpdateSubCalendarHiddenEventsArgs = {
|
|
150612
151900
|
cloudId: Scalars['ID']['input'];
|
|
150613
151901
|
input: Array<ConfluenceUpdateSubCalendarHiddenEventsInput>;
|
|
@@ -152534,6 +153822,10 @@ export declare type MutationRadar_UpdateFocusAreaProposalChangesArgs = {
|
|
|
152534
153822
|
cloudId: Scalars['ID']['input'];
|
|
152535
153823
|
input: Array<RadarPositionProposalChangeInput>;
|
|
152536
153824
|
};
|
|
153825
|
+
export declare type MutationRadar_UpdateMetricsSettingsArgs = {
|
|
153826
|
+
cloudId: Scalars['ID']['input'];
|
|
153827
|
+
input: Array<RadarMetricSettingsInput>;
|
|
153828
|
+
};
|
|
152537
153829
|
export declare type MutationRadar_UpdateNotificationSettingsArgs = {
|
|
152538
153830
|
cloudId: Scalars['ID']['input'];
|
|
152539
153831
|
input: Array<RadarNotificationInput>;
|
|
@@ -156284,6 +157576,7 @@ export declare type PublishedContentProperties = {
|
|
|
156284
157576
|
externalVersionId?: Maybe<Scalars['String']['output']>;
|
|
156285
157577
|
generatedBy?: Maybe<Scalars['String']['output']>;
|
|
156286
157578
|
hasBeenTitled?: Maybe<Scalars['Boolean']['output']>;
|
|
157579
|
+
isMarkdownMode?: Maybe<Scalars['Boolean']['output']>;
|
|
156287
157580
|
titleEmoji?: Maybe<Scalars['String']['output']>;
|
|
156288
157581
|
versionContainsAIContent?: Maybe<Scalars['Boolean']['output']>;
|
|
156289
157582
|
};
|
|
@@ -156847,6 +158140,7 @@ export declare type Query = {
|
|
|
156847
158140
|
confluence_slide?: Maybe<ConfluenceSlide>;
|
|
156848
158141
|
confluence_slides?: Maybe<Array<Maybe<ConfluenceSlide>>>;
|
|
156849
158142
|
confluence_smartSpaceOverview?: Maybe<ConfluenceSmartSpaceOverview>;
|
|
158143
|
+
confluence_spaceAnalyticsPermissions?: Maybe<ConfluenceSpaceAnalyticsPermissionConnection>;
|
|
156850
158144
|
confluence_spaceMediaSession?: Maybe<ContentMediaSession>;
|
|
156851
158145
|
confluence_spacePermissionCombinationsByCriteria?: Maybe<ConfluenceSpacePermissionCombinationConnection>;
|
|
156852
158146
|
confluence_spacePermissionsByCombinationId?: Maybe<ConfluenceSpacePermissionConnection>;
|
|
@@ -157235,10 +158529,11 @@ export declare type Query = {
|
|
|
157235
158529
|
kitsune_organizationByAri?: Maybe<KitsuneOrganization>;
|
|
157236
158530
|
kitsune_organizations?: Maybe<Array<Maybe<KitsuneOrganization>>>;
|
|
157237
158531
|
kitsune_organizationsByName?: Maybe<Array<Maybe<KitsuneOrganization>>>;
|
|
157238
|
-
kitsune_searchChunk?: Maybe<Array<
|
|
158532
|
+
kitsune_searchChunk?: Maybe<Array<KitsuneSearchChunk>>;
|
|
157239
158533
|
kitsune_searchCustomers?: Maybe<KitsuneCustomerConnection>;
|
|
157240
158534
|
kitsune_searchFeedback?: Maybe<KitsuneFeedbackConnection>;
|
|
157241
158535
|
kitsune_searchFeedbackWithHighlights?: Maybe<KitsuneSearchFeedbackConnection>;
|
|
158536
|
+
kitsune_searchFields?: Maybe<KitsuneFieldConnection>;
|
|
157242
158537
|
kitsune_searchOrganizations?: Maybe<KitsuneOrganizationConnection>;
|
|
157243
158538
|
kitsune_sections?: Maybe<Array<Maybe<KitsuneSection>>>;
|
|
157244
158539
|
kitsune_snippets?: Maybe<Array<Maybe<KitsuneSnippet>>>;
|
|
@@ -157308,6 +158603,8 @@ export declare type Query = {
|
|
|
157308
158603
|
media_items?: Maybe<Array<MediaItem>>;
|
|
157309
158604
|
media_itemsByDescriptor?: Maybe<Array<MediaItem>>;
|
|
157310
158605
|
mercury?: Maybe<MercuryQueryApi>;
|
|
158606
|
+
mercury_businessDomains?: Maybe<MercuryBusinessDomainsQueryApi>;
|
|
158607
|
+
mercury_comments?: Maybe<MercuryCommentQueryApi>;
|
|
157311
158608
|
mercury_dataIntegrations?: Maybe<MercuryDataIntegrationsQueryApi>;
|
|
157312
158609
|
mercury_funds?: Maybe<MercuryFundsQueryApi>;
|
|
157313
158610
|
mercury_insights?: Maybe<MercuryInsightsQueryApi>;
|
|
@@ -159978,6 +161275,12 @@ export declare type QueryConfluence_SmartSpaceOverviewArgs = {
|
|
|
159978
161275
|
cloudId: Scalars['ID']['input'];
|
|
159979
161276
|
spaceKey: Scalars['String']['input'];
|
|
159980
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
|
+
};
|
|
159981
161284
|
export declare type QueryConfluence_SpaceMediaSessionArgs = {
|
|
159982
161285
|
cloudId: Scalars['ID']['input'];
|
|
159983
161286
|
contentId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -161641,6 +162944,15 @@ export declare type QueryKitsune_SearchFeedbackWithHighlightsArgs = {
|
|
|
161641
162944
|
workspace?: InputMaybe<KitsuneWorkspaceIdentifierInput>;
|
|
161642
162945
|
workspaceAri: Scalars['ID']['input'];
|
|
161643
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
|
+
};
|
|
161644
162956
|
export declare type QueryKitsune_SearchOrganizationsArgs = {
|
|
161645
162957
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
161646
162958
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -163599,6 +164911,36 @@ export declare type RadarLastAppliedFilterInput = {
|
|
|
163599
164911
|
pageName: Scalars['String']['input'];
|
|
163600
164912
|
rqlQuery?: InputMaybe<Scalars['String']['input']>;
|
|
163601
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
|
+
};
|
|
163602
164944
|
export declare type RadarMoney = {
|
|
163603
164945
|
__typename?: 'RadarMoney';
|
|
163604
164946
|
amount: Scalars['String']['output'];
|
|
@@ -163685,6 +165027,11 @@ export declare type RadarNumericFieldValue = {
|
|
|
163685
165027
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
163686
165028
|
value?: Maybe<Scalars['Int']['output']>;
|
|
163687
165029
|
};
|
|
165030
|
+
export declare enum RadarOrgMetric {
|
|
165031
|
+
CraftRatio = "CRAFT_RATIO",
|
|
165032
|
+
Footprint = "FOOTPRINT",
|
|
165033
|
+
SpanOfControl = "SPAN_OF_CONTROL"
|
|
165034
|
+
}
|
|
163688
165035
|
export declare type RadarPermissions = {
|
|
163689
165036
|
__typename?: 'RadarPermissions';
|
|
163690
165037
|
canManagersAllocate: Scalars['Boolean']['output'];
|
|
@@ -186359,6 +187706,11 @@ export declare type SmartUserFeatures = {
|
|
|
186359
187706
|
recommendedPeople?: Maybe<Array<Maybe<RecommendedPeopleItem>>>;
|
|
186360
187707
|
recommendedSpaces?: Maybe<Array<Maybe<RecommendedSpaceItem>>>;
|
|
186361
187708
|
};
|
|
187709
|
+
export declare type SmartsConfluenceContext = {
|
|
187710
|
+
__typename?: 'SmartsConfluenceContext';
|
|
187711
|
+
id: Scalars['ID']['output'];
|
|
187712
|
+
status: Scalars['String']['output'];
|
|
187713
|
+
};
|
|
186362
187714
|
export declare type SmartsContext = {
|
|
186363
187715
|
additionalContextList?: InputMaybe<Array<SmartsKeyValue>>;
|
|
186364
187716
|
containerId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -186376,8 +187728,9 @@ export declare type SmartsContextServiceQueryApiQuickfindUserRecommendationsArgs
|
|
|
186376
187728
|
};
|
|
186377
187729
|
export declare type SmartsContextServiceUserRecommendation = {
|
|
186378
187730
|
__typename?: 'SmartsContextServiceUserRecommendation';
|
|
187731
|
+
context?: Maybe<SmartsRecommendationContext>;
|
|
186379
187732
|
id: Scalars['ID']['output'];
|
|
186380
|
-
object?: Maybe<
|
|
187733
|
+
object?: Maybe<SmartsRecommendedEntity>;
|
|
186381
187734
|
reason?: Maybe<Scalars['String']['output']>;
|
|
186382
187735
|
score?: Maybe<Scalars['Float']['output']>;
|
|
186383
187736
|
};
|
|
@@ -186422,6 +187775,11 @@ export declare type SmartsQueryApiRecommendedObjectArgs = {
|
|
|
186422
187775
|
export declare type SmartsQueryApiRecommendedUserArgs = {
|
|
186423
187776
|
recommendationsQuery: SmartsRecommendationsQuery;
|
|
186424
187777
|
};
|
|
187778
|
+
export declare type SmartsRecommendationContext = {
|
|
187779
|
+
__typename?: 'SmartsRecommendationContext';
|
|
187780
|
+
confluence?: Maybe<SmartsConfluenceContext>;
|
|
187781
|
+
thirdParty?: Maybe<SmartsThirdPartyContext>;
|
|
187782
|
+
};
|
|
186425
187783
|
export declare type SmartsRecommendationsFieldQuery = {
|
|
186426
187784
|
context: SmartsFieldContext;
|
|
186427
187785
|
maxNumberOfResults?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -186449,6 +187807,7 @@ export declare type SmartsRecommendedContainerV2 = {
|
|
|
186449
187807
|
id: Scalars['ID']['output'];
|
|
186450
187808
|
score?: Maybe<Scalars['Float']['output']>;
|
|
186451
187809
|
};
|
|
187810
|
+
export declare type SmartsRecommendedEntity = ConfluencePage | ExternalDocument;
|
|
186452
187811
|
export declare type SmartsRecommendedFieldObject = {
|
|
186453
187812
|
__typename?: 'SmartsRecommendedFieldObject';
|
|
186454
187813
|
id: Scalars['ID']['output'];
|
|
@@ -186470,6 +187829,11 @@ export declare type SmartsRecommendedUser = {
|
|
|
186470
187829
|
score?: Maybe<Scalars['Float']['output']>;
|
|
186471
187830
|
user?: Maybe<User>;
|
|
186472
187831
|
};
|
|
187832
|
+
export declare type SmartsThirdPartyContext = {
|
|
187833
|
+
__typename?: 'SmartsThirdPartyContext';
|
|
187834
|
+
ari: Scalars['ID']['output'];
|
|
187835
|
+
siteOrGraphWorkspaceAri: Scalars['ID']['output'];
|
|
187836
|
+
};
|
|
186473
187837
|
export declare type SocialSignalSearch = {
|
|
186474
187838
|
__typename?: 'SocialSignalSearch';
|
|
186475
187839
|
objectARI: Scalars['ID']['output'];
|
|
@@ -198081,6 +199445,7 @@ export declare type TrelloEnterprise = Node & {
|
|
|
198081
199445
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
198082
199446
|
id: Scalars['ID']['output'];
|
|
198083
199447
|
managedMemberTokensCount?: Maybe<Scalars['Int']['output']>;
|
|
199448
|
+
memberOAuth2AccessGrants?: Maybe<TrelloMemberOAuth2AccessGrantsResult>;
|
|
198084
199449
|
membersWithTokens?: Maybe<TrelloEnterpriseMemberTokenConnection>;
|
|
198085
199450
|
objectId: Scalars['ID']['output'];
|
|
198086
199451
|
prefs: TrelloEnterprisePrefs;
|
|
@@ -198092,6 +199457,9 @@ export declare type TrelloEnterpriseAdminsArgs = {
|
|
|
198092
199457
|
export declare type TrelloEnterpriseManagedMemberTokensCountArgs = {
|
|
198093
199458
|
filter?: InputMaybe<TrelloTokenFilter>;
|
|
198094
199459
|
};
|
|
199460
|
+
export declare type TrelloEnterpriseMemberOAuth2AccessGrantsArgs = {
|
|
199461
|
+
memberId: Scalars['ID']['input'];
|
|
199462
|
+
};
|
|
198095
199463
|
export declare type TrelloEnterpriseMembersWithTokensArgs = {
|
|
198096
199464
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
198097
199465
|
filter?: InputMaybe<TrelloTokenFilter>;
|
|
@@ -198725,6 +200093,16 @@ export declare type TrelloMemberNonPublicData = {
|
|
|
198725
200093
|
initials?: Maybe<Scalars['String']['output']>;
|
|
198726
200094
|
};
|
|
198727
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
|
+
};
|
|
198728
200106
|
export declare type TrelloMemberPlannerEventCardsUpdated = {
|
|
198729
200107
|
__typename?: 'TrelloMemberPlannerEventCardsUpdated';
|
|
198730
200108
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|