@forge/cli-shared 8.20.0-next.4 → 8.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +26 -0
- package/out/graphql/graphql-types.d.ts +1285 -35
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +135 -32
- package/package.json +2 -2
|
@@ -434,8 +434,8 @@ export declare type AvpAnalyticsDeleteModelInput = {
|
|
|
434
434
|
};
|
|
435
435
|
export declare type AvpAnalyticsDeleteModelPayload = Payload & {
|
|
436
436
|
__typename?: 'AVPAnalyticsDeleteModelPayload';
|
|
437
|
+
acknowledgedErrors?: Maybe<Array<AvpAnalyticsAcknowledgeableError>>;
|
|
437
438
|
errors?: Maybe<Array<MutationError>>;
|
|
438
|
-
needAcknowledgement?: Maybe<AvpAnalyticsAcknowledgeableError>;
|
|
439
439
|
success: Scalars['Boolean']['output'];
|
|
440
440
|
};
|
|
441
441
|
export declare type AvpAnalyticsDiscardModelUpdatesInput = {
|
|
@@ -446,9 +446,9 @@ export declare type AvpAnalyticsDiscardModelUpdatesInput = {
|
|
|
446
446
|
};
|
|
447
447
|
export declare type AvpAnalyticsDiscardModelUpdatesPayload = Payload & {
|
|
448
448
|
__typename?: 'AVPAnalyticsDiscardModelUpdatesPayload';
|
|
449
|
+
acknowledgedErrors?: Maybe<Array<AvpAnalyticsAcknowledgeableError>>;
|
|
449
450
|
errors?: Maybe<Array<MutationError>>;
|
|
450
451
|
model?: Maybe<AvpAnalyticsModel>;
|
|
451
|
-
needAcknowledgement?: Maybe<AvpAnalyticsAcknowledgeableError>;
|
|
452
452
|
success: Scalars['Boolean']['output'];
|
|
453
453
|
};
|
|
454
454
|
export declare type AvpAnalyticsError = {
|
|
@@ -13230,6 +13230,13 @@ export declare type BlockServiceUpdateDocumentReferencesInput = {
|
|
|
13230
13230
|
};
|
|
13231
13231
|
export declare type BlockSmartLink = SmartLink & {
|
|
13232
13232
|
__typename?: 'BlockSmartLink';
|
|
13233
|
+
canView: Scalars['Boolean']['output'];
|
|
13234
|
+
emojiTitle?: Maybe<Scalars['String']['output']>;
|
|
13235
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
13236
|
+
product?: Maybe<Scalars['String']['output']>;
|
|
13237
|
+
resolved: Scalars['Boolean']['output'];
|
|
13238
|
+
resourceType?: Maybe<Scalars['String']['output']>;
|
|
13239
|
+
subType?: Maybe<Scalars['String']['output']>;
|
|
13233
13240
|
title?: Maybe<Scalars['String']['output']>;
|
|
13234
13241
|
url: Scalars['String']['output'];
|
|
13235
13242
|
};
|
|
@@ -29825,6 +29832,10 @@ export declare type ConfluencePageBlogified = {
|
|
|
29825
29832
|
spaceKey?: Maybe<Scalars['String']['output']>;
|
|
29826
29833
|
spaceName?: Maybe<Scalars['String']['output']>;
|
|
29827
29834
|
};
|
|
29835
|
+
export declare type ConfluencePageBriefing = {
|
|
29836
|
+
__typename?: 'ConfluencePageBriefing';
|
|
29837
|
+
briefing: Scalars['String']['output'];
|
|
29838
|
+
};
|
|
29828
29839
|
export declare type ConfluencePageInfo = {
|
|
29829
29840
|
__typename?: 'ConfluencePageInfo';
|
|
29830
29841
|
endCursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -31167,16 +31178,6 @@ export declare type ConfluenceSetContentGeneralAccessModePayload = Payload & {
|
|
|
31167
31178
|
errors?: Maybe<Array<MutationError>>;
|
|
31168
31179
|
success: Scalars['Boolean']['output'];
|
|
31169
31180
|
};
|
|
31170
|
-
export declare type ConfluenceSetCutoverRoleConfigInput = {
|
|
31171
|
-
fallbackRoleId?: InputMaybe<Scalars['ID']['input']>;
|
|
31172
|
-
strategy: ConfluenceCutoverFallbackStrategy;
|
|
31173
|
-
};
|
|
31174
|
-
export declare type ConfluenceSetCutoverRoleConfigPayload = Payload & {
|
|
31175
|
-
__typename?: 'ConfluenceSetCutoverRoleConfigPayload';
|
|
31176
|
-
cutoverRoleConfig?: Maybe<ConfluenceCutoverRoleConfig>;
|
|
31177
|
-
errors?: Maybe<Array<MutationError>>;
|
|
31178
|
-
success: Scalars['Boolean']['output'];
|
|
31179
|
-
};
|
|
31180
31181
|
export declare type ConfluenceSetSubCalendarReminderInput = {
|
|
31181
31182
|
isReminder: Scalars['Boolean']['input'];
|
|
31182
31183
|
subCalendarId: Scalars['ID']['input'];
|
|
@@ -32392,6 +32393,31 @@ export declare type ConfluenceUpdateMarkdownModePayload = Payload & {
|
|
|
32392
32393
|
isMarkdownMode?: Maybe<Scalars['Boolean']['output']>;
|
|
32393
32394
|
success: Scalars['Boolean']['output'];
|
|
32394
32395
|
};
|
|
32396
|
+
export declare enum ConfluenceUpdateModeChangeErrorCode {
|
|
32397
|
+
AlreadyInRolesMode = "ALREADY_IN_ROLES_MODE",
|
|
32398
|
+
ExperimentDisabled = "EXPERIMENT_DISABLED",
|
|
32399
|
+
FallbackRoleNotFound = "FALLBACK_ROLE_NOT_FOUND",
|
|
32400
|
+
FallbackRoleNoLongerEligible = "FALLBACK_ROLE_NO_LONGER_ELIGIBLE",
|
|
32401
|
+
InternalError = "INTERNAL_ERROR",
|
|
32402
|
+
InvalidStrategyFallbackCombination = "INVALID_STRATEGY_FALLBACK_COMBINATION",
|
|
32403
|
+
PermissionDenied = "PERMISSION_DENIED"
|
|
32404
|
+
}
|
|
32405
|
+
export declare type ConfluenceUpdateModeChangeInput = {
|
|
32406
|
+
fallbackRoleId?: InputMaybe<Scalars['ID']['input']>;
|
|
32407
|
+
strategy: ConfluenceCutoverFallbackStrategy;
|
|
32408
|
+
};
|
|
32409
|
+
export declare type ConfluenceUpdateModeChangeMutationErrorExtension = MutationErrorExtension & {
|
|
32410
|
+
__typename?: 'ConfluenceUpdateModeChangeMutationErrorExtension';
|
|
32411
|
+
code: ConfluenceUpdateModeChangeErrorCode;
|
|
32412
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
32413
|
+
field?: Maybe<Scalars['String']['output']>;
|
|
32414
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
32415
|
+
};
|
|
32416
|
+
export declare type ConfluenceUpdateModeChangePayload = Payload & {
|
|
32417
|
+
__typename?: 'ConfluenceUpdateModeChangePayload';
|
|
32418
|
+
errors?: Maybe<Array<MutationError>>;
|
|
32419
|
+
success: Scalars['Boolean']['output'];
|
|
32420
|
+
};
|
|
32395
32421
|
export declare type ConfluenceUpdateNcsPdfExportConfigurationPayload = Payload & {
|
|
32396
32422
|
__typename?: 'ConfluenceUpdateNCSPdfExportConfigurationPayload';
|
|
32397
32423
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -34161,6 +34187,7 @@ export declare type ConvoAiSkill = {
|
|
|
34161
34187
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
34162
34188
|
id: Scalars['ID']['output'];
|
|
34163
34189
|
integrationKeys: Array<Scalars['String']['output']>;
|
|
34190
|
+
integrations: Array<ConvoAiSkillIntegration>;
|
|
34164
34191
|
name: Scalars['String']['output'];
|
|
34165
34192
|
slashCommand?: Maybe<Scalars['String']['output']>;
|
|
34166
34193
|
source: ConvoAiSkillSource;
|
|
@@ -34172,6 +34199,13 @@ export declare type ConvoAiSkillEdge = {
|
|
|
34172
34199
|
cursor: Scalars['String']['output'];
|
|
34173
34200
|
node?: Maybe<ConvoAiSkill>;
|
|
34174
34201
|
};
|
|
34202
|
+
export declare type ConvoAiSkillIntegration = {
|
|
34203
|
+
__typename?: 'ConvoAiSkillIntegration';
|
|
34204
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
34205
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
34206
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
34207
|
+
key: Scalars['String']['output'];
|
|
34208
|
+
};
|
|
34175
34209
|
export declare type ConvoAiSkillListMetadata = {
|
|
34176
34210
|
__typename?: 'ConvoAiSkillListMetadata';
|
|
34177
34211
|
anthropicCount: Scalars['Int']['output'];
|
|
@@ -42168,7 +42202,14 @@ export declare type EmbeddedMediaTokenV2 = {
|
|
|
42168
42202
|
};
|
|
42169
42203
|
export declare type EmbeddedSmartLink = SmartLink & {
|
|
42170
42204
|
__typename?: 'EmbeddedSmartLink';
|
|
42205
|
+
canView: Scalars['Boolean']['output'];
|
|
42206
|
+
emojiTitle?: Maybe<Scalars['String']['output']>;
|
|
42207
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
42171
42208
|
layout: Scalars['String']['output'];
|
|
42209
|
+
product?: Maybe<Scalars['String']['output']>;
|
|
42210
|
+
resolved: Scalars['Boolean']['output'];
|
|
42211
|
+
resourceType?: Maybe<Scalars['String']['output']>;
|
|
42212
|
+
subType?: Maybe<Scalars['String']['output']>;
|
|
42172
42213
|
title?: Maybe<Scalars['String']['output']>;
|
|
42173
42214
|
url: Scalars['String']['output'];
|
|
42174
42215
|
width: Scalars['Float']['output'];
|
|
@@ -107262,6 +107303,13 @@ export declare type InlineCommentResolveProperties = {
|
|
|
107262
107303
|
};
|
|
107263
107304
|
export declare type InlineSmartLink = SmartLink & {
|
|
107264
107305
|
__typename?: 'InlineSmartLink';
|
|
107306
|
+
canView: Scalars['Boolean']['output'];
|
|
107307
|
+
emojiTitle?: Maybe<Scalars['String']['output']>;
|
|
107308
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
107309
|
+
product?: Maybe<Scalars['String']['output']>;
|
|
107310
|
+
resolved: Scalars['Boolean']['output'];
|
|
107311
|
+
resourceType?: Maybe<Scalars['String']['output']>;
|
|
107312
|
+
subType?: Maybe<Scalars['String']['output']>;
|
|
107265
107313
|
title?: Maybe<Scalars['String']['output']>;
|
|
107266
107314
|
url: Scalars['String']['output'];
|
|
107267
107315
|
};
|
|
@@ -107931,6 +107979,13 @@ export declare type IssueDevOpsTestSummary = {
|
|
|
107931
107979
|
numberSkipped?: Maybe<Scalars['Int']['output']>;
|
|
107932
107980
|
totalNumber?: Maybe<Scalars['Int']['output']>;
|
|
107933
107981
|
};
|
|
107982
|
+
export declare type IssueParentTypeConfig = {
|
|
107983
|
+
__typename?: 'IssueParentTypeConfig';
|
|
107984
|
+
hierarchyLevelType?: Maybe<Scalars['CardTypeHierarchyLevelType']['output']>;
|
|
107985
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
107986
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
107987
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
107988
|
+
};
|
|
107934
107989
|
export declare type JiraAdf = {
|
|
107935
107990
|
__typename?: 'JiraADF';
|
|
107936
107991
|
convertedPlainText?: Maybe<JiraAdfToConvertedPlainText>;
|
|
@@ -110518,6 +110573,7 @@ export declare type JiraBoardViewInput = {
|
|
|
110518
110573
|
export declare type JiraBoardViewIssuePositions = {
|
|
110519
110574
|
__typename?: 'JiraBoardViewIssuePositions';
|
|
110520
110575
|
issuesToInsert?: Maybe<Array<JiraBoardViewCellIssuePositionMapping>>;
|
|
110576
|
+
swimlaneIdsToRemove?: Maybe<Array<Scalars['ID']['output']>>;
|
|
110521
110577
|
swimlanesToInsert?: Maybe<Array<JiraBoardViewSwimlanePosition>>;
|
|
110522
110578
|
};
|
|
110523
110579
|
export declare type JiraBoardViewLayout = JiraBoardViewColumnLayout | JiraBoardViewSwimlaneLayout;
|
|
@@ -114828,8 +114884,10 @@ export declare type JiraFieldSetPreferencesUpdatePayload = Payload & {
|
|
|
114828
114884
|
view?: Maybe<JiraView>;
|
|
114829
114885
|
};
|
|
114830
114886
|
export declare type JiraFieldSetPreferencesUpdatePayloadFieldSetViewArgs = {
|
|
114887
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
114831
114888
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
114832
114889
|
issueTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
114890
|
+
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
114833
114891
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
114834
114892
|
};
|
|
114835
114893
|
export declare type JiraFieldSetView = JiraFieldSetsViewMetadata & Node & {
|
|
@@ -135598,6 +135656,10 @@ export declare type JsonContentPropertyEdge = {
|
|
|
135598
135656
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
135599
135657
|
node?: Maybe<JsonContentProperty>;
|
|
135600
135658
|
};
|
|
135659
|
+
export declare type JswApplicationProperties = {
|
|
135660
|
+
__typename?: 'JswApplicationProperties';
|
|
135661
|
+
createStatusIsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
135662
|
+
};
|
|
135601
135663
|
export declare type JswAvailableCardLayoutField = Node & {
|
|
135602
135664
|
__typename?: 'JswAvailableCardLayoutField';
|
|
135603
135665
|
fieldId: Scalars['ID']['output'];
|
|
@@ -135720,6 +135782,11 @@ export declare type JswCustomSwimlaneEdge = {
|
|
|
135720
135782
|
cursor: Scalars['String']['output'];
|
|
135721
135783
|
node?: Maybe<JswCustomSwimlane>;
|
|
135722
135784
|
};
|
|
135785
|
+
export declare type JswGlobalConfig = {
|
|
135786
|
+
__typename?: 'JswGlobalConfig';
|
|
135787
|
+
applicationProperties?: Maybe<JswApplicationProperties>;
|
|
135788
|
+
issueParentTypeConfig?: Maybe<IssueParentTypeConfig>;
|
|
135789
|
+
};
|
|
135723
135790
|
export declare type JswMapOfStringToString = {
|
|
135724
135791
|
__typename?: 'JswMapOfStringToString';
|
|
135725
135792
|
key?: Maybe<Scalars['String']['output']>;
|
|
@@ -136204,6 +136271,7 @@ export declare type KitsuneOrganizationConnection = KitsuneConnection & {
|
|
|
136204
136271
|
__typename?: 'KitsuneOrganizationConnection';
|
|
136205
136272
|
edges: Array<KitsuneOrganizationEdge>;
|
|
136206
136273
|
pageInfo: PageInfo;
|
|
136274
|
+
totalCount: Scalars['Int']['output'];
|
|
136207
136275
|
};
|
|
136208
136276
|
export declare enum KitsuneOrganizationDomainAction {
|
|
136209
136277
|
Add = "ADD",
|
|
@@ -142893,6 +142961,15 @@ export declare type MercuryAddWatcherToFocusAreaPayload = Payload & {
|
|
|
142893
142961
|
errors?: Maybe<Array<MutationError>>;
|
|
142894
142962
|
success: Scalars['Boolean']['output'];
|
|
142895
142963
|
};
|
|
142964
|
+
export declare type MercuryAddWatcherToOrganizationInput = {
|
|
142965
|
+
organizationId: Scalars['ID']['input'];
|
|
142966
|
+
userId: Scalars['ID']['input'];
|
|
142967
|
+
};
|
|
142968
|
+
export declare type MercuryAddWatcherToOrganizationPayload = Payload & {
|
|
142969
|
+
__typename?: 'MercuryAddWatcherToOrganizationPayload';
|
|
142970
|
+
errors?: Maybe<Array<MutationError>>;
|
|
142971
|
+
success: Scalars['Boolean']['output'];
|
|
142972
|
+
};
|
|
142896
142973
|
export declare type MercuryAggregatedBusinessDomainStatusCount = {
|
|
142897
142974
|
__typename?: 'MercuryAggregatedBusinessDomainStatusCount';
|
|
142898
142975
|
children: MercuryBusinessDomainStatusCount;
|
|
@@ -142909,6 +142986,16 @@ export declare type MercuryAggregatedFocusAreaStatusCount = {
|
|
|
142909
142986
|
current: MercuryFocusAreaStatusCount;
|
|
142910
142987
|
subtree: MercuryFocusAreaStatusCount;
|
|
142911
142988
|
};
|
|
142989
|
+
export declare type MercuryAggregatedOrganizationStatusCount = {
|
|
142990
|
+
__typename?: 'MercuryAggregatedOrganizationStatusCount';
|
|
142991
|
+
children: MercuryOrganizationStatusCount;
|
|
142992
|
+
current: MercuryOrganizationStatusCount;
|
|
142993
|
+
subtree: MercuryOrganizationStatusCount;
|
|
142994
|
+
};
|
|
142995
|
+
export declare type MercuryAggregatedOrganizationViewStatusCount = {
|
|
142996
|
+
__typename?: 'MercuryAggregatedOrganizationViewStatusCount';
|
|
142997
|
+
children?: Maybe<MercuryOrganizationStatusCount>;
|
|
142998
|
+
};
|
|
142912
142999
|
export declare type MercuryAggregatedPortfolioStatusCount = {
|
|
142913
143000
|
__typename?: 'MercuryAggregatedPortfolioStatusCount';
|
|
142914
143001
|
children: MercuryFocusAreaStatusCount;
|
|
@@ -142967,6 +143054,25 @@ export declare type MercuryArchiveFocusAreaValidationPayload = Payload & {
|
|
|
142967
143054
|
errors?: Maybe<Array<MutationError>>;
|
|
142968
143055
|
success: Scalars['Boolean']['output'];
|
|
142969
143056
|
};
|
|
143057
|
+
export declare type MercuryArchiveOrganizationInput = {
|
|
143058
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
143059
|
+
comment?: InputMaybe<Scalars['String']['input']>;
|
|
143060
|
+
id: Scalars['ID']['input'];
|
|
143061
|
+
};
|
|
143062
|
+
export declare type MercuryArchiveOrganizationPayload = Payload & {
|
|
143063
|
+
__typename?: 'MercuryArchiveOrganizationPayload';
|
|
143064
|
+
errors?: Maybe<Array<MutationError>>;
|
|
143065
|
+
success: Scalars['Boolean']['output'];
|
|
143066
|
+
};
|
|
143067
|
+
export declare type MercuryArchiveOrganizationValidationInput = {
|
|
143068
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
143069
|
+
id: Scalars['ID']['input'];
|
|
143070
|
+
};
|
|
143071
|
+
export declare type MercuryArchiveOrganizationValidationPayload = Payload & {
|
|
143072
|
+
__typename?: 'MercuryArchiveOrganizationValidationPayload';
|
|
143073
|
+
errors?: Maybe<Array<MutationError>>;
|
|
143074
|
+
success: Scalars['Boolean']['output'];
|
|
143075
|
+
};
|
|
142970
143076
|
export declare type MercuryAssignUserAccessToBusinessDomainInput = {
|
|
142971
143077
|
businessDomainAri: Scalars['ID']['input'];
|
|
142972
143078
|
businessDomainUserAccessAssignment?: InputMaybe<Array<InputMaybe<MercuryBusinessDomainUserAccessInput>>>;
|
|
@@ -142987,6 +143093,16 @@ export declare type MercuryAssignUserAccessToFocusAreaPayload = Payload & {
|
|
|
142987
143093
|
focusAreaUserAccessAssignment?: Maybe<Array<Maybe<MercuryFocusAreaUserAccessMutation>>>;
|
|
142988
143094
|
success: Scalars['Boolean']['output'];
|
|
142989
143095
|
};
|
|
143096
|
+
export declare type MercuryAssignUserAccessToOrganizationInput = {
|
|
143097
|
+
organizationAri: Scalars['ID']['input'];
|
|
143098
|
+
organizationUserAccessAssignment?: InputMaybe<Array<InputMaybe<MercuryOrganizationUserAccessInput>>>;
|
|
143099
|
+
};
|
|
143100
|
+
export declare type MercuryAssignUserAccessToOrganizationPayload = Payload & {
|
|
143101
|
+
__typename?: 'MercuryAssignUserAccessToOrganizationPayload';
|
|
143102
|
+
errors?: Maybe<Array<MutationError>>;
|
|
143103
|
+
organizationUserAccessAssignment?: Maybe<Array<Maybe<MercuryOrganizationUserAccessMutation>>>;
|
|
143104
|
+
success: Scalars['Boolean']['output'];
|
|
143105
|
+
};
|
|
142990
143106
|
export declare type MercuryBaseJiraWorkStatusMapping = {
|
|
142991
143107
|
jiraStatus?: Maybe<MercuryJiraStatus>;
|
|
142992
143108
|
jiraStatusCategory?: Maybe<MercuryJiraStatusCategory>;
|
|
@@ -143102,6 +143218,17 @@ export declare type MercuryBulkCreateBusinessDomainTypesPayload = Payload & {
|
|
|
143102
143218
|
errors?: Maybe<Array<MutationError>>;
|
|
143103
143219
|
success: Scalars['Boolean']['output'];
|
|
143104
143220
|
};
|
|
143221
|
+
export declare type MercuryBulkCreateOrganizationTypesInput = {
|
|
143222
|
+
cloudId: Scalars['ID']['input'];
|
|
143223
|
+
names?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
143224
|
+
organizationHierarchyId?: InputMaybe<Scalars['ID']['input']>;
|
|
143225
|
+
};
|
|
143226
|
+
export declare type MercuryBulkCreateOrganizationTypesPayload = Payload & {
|
|
143227
|
+
__typename?: 'MercuryBulkCreateOrganizationTypesPayload';
|
|
143228
|
+
createdOrganizationTypes?: Maybe<Array<MercuryOrganizationType>>;
|
|
143229
|
+
errors?: Maybe<Array<MutationError>>;
|
|
143230
|
+
success: Scalars['Boolean']['output'];
|
|
143231
|
+
};
|
|
143105
143232
|
export declare type MercuryBusinessDomain = Node & {
|
|
143106
143233
|
__typename?: 'MercuryBusinessDomain';
|
|
143107
143234
|
aboutContent: MercuryBusinessDomainAbout;
|
|
@@ -144554,6 +144681,74 @@ export declare type MercuryCreateMultiUserCustomFieldDefinitionInput = {
|
|
|
144554
144681
|
export declare type MercuryCreateNumberCustomFieldDefinitionInput = {
|
|
144555
144682
|
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
144556
144683
|
};
|
|
144684
|
+
export declare type MercuryCreateOrganizationCustomFieldDefinitionInput = {
|
|
144685
|
+
cloudId: Scalars['ID']['input'];
|
|
144686
|
+
coreCustomFieldDefinition?: InputMaybe<MercuryCreateCoreCustomFieldDefinitionInput>;
|
|
144687
|
+
};
|
|
144688
|
+
export declare type MercuryCreateOrganizationHierarchyInput = {
|
|
144689
|
+
cloudId: Scalars['ID']['input'];
|
|
144690
|
+
hierarchyTypeKey: MercuryOrganizationHierarchyTypeKey;
|
|
144691
|
+
name: Scalars['String']['input'];
|
|
144692
|
+
};
|
|
144693
|
+
export declare type MercuryCreateOrganizationHierarchyPayload = Payload & {
|
|
144694
|
+
__typename?: 'MercuryCreateOrganizationHierarchyPayload';
|
|
144695
|
+
createdOrganizationHierarchy?: Maybe<MercuryOrganizationHierarchy>;
|
|
144696
|
+
errors?: Maybe<Array<MutationError>>;
|
|
144697
|
+
success: Scalars['Boolean']['output'];
|
|
144698
|
+
};
|
|
144699
|
+
export declare type MercuryCreateOrganizationInput = {
|
|
144700
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
144701
|
+
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
144702
|
+
name: Scalars['String']['input'];
|
|
144703
|
+
organizationTypeId: Scalars['ID']['input'];
|
|
144704
|
+
owner?: InputMaybe<Scalars['ID']['input']>;
|
|
144705
|
+
parentOrganizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
144706
|
+
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
144707
|
+
targetDateType?: InputMaybe<MercuryOrganizationTargetDateType>;
|
|
144708
|
+
};
|
|
144709
|
+
export declare type MercuryCreateOrganizationPayload = Payload & {
|
|
144710
|
+
__typename?: 'MercuryCreateOrganizationPayload';
|
|
144711
|
+
createdOrganization?: Maybe<MercuryOrganization>;
|
|
144712
|
+
errors?: Maybe<Array<MutationError>>;
|
|
144713
|
+
success: Scalars['Boolean']['output'];
|
|
144714
|
+
};
|
|
144715
|
+
export declare type MercuryCreateOrganizationStatusUpdateInput = {
|
|
144716
|
+
newTargetDate?: InputMaybe<MercuryOrganizationTargetDateInput>;
|
|
144717
|
+
organizationId: Scalars['ID']['input'];
|
|
144718
|
+
statusTransitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
144719
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
144720
|
+
};
|
|
144721
|
+
export declare type MercuryCreateOrganizationStatusUpdatePayload = Payload & {
|
|
144722
|
+
__typename?: 'MercuryCreateOrganizationStatusUpdatePayload';
|
|
144723
|
+
createdOrganizationUpdateStatus?: Maybe<MercuryOrganizationStatusUpdate>;
|
|
144724
|
+
errors?: Maybe<Array<MutationError>>;
|
|
144725
|
+
success: Scalars['Boolean']['output'];
|
|
144726
|
+
};
|
|
144727
|
+
export declare type MercuryCreateOrganizationTypeInput = {
|
|
144728
|
+
cloudId: Scalars['ID']['input'];
|
|
144729
|
+
level?: InputMaybe<Scalars['Int']['input']>;
|
|
144730
|
+
name: Scalars['String']['input'];
|
|
144731
|
+
organizationHierarchyId?: InputMaybe<Scalars['ID']['input']>;
|
|
144732
|
+
};
|
|
144733
|
+
export declare type MercuryCreateOrganizationTypePayload = Payload & {
|
|
144734
|
+
__typename?: 'MercuryCreateOrganizationTypePayload';
|
|
144735
|
+
createdOrganizationType?: Maybe<MercuryOrganizationType>;
|
|
144736
|
+
errors?: Maybe<Array<MutationError>>;
|
|
144737
|
+
success: Scalars['Boolean']['output'];
|
|
144738
|
+
};
|
|
144739
|
+
export declare type MercuryCreateOrganizationViewOrganizationsInput = {
|
|
144740
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
144741
|
+
name: Scalars['String']['input'];
|
|
144742
|
+
organizationIds: Array<Scalars['ID']['input']>;
|
|
144743
|
+
owner?: InputMaybe<Scalars['String']['input']>;
|
|
144744
|
+
viewType?: InputMaybe<MercuryOrganizationViewType>;
|
|
144745
|
+
};
|
|
144746
|
+
export declare type MercuryCreateOrganizationViewPayload = Payload & {
|
|
144747
|
+
__typename?: 'MercuryCreateOrganizationViewPayload';
|
|
144748
|
+
createdOrganizationView?: Maybe<MercuryOrganizationView>;
|
|
144749
|
+
errors?: Maybe<Array<MutationError>>;
|
|
144750
|
+
success: Scalars['Boolean']['output'];
|
|
144751
|
+
};
|
|
144557
144752
|
export declare type MercuryCreatePortfolioFocusAreasInput = {
|
|
144558
144753
|
cloudId: Scalars['ID']['input'];
|
|
144559
144754
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
@@ -145027,6 +145222,83 @@ export declare type MercuryDeleteInvestmentCategoryPayload = Payload & {
|
|
|
145027
145222
|
errors?: Maybe<Array<MutationError>>;
|
|
145028
145223
|
success: Scalars['Boolean']['output'];
|
|
145029
145224
|
};
|
|
145225
|
+
export declare type MercuryDeleteOrganizationGoalLinksInput = {
|
|
145226
|
+
atlasGoalAris: Array<Scalars['String']['input']>;
|
|
145227
|
+
organizationAri: Scalars['String']['input'];
|
|
145228
|
+
};
|
|
145229
|
+
export declare type MercuryDeleteOrganizationGoalLinksPayload = Payload & {
|
|
145230
|
+
__typename?: 'MercuryDeleteOrganizationGoalLinksPayload';
|
|
145231
|
+
errors?: Maybe<Array<MutationError>>;
|
|
145232
|
+
success: Scalars['Boolean']['output'];
|
|
145233
|
+
};
|
|
145234
|
+
export declare type MercuryDeleteOrganizationHierarchyInput = {
|
|
145235
|
+
id: Scalars['ID']['input'];
|
|
145236
|
+
};
|
|
145237
|
+
export declare type MercuryDeleteOrganizationHierarchyPayload = Payload & {
|
|
145238
|
+
__typename?: 'MercuryDeleteOrganizationHierarchyPayload';
|
|
145239
|
+
errors?: Maybe<Array<MutationError>>;
|
|
145240
|
+
success: Scalars['Boolean']['output'];
|
|
145241
|
+
};
|
|
145242
|
+
export declare type MercuryDeleteOrganizationInput = {
|
|
145243
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
145244
|
+
id: Scalars['ID']['input'];
|
|
145245
|
+
};
|
|
145246
|
+
export declare type MercuryDeleteOrganizationLinkInput = {
|
|
145247
|
+
cloudId: Scalars['ID']['input'];
|
|
145248
|
+
id: Scalars['ID']['input'];
|
|
145249
|
+
organizationLinkAction?: InputMaybe<MercuryOrganizationLinkAction>;
|
|
145250
|
+
};
|
|
145251
|
+
export declare type MercuryDeleteOrganizationLinkPayload = Payload & {
|
|
145252
|
+
__typename?: 'MercuryDeleteOrganizationLinkPayload';
|
|
145253
|
+
errors?: Maybe<Array<MutationError>>;
|
|
145254
|
+
success: Scalars['Boolean']['output'];
|
|
145255
|
+
};
|
|
145256
|
+
export declare type MercuryDeleteOrganizationPayload = Payload & {
|
|
145257
|
+
__typename?: 'MercuryDeleteOrganizationPayload';
|
|
145258
|
+
errors?: Maybe<Array<MutationError>>;
|
|
145259
|
+
success: Scalars['Boolean']['output'];
|
|
145260
|
+
};
|
|
145261
|
+
export declare type MercuryDeleteOrganizationStatusUpdateInput = {
|
|
145262
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
145263
|
+
id: Scalars['ID']['input'];
|
|
145264
|
+
};
|
|
145265
|
+
export declare type MercuryDeleteOrganizationStatusUpdatePayload = Payload & {
|
|
145266
|
+
__typename?: 'MercuryDeleteOrganizationStatusUpdatePayload';
|
|
145267
|
+
errors?: Maybe<Array<MutationError>>;
|
|
145268
|
+
success: Scalars['Boolean']['output'];
|
|
145269
|
+
};
|
|
145270
|
+
export declare type MercuryDeleteOrganizationTypeInput = {
|
|
145271
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
145272
|
+
dryRun?: InputMaybe<Scalars['Boolean']['input']>;
|
|
145273
|
+
id: Scalars['ID']['input'];
|
|
145274
|
+
};
|
|
145275
|
+
export declare type MercuryDeleteOrganizationTypePayload = Payload & {
|
|
145276
|
+
__typename?: 'MercuryDeleteOrganizationTypePayload';
|
|
145277
|
+
deletedLinks?: Maybe<Array<MercuryOrganizationLink>>;
|
|
145278
|
+
dryRun?: Maybe<Scalars['Boolean']['output']>;
|
|
145279
|
+
errors?: Maybe<Array<MutationError>>;
|
|
145280
|
+
reassignedOrganizations?: Maybe<Array<MercuryOrganization>>;
|
|
145281
|
+
remainingOrganizationTypes?: Maybe<Array<MercuryOrganizationType>>;
|
|
145282
|
+
success: Scalars['Boolean']['output'];
|
|
145283
|
+
};
|
|
145284
|
+
export declare type MercuryDeleteOrganizationViewInput = {
|
|
145285
|
+
id: Scalars['ID']['input'];
|
|
145286
|
+
};
|
|
145287
|
+
export declare type MercuryDeleteOrganizationViewOrganizationLinkInput = {
|
|
145288
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
145289
|
+
organizationIds: Array<Scalars['ID']['input']>;
|
|
145290
|
+
organizationViewId: Scalars['ID']['input'];
|
|
145291
|
+
};
|
|
145292
|
+
export declare type MercuryDeleteOrganizationViewOrganizationLinkPayload = Payload & {
|
|
145293
|
+
__typename?: 'MercuryDeleteOrganizationViewOrganizationLinkPayload';
|
|
145294
|
+
errors?: Maybe<Array<MutationError>>;
|
|
145295
|
+
success: Scalars['Boolean']['output'];
|
|
145296
|
+
};
|
|
145297
|
+
export declare type MercuryDeleteOrganizationViewPayload = Payload & {
|
|
145298
|
+
__typename?: 'MercuryDeleteOrganizationViewPayload';
|
|
145299
|
+
errors?: Maybe<Array<MutationError>>;
|
|
145300
|
+
success: Scalars['Boolean']['output'];
|
|
145301
|
+
};
|
|
145030
145302
|
export declare type MercuryDeletePortfolioFocusAreaLinkInput = {
|
|
145031
145303
|
cloudId: Scalars['ID']['input'];
|
|
145032
145304
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
@@ -146016,7 +146288,6 @@ export declare type MercuryFundsMutationApiUpdateInvestmentCategoryNameArgs = {
|
|
|
146016
146288
|
input: MercuryUpdateInvestmentCategoryNameInput;
|
|
146017
146289
|
};
|
|
146018
146290
|
export declare enum MercuryFundsPermission {
|
|
146019
|
-
CreateCostItem = "CREATE_COST_ITEM",
|
|
146020
146291
|
EditBaseline = "EDIT_BASELINE",
|
|
146021
146292
|
EditBudget = "EDIT_BUDGET",
|
|
146022
146293
|
EditFundItem = "EDIT_FUND_ITEM",
|
|
@@ -146584,6 +146855,46 @@ export declare type MercuryLinkGoalsToFocusAreaPayload = Payload & {
|
|
|
146584
146855
|
errors?: Maybe<Array<MutationError>>;
|
|
146585
146856
|
success: Scalars['Boolean']['output'];
|
|
146586
146857
|
};
|
|
146858
|
+
export declare type MercuryLinkGoalsToOrganizationInput = {
|
|
146859
|
+
atlasGoalAris?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
146860
|
+
atlasGoalIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
146861
|
+
parentOrganizationId: Scalars['ID']['input'];
|
|
146862
|
+
};
|
|
146863
|
+
export declare type MercuryLinkGoalsToOrganizationPayload = Payload & {
|
|
146864
|
+
__typename?: 'MercuryLinkGoalsToOrganizationPayload';
|
|
146865
|
+
errors?: Maybe<Array<MutationError>>;
|
|
146866
|
+
success: Scalars['Boolean']['output'];
|
|
146867
|
+
};
|
|
146868
|
+
export declare type MercuryLinkOrganizationThirdPartyDocumentPayload = Payload & {
|
|
146869
|
+
__typename?: 'MercuryLinkOrganizationThirdPartyDocumentPayload';
|
|
146870
|
+
errors?: Maybe<Array<MutationError>>;
|
|
146871
|
+
success: Scalars['Boolean']['output'];
|
|
146872
|
+
};
|
|
146873
|
+
export declare type MercuryLinkOrganizationToThirdPartyDocumentInput = {
|
|
146874
|
+
id: Scalars['ID']['input'];
|
|
146875
|
+
thirdPartyDocumentId: Scalars['ID']['input'];
|
|
146876
|
+
};
|
|
146877
|
+
export declare type MercuryLinkOrganizationsToOrganizationInput = {
|
|
146878
|
+
childOrganizationIds: Array<Scalars['ID']['input']>;
|
|
146879
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
146880
|
+
organizationLinkAction?: InputMaybe<MercuryOrganizationLinkAction>;
|
|
146881
|
+
parentOrganizationId: Scalars['ID']['input'];
|
|
146882
|
+
};
|
|
146883
|
+
export declare type MercuryLinkOrganizationsToOrganizationPayload = Payload & {
|
|
146884
|
+
__typename?: 'MercuryLinkOrganizationsToOrganizationPayload';
|
|
146885
|
+
errors?: Maybe<Array<MutationError>>;
|
|
146886
|
+
success: Scalars['Boolean']['output'];
|
|
146887
|
+
};
|
|
146888
|
+
export declare type MercuryLinkOrganizationsToOrganizationViewInput = {
|
|
146889
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
146890
|
+
organizationIds: Array<Scalars['ID']['input']>;
|
|
146891
|
+
organizationViewId: Scalars['ID']['input'];
|
|
146892
|
+
};
|
|
146893
|
+
export declare type MercuryLinkOrganizationsToOrganizationViewPayload = Payload & {
|
|
146894
|
+
__typename?: 'MercuryLinkOrganizationsToOrganizationViewPayload';
|
|
146895
|
+
errors?: Maybe<Array<MutationError>>;
|
|
146896
|
+
success: Scalars['Boolean']['output'];
|
|
146897
|
+
};
|
|
146587
146898
|
export declare type MercuryLinkRiskToFocusAreasInput = {
|
|
146588
146899
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
146589
146900
|
id: Scalars['ID']['input'];
|
|
@@ -147112,6 +147423,698 @@ export declare type MercuryOnUpdateChangeProposalsPayload = Payload & {
|
|
|
147112
147423
|
strategicEventId: Scalars['ID']['output'];
|
|
147113
147424
|
success: Scalars['Boolean']['output'];
|
|
147114
147425
|
};
|
|
147426
|
+
export declare type MercuryOrganization = Node & {
|
|
147427
|
+
__typename?: 'MercuryOrganization';
|
|
147428
|
+
aboutContent: MercuryOrganizationAbout;
|
|
147429
|
+
aggregatedOrganizationStatusCount?: Maybe<MercuryAggregatedOrganizationStatusCount>;
|
|
147430
|
+
archived: Scalars['Boolean']['output'];
|
|
147431
|
+
createdDate: Scalars['String']['output'];
|
|
147432
|
+
customFields?: Maybe<Array<MercuryCustomField>>;
|
|
147433
|
+
draft: Scalars['Boolean']['output'];
|
|
147434
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
147435
|
+
goalLinks?: Maybe<MercuryOrganizationGoalLinks>;
|
|
147436
|
+
health?: Maybe<MercuryOrganizationHealth>;
|
|
147437
|
+
icon: MercuryOrganizationIcon;
|
|
147438
|
+
id: Scalars['ID']['output'];
|
|
147439
|
+
linkedGoalSummary?: Maybe<MercuryOrganizationLinkedGoalSummary>;
|
|
147440
|
+
linkedWorkSummary?: Maybe<MercuryOrganizationLinkedWorkSummary>;
|
|
147441
|
+
name: Scalars['String']['output'];
|
|
147442
|
+
organizationLinks?: Maybe<MercuryOrganizationLinks>;
|
|
147443
|
+
organizationStatusUpdates?: Maybe<MercuryOrganizationStatusUpdateConnection>;
|
|
147444
|
+
organizationType: MercuryOrganizationType;
|
|
147445
|
+
owner?: Maybe<User>;
|
|
147446
|
+
parent?: Maybe<MercuryOrganization>;
|
|
147447
|
+
sharedUsers?: Maybe<MercuryOrganizationUserAccessConnection>;
|
|
147448
|
+
starred: Scalars['Boolean']['output'];
|
|
147449
|
+
status: MercuryOrganizationStatus;
|
|
147450
|
+
statusTransitions: MercuryOrganizationStatusTransitions;
|
|
147451
|
+
subOrganizations?: Maybe<MercuryOrganizationConnection>;
|
|
147452
|
+
targetDate?: Maybe<MercuryOrganizationTargetDate>;
|
|
147453
|
+
updatedDate: Scalars['String']['output'];
|
|
147454
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
147455
|
+
userPermissions?: Maybe<Array<MercuryOrganizationPermission>>;
|
|
147456
|
+
views?: Maybe<Array<MercuryOrganizationView>>;
|
|
147457
|
+
watchers?: Maybe<MercuryUserConnection>;
|
|
147458
|
+
watching: Scalars['Boolean']['output'];
|
|
147459
|
+
};
|
|
147460
|
+
export declare type MercuryOrganizationOrganizationStatusUpdatesArgs = {
|
|
147461
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
147462
|
+
createdAtOrAfter?: InputMaybe<Scalars['DateTime']['input']>;
|
|
147463
|
+
createdAtOrBefore?: InputMaybe<Scalars['DateTime']['input']>;
|
|
147464
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
147465
|
+
};
|
|
147466
|
+
export declare type MercuryOrganizationSharedUsersArgs = {
|
|
147467
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
147468
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
147469
|
+
};
|
|
147470
|
+
export declare type MercuryOrganizationSubOrganizationsArgs = {
|
|
147471
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
147472
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
147473
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
147474
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryOrganizationSort>>>;
|
|
147475
|
+
};
|
|
147476
|
+
export declare type MercuryOrganizationWatchersArgs = {
|
|
147477
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
147478
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
147479
|
+
};
|
|
147480
|
+
export declare type MercuryOrganizationAbout = {
|
|
147481
|
+
__typename?: 'MercuryOrganizationAbout';
|
|
147482
|
+
editorAdfContent?: Maybe<Scalars['String']['output']>;
|
|
147483
|
+
};
|
|
147484
|
+
export declare type MercuryOrganizationConnection = {
|
|
147485
|
+
__typename?: 'MercuryOrganizationConnection';
|
|
147486
|
+
edges?: Maybe<Array<Maybe<MercuryOrganizationEdge>>>;
|
|
147487
|
+
pageInfo: PageInfo;
|
|
147488
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
147489
|
+
};
|
|
147490
|
+
export declare type MercuryOrganizationCustomFieldDefinitionScope = MercuryCustomFieldDefinitionScope & {
|
|
147491
|
+
__typename?: 'MercuryOrganizationCustomFieldDefinitionScope';
|
|
147492
|
+
entityType: Scalars['String']['output'];
|
|
147493
|
+
};
|
|
147494
|
+
export declare type MercuryOrganizationEdge = {
|
|
147495
|
+
__typename?: 'MercuryOrganizationEdge';
|
|
147496
|
+
cursor: Scalars['String']['output'];
|
|
147497
|
+
node?: Maybe<MercuryOrganization>;
|
|
147498
|
+
};
|
|
147499
|
+
export declare type MercuryOrganizationGoalLink = {
|
|
147500
|
+
__typename?: 'MercuryOrganizationGoalLink';
|
|
147501
|
+
atlasGoalAri: Scalars['String']['output'];
|
|
147502
|
+
atlasGoalId: Scalars['String']['output'];
|
|
147503
|
+
createdBy?: Maybe<User>;
|
|
147504
|
+
createdDate: Scalars['String']['output'];
|
|
147505
|
+
id: Scalars['ID']['output'];
|
|
147506
|
+
parentOrganizationId: Scalars['ID']['output'];
|
|
147507
|
+
};
|
|
147508
|
+
export declare type MercuryOrganizationGoalLinks = {
|
|
147509
|
+
__typename?: 'MercuryOrganizationGoalLinks';
|
|
147510
|
+
links: Array<MercuryOrganizationGoalLink>;
|
|
147511
|
+
};
|
|
147512
|
+
export declare type MercuryOrganizationHealth = {
|
|
147513
|
+
__typename?: 'MercuryOrganizationHealth';
|
|
147514
|
+
color: MercuryOrganizationHealthColor;
|
|
147515
|
+
displayName: Scalars['String']['output'];
|
|
147516
|
+
id: Scalars['ID']['output'];
|
|
147517
|
+
key: Scalars['String']['output'];
|
|
147518
|
+
order: Scalars['Int']['output'];
|
|
147519
|
+
};
|
|
147520
|
+
export declare enum MercuryOrganizationHealthColor {
|
|
147521
|
+
Green = "GREEN",
|
|
147522
|
+
Red = "RED",
|
|
147523
|
+
Yellow = "YELLOW"
|
|
147524
|
+
}
|
|
147525
|
+
export declare type MercuryOrganizationHierarchy = Node & {
|
|
147526
|
+
__typename?: 'MercuryOrganizationHierarchy';
|
|
147527
|
+
hierarchyTypeKey?: Maybe<MercuryOrganizationHierarchyTypeKey>;
|
|
147528
|
+
id: Scalars['ID']['output'];
|
|
147529
|
+
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
147530
|
+
name: Scalars['String']['output'];
|
|
147531
|
+
organizationTypes?: Maybe<Array<MercuryOrganizationType>>;
|
|
147532
|
+
};
|
|
147533
|
+
export declare type MercuryOrganizationHierarchyConnection = {
|
|
147534
|
+
__typename?: 'MercuryOrganizationHierarchyConnection';
|
|
147535
|
+
edges?: Maybe<Array<MercuryOrganizationHierarchyEdge>>;
|
|
147536
|
+
pageInfo: PageInfo;
|
|
147537
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
147538
|
+
};
|
|
147539
|
+
export declare type MercuryOrganizationHierarchyEdge = {
|
|
147540
|
+
__typename?: 'MercuryOrganizationHierarchyEdge';
|
|
147541
|
+
cursor: Scalars['String']['output'];
|
|
147542
|
+
node?: Maybe<MercuryOrganizationHierarchy>;
|
|
147543
|
+
};
|
|
147544
|
+
export declare type MercuryOrganizationHierarchySort = {
|
|
147545
|
+
field: MercuryOrganizationHierarchySortField;
|
|
147546
|
+
order: SortOrder;
|
|
147547
|
+
};
|
|
147548
|
+
export declare enum MercuryOrganizationHierarchySortField {
|
|
147549
|
+
Name = "NAME"
|
|
147550
|
+
}
|
|
147551
|
+
export declare enum MercuryOrganizationHierarchyTypeKey {
|
|
147552
|
+
Investment = "INVESTMENT",
|
|
147553
|
+
Portfolio = "PORTFOLIO"
|
|
147554
|
+
}
|
|
147555
|
+
export declare type MercuryOrganizationIcon = {
|
|
147556
|
+
__typename?: 'MercuryOrganizationIcon';
|
|
147557
|
+
url: Scalars['String']['output'];
|
|
147558
|
+
};
|
|
147559
|
+
export declare type MercuryOrganizationLink = {
|
|
147560
|
+
__typename?: 'MercuryOrganizationLink';
|
|
147561
|
+
childOrganizationId: Scalars['ID']['output'];
|
|
147562
|
+
createdBy?: Maybe<User>;
|
|
147563
|
+
createdDate: Scalars['String']['output'];
|
|
147564
|
+
id: Scalars['ID']['output'];
|
|
147565
|
+
parentOrganizationId: Scalars['ID']['output'];
|
|
147566
|
+
};
|
|
147567
|
+
export declare enum MercuryOrganizationLinkAction {
|
|
147568
|
+
LinkChildren = "LINK_CHILDREN",
|
|
147569
|
+
LinkParent = "LINK_PARENT",
|
|
147570
|
+
UnlinkChildren = "UNLINK_CHILDREN",
|
|
147571
|
+
UnlinkParent = "UNLINK_PARENT"
|
|
147572
|
+
}
|
|
147573
|
+
export declare type MercuryOrganizationLinkedGoalSummary = {
|
|
147574
|
+
__typename?: 'MercuryOrganizationLinkedGoalSummary';
|
|
147575
|
+
count: Scalars['Int']['output'];
|
|
147576
|
+
countIncludingSubOrganizations?: Maybe<Scalars['Int']['output']>;
|
|
147577
|
+
};
|
|
147578
|
+
export declare type MercuryOrganizationLinkedWorkSummary = {
|
|
147579
|
+
__typename?: 'MercuryOrganizationLinkedWorkSummary';
|
|
147580
|
+
count: Scalars['Int']['output'];
|
|
147581
|
+
countIncludingSubOrganizations?: Maybe<Scalars['Int']['output']>;
|
|
147582
|
+
};
|
|
147583
|
+
export declare type MercuryOrganizationLinks = {
|
|
147584
|
+
__typename?: 'MercuryOrganizationLinks';
|
|
147585
|
+
links: Array<MercuryOrganizationLink>;
|
|
147586
|
+
};
|
|
147587
|
+
export declare type MercuryOrganizationListSummary = {
|
|
147588
|
+
__typename?: 'MercuryOrganizationListSummary';
|
|
147589
|
+
ids: Array<Scalars['ID']['output']>;
|
|
147590
|
+
input?: Maybe<Scalars['String']['output']>;
|
|
147591
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
147592
|
+
};
|
|
147593
|
+
export declare enum MercuryOrganizationPermission {
|
|
147594
|
+
Archive = "ARCHIVE",
|
|
147595
|
+
CreateGoalLink = "CREATE_GOAL_LINK",
|
|
147596
|
+
CreateLink = "CREATE_LINK",
|
|
147597
|
+
CreateUpdate = "CREATE_UPDATE",
|
|
147598
|
+
CreateWorkLink = "CREATE_WORK_LINK",
|
|
147599
|
+
Delete = "DELETE",
|
|
147600
|
+
DeleteGoalLink = "DELETE_GOAL_LINK",
|
|
147601
|
+
DeleteLink = "DELETE_LINK",
|
|
147602
|
+
DeleteUpdate = "DELETE_UPDATE",
|
|
147603
|
+
DeleteWorkLink = "DELETE_WORK_LINK",
|
|
147604
|
+
EditAbout = "EDIT_ABOUT",
|
|
147605
|
+
EditName = "EDIT_NAME",
|
|
147606
|
+
EditOwner = "EDIT_OWNER",
|
|
147607
|
+
EditType = "EDIT_TYPE",
|
|
147608
|
+
Export = "EXPORT",
|
|
147609
|
+
ViewFund = "VIEW_FUND"
|
|
147610
|
+
}
|
|
147611
|
+
export declare type MercuryOrganizationSort = {
|
|
147612
|
+
field?: InputMaybe<MercuryOrganizationSortField>;
|
|
147613
|
+
fieldKey?: InputMaybe<Scalars['String']['input']>;
|
|
147614
|
+
order: SortOrder;
|
|
147615
|
+
};
|
|
147616
|
+
export declare enum MercuryOrganizationSortField {
|
|
147617
|
+
HasParent = "HAS_PARENT",
|
|
147618
|
+
Health = "HEALTH",
|
|
147619
|
+
HierarchyLevel = "HIERARCHY_LEVEL",
|
|
147620
|
+
LastUpdated = "LAST_UPDATED",
|
|
147621
|
+
Name = "NAME",
|
|
147622
|
+
OrganizationType = "ORGANIZATION_TYPE",
|
|
147623
|
+
Starred = "STARRED",
|
|
147624
|
+
Status = "STATUS",
|
|
147625
|
+
TargetDate = "TARGET_DATE",
|
|
147626
|
+
Watching = "WATCHING"
|
|
147627
|
+
}
|
|
147628
|
+
export declare type MercuryOrganizationStatus = {
|
|
147629
|
+
__typename?: 'MercuryOrganizationStatus';
|
|
147630
|
+
displayName: Scalars['String']['output'];
|
|
147631
|
+
id: Scalars['ID']['output'];
|
|
147632
|
+
key: Scalars['String']['output'];
|
|
147633
|
+
order: Scalars['Int']['output'];
|
|
147634
|
+
};
|
|
147635
|
+
export declare type MercuryOrganizationStatusCount = {
|
|
147636
|
+
__typename?: 'MercuryOrganizationStatusCount';
|
|
147637
|
+
atRisk?: Maybe<Scalars['Int']['output']>;
|
|
147638
|
+
completed?: Maybe<Scalars['Int']['output']>;
|
|
147639
|
+
inProgress?: Maybe<Scalars['Int']['output']>;
|
|
147640
|
+
offTrack?: Maybe<Scalars['Int']['output']>;
|
|
147641
|
+
onTrack?: Maybe<Scalars['Int']['output']>;
|
|
147642
|
+
paused?: Maybe<Scalars['Int']['output']>;
|
|
147643
|
+
pending?: Maybe<Scalars['Int']['output']>;
|
|
147644
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
147645
|
+
};
|
|
147646
|
+
export declare type MercuryOrganizationStatusTransition = {
|
|
147647
|
+
__typename?: 'MercuryOrganizationStatusTransition';
|
|
147648
|
+
health?: Maybe<MercuryOrganizationHealth>;
|
|
147649
|
+
id: Scalars['ID']['output'];
|
|
147650
|
+
status: MercuryOrganizationStatus;
|
|
147651
|
+
};
|
|
147652
|
+
export declare type MercuryOrganizationStatusTransitions = {
|
|
147653
|
+
__typename?: 'MercuryOrganizationStatusTransitions';
|
|
147654
|
+
available: Array<MercuryOrganizationStatusTransition>;
|
|
147655
|
+
};
|
|
147656
|
+
export declare type MercuryOrganizationStatusUpdate = Node & {
|
|
147657
|
+
__typename?: 'MercuryOrganizationStatusUpdate';
|
|
147658
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
147659
|
+
comments?: Maybe<MercuryCommentConnection>;
|
|
147660
|
+
createdBy?: Maybe<User>;
|
|
147661
|
+
createdDate: Scalars['String']['output'];
|
|
147662
|
+
id: Scalars['ID']['output'];
|
|
147663
|
+
newHealth?: Maybe<MercuryOrganizationHealth>;
|
|
147664
|
+
newStatus?: Maybe<MercuryOrganizationStatus>;
|
|
147665
|
+
newTargetDate?: Maybe<MercuryTargetDate>;
|
|
147666
|
+
organizationId: Scalars['ID']['output'];
|
|
147667
|
+
previousHealth?: Maybe<MercuryOrganizationHealth>;
|
|
147668
|
+
previousStatus?: Maybe<MercuryOrganizationStatus>;
|
|
147669
|
+
previousTargetDate?: Maybe<MercuryTargetDate>;
|
|
147670
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
147671
|
+
updatedBy?: Maybe<User>;
|
|
147672
|
+
updatedDate: Scalars['String']['output'];
|
|
147673
|
+
uuid: Scalars['ID']['output'];
|
|
147674
|
+
};
|
|
147675
|
+
export declare type MercuryOrganizationStatusUpdateCommentsArgs = {
|
|
147676
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
147677
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
147678
|
+
};
|
|
147679
|
+
export declare type MercuryOrganizationStatusUpdateConnection = {
|
|
147680
|
+
__typename?: 'MercuryOrganizationStatusUpdateConnection';
|
|
147681
|
+
edges?: Maybe<Array<Maybe<MercuryOrganizationStatusUpdateEdge>>>;
|
|
147682
|
+
pageInfo: PageInfo;
|
|
147683
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
147684
|
+
};
|
|
147685
|
+
export declare type MercuryOrganizationStatusUpdateEdge = {
|
|
147686
|
+
__typename?: 'MercuryOrganizationStatusUpdateEdge';
|
|
147687
|
+
cursor: Scalars['String']['output'];
|
|
147688
|
+
node?: Maybe<MercuryOrganizationStatusUpdate>;
|
|
147689
|
+
};
|
|
147690
|
+
export declare type MercuryOrganizationSummary = {
|
|
147691
|
+
__typename?: 'MercuryOrganizationSummary';
|
|
147692
|
+
id: Scalars['ID']['output'];
|
|
147693
|
+
input?: Maybe<Scalars['String']['output']>;
|
|
147694
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
147695
|
+
};
|
|
147696
|
+
export declare enum MercuryOrganizationSummaryType {
|
|
147697
|
+
Goals = "GOALS",
|
|
147698
|
+
Organization = "ORGANIZATION",
|
|
147699
|
+
Work = "WORK"
|
|
147700
|
+
}
|
|
147701
|
+
export declare type MercuryOrganizationTargetDate = {
|
|
147702
|
+
__typename?: 'MercuryOrganizationTargetDate';
|
|
147703
|
+
targetDate?: Maybe<Scalars['String']['output']>;
|
|
147704
|
+
targetDateType?: Maybe<MercuryOrganizationTargetDateType>;
|
|
147705
|
+
};
|
|
147706
|
+
export declare type MercuryOrganizationTargetDateInput = {
|
|
147707
|
+
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
147708
|
+
targetDateType?: InputMaybe<MercuryOrganizationTargetDateType>;
|
|
147709
|
+
};
|
|
147710
|
+
export declare enum MercuryOrganizationTargetDateType {
|
|
147711
|
+
Day = "DAY",
|
|
147712
|
+
Month = "MONTH",
|
|
147713
|
+
Quarter = "QUARTER"
|
|
147714
|
+
}
|
|
147715
|
+
export declare type MercuryOrganizationType = {
|
|
147716
|
+
__typename?: 'MercuryOrganizationType';
|
|
147717
|
+
hierarchyLevel: Scalars['Int']['output'];
|
|
147718
|
+
id: Scalars['ID']['output'];
|
|
147719
|
+
name: Scalars['String']['output'];
|
|
147720
|
+
organizationCount?: Maybe<MercuryOrganizationTypeAggregation>;
|
|
147721
|
+
organizationHierarchy?: Maybe<MercuryOrganizationHierarchy>;
|
|
147722
|
+
};
|
|
147723
|
+
export declare type MercuryOrganizationTypeOrganizationCountArgs = {
|
|
147724
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
147725
|
+
};
|
|
147726
|
+
export declare type MercuryOrganizationTypeAggregation = {
|
|
147727
|
+
__typename?: 'MercuryOrganizationTypeAggregation';
|
|
147728
|
+
totalCount: Scalars['Int']['output'];
|
|
147729
|
+
};
|
|
147730
|
+
export declare type MercuryOrganizationUserAccess = {
|
|
147731
|
+
__typename?: 'MercuryOrganizationUserAccess';
|
|
147732
|
+
accessLevel?: Maybe<MercuryOrganizationUserAccessLevel>;
|
|
147733
|
+
accessReason?: Maybe<MercuryOrganizationUserAccessReason>;
|
|
147734
|
+
following?: Maybe<Scalars['Boolean']['output']>;
|
|
147735
|
+
hasAccess: Scalars['Boolean']['output'];
|
|
147736
|
+
user?: Maybe<User>;
|
|
147737
|
+
};
|
|
147738
|
+
export declare type MercuryOrganizationUserAccessConnection = {
|
|
147739
|
+
__typename?: 'MercuryOrganizationUserAccessConnection';
|
|
147740
|
+
edges?: Maybe<Array<MercuryOrganizationUserAccessEdge>>;
|
|
147741
|
+
pageInfo: PageInfo;
|
|
147742
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
147743
|
+
};
|
|
147744
|
+
export declare type MercuryOrganizationUserAccessEdge = {
|
|
147745
|
+
__typename?: 'MercuryOrganizationUserAccessEdge';
|
|
147746
|
+
cursor: Scalars['String']['output'];
|
|
147747
|
+
node?: Maybe<MercuryOrganizationUserAccess>;
|
|
147748
|
+
};
|
|
147749
|
+
export declare type MercuryOrganizationUserAccessInput = {
|
|
147750
|
+
accessLevel?: InputMaybe<MercuryOrganizationUserAccessLevel>;
|
|
147751
|
+
addAsFollower?: InputMaybe<Scalars['Boolean']['input']>;
|
|
147752
|
+
principalId: Scalars['ID']['input'];
|
|
147753
|
+
};
|
|
147754
|
+
export declare enum MercuryOrganizationUserAccessLevel {
|
|
147755
|
+
Edit = "EDIT",
|
|
147756
|
+
View = "VIEW"
|
|
147757
|
+
}
|
|
147758
|
+
export declare type MercuryOrganizationUserAccessMutation = {
|
|
147759
|
+
__typename?: 'MercuryOrganizationUserAccessMutation';
|
|
147760
|
+
addedAsFollower?: Maybe<Scalars['Boolean']['output']>;
|
|
147761
|
+
userAccess?: Maybe<MercuryOrganizationUserAccess>;
|
|
147762
|
+
};
|
|
147763
|
+
export declare enum MercuryOrganizationUserAccessReason {
|
|
147764
|
+
AccessGranted = "ACCESS_GRANTED",
|
|
147765
|
+
AlreadyHasAccess = "ALREADY_HAS_ACCESS",
|
|
147766
|
+
RequiresAppAccess = "REQUIRES_APP_ACCESS",
|
|
147767
|
+
RequiresNewProductRole = "REQUIRES_NEW_PRODUCT_ROLE",
|
|
147768
|
+
RequiresSiteAccess = "REQUIRES_SITE_ACCESS"
|
|
147769
|
+
}
|
|
147770
|
+
export declare type MercuryOrganizationView = Node & {
|
|
147771
|
+
__typename?: 'MercuryOrganizationView';
|
|
147772
|
+
aggregatedOrganizationStatusCount?: Maybe<MercuryAggregatedOrganizationViewStatusCount>;
|
|
147773
|
+
id: Scalars['ID']['output'];
|
|
147774
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
147775
|
+
linkedOrganizationGoalCount: Scalars['Int']['output'];
|
|
147776
|
+
linkedOrganizationSummary?: Maybe<MercuryOrganizationViewOrganizationSummary>;
|
|
147777
|
+
name: Scalars['String']['output'];
|
|
147778
|
+
owner?: Maybe<User>;
|
|
147779
|
+
starred: Scalars['Boolean']['output'];
|
|
147780
|
+
updatedBy?: Maybe<User>;
|
|
147781
|
+
updatedDate: Scalars['String']['output'];
|
|
147782
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
147783
|
+
uuid?: Maybe<Scalars['ID']['output']>;
|
|
147784
|
+
version?: Maybe<Scalars['String']['output']>;
|
|
147785
|
+
viewType: MercuryOrganizationViewType;
|
|
147786
|
+
};
|
|
147787
|
+
export declare type MercuryOrganizationViewConnection = {
|
|
147788
|
+
__typename?: 'MercuryOrganizationViewConnection';
|
|
147789
|
+
edges?: Maybe<Array<MercuryOrganizationViewEdge>>;
|
|
147790
|
+
pageInfo: PageInfo;
|
|
147791
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
147792
|
+
};
|
|
147793
|
+
export declare type MercuryOrganizationViewEdge = {
|
|
147794
|
+
__typename?: 'MercuryOrganizationViewEdge';
|
|
147795
|
+
cursor: Scalars['String']['output'];
|
|
147796
|
+
node: MercuryOrganizationView;
|
|
147797
|
+
};
|
|
147798
|
+
export declare type MercuryOrganizationViewOrganizationSummary = {
|
|
147799
|
+
__typename?: 'MercuryOrganizationViewOrganizationSummary';
|
|
147800
|
+
organizationTypeBreakdown?: Maybe<Array<Maybe<MercuryOrganizationViewOrganizationTypeBreakdown>>>;
|
|
147801
|
+
};
|
|
147802
|
+
export declare type MercuryOrganizationViewOrganizationTypeBreakdown = {
|
|
147803
|
+
__typename?: 'MercuryOrganizationViewOrganizationTypeBreakdown';
|
|
147804
|
+
count: Scalars['Int']['output'];
|
|
147805
|
+
organizationType: MercuryOrganizationType;
|
|
147806
|
+
};
|
|
147807
|
+
export declare type MercuryOrganizationViewSort = {
|
|
147808
|
+
field: MercuryOrganizationViewSortField;
|
|
147809
|
+
order: SortOrder;
|
|
147810
|
+
};
|
|
147811
|
+
export declare enum MercuryOrganizationViewSortField {
|
|
147812
|
+
Name = "NAME",
|
|
147813
|
+
Owner = "OWNER",
|
|
147814
|
+
Starred = "STARRED"
|
|
147815
|
+
}
|
|
147816
|
+
export declare enum MercuryOrganizationViewType {
|
|
147817
|
+
HierarchyView = "HIERARCHY_VIEW"
|
|
147818
|
+
}
|
|
147819
|
+
export declare type MercuryOrganizationsMutationApi = {
|
|
147820
|
+
__typename?: 'MercuryOrganizationsMutationApi';
|
|
147821
|
+
addOrganizationCustomFieldDefinitionOptions?: Maybe<MercuryAddCustomFieldDefinitionOptionsPayload>;
|
|
147822
|
+
addWatcherToOrganization?: Maybe<MercuryAddWatcherToOrganizationPayload>;
|
|
147823
|
+
archiveOrganization?: Maybe<MercuryArchiveOrganizationPayload>;
|
|
147824
|
+
assignUserAccessToOrganization?: Maybe<MercuryAssignUserAccessToOrganizationPayload>;
|
|
147825
|
+
bulkCreateOrganizationTypes?: Maybe<MercuryBulkCreateOrganizationTypesPayload>;
|
|
147826
|
+
createOrganization?: Maybe<MercuryCreateOrganizationPayload>;
|
|
147827
|
+
createOrganizationCustomFieldDefinition?: Maybe<MercuryCreateCustomFieldDefinitionPayload>;
|
|
147828
|
+
createOrganizationHierarchy?: Maybe<MercuryCreateOrganizationHierarchyPayload>;
|
|
147829
|
+
createOrganizationStatusUpdate?: Maybe<MercuryCreateOrganizationStatusUpdatePayload>;
|
|
147830
|
+
createOrganizationType?: Maybe<MercuryCreateOrganizationTypePayload>;
|
|
147831
|
+
createOrganizationViewWithOrganizations?: Maybe<MercuryCreateOrganizationViewPayload>;
|
|
147832
|
+
deleteOrganization?: Maybe<MercuryDeleteOrganizationPayload>;
|
|
147833
|
+
deleteOrganizationCustomFieldDefinition?: Maybe<MercuryDeleteCustomFieldDefinitionPayload>;
|
|
147834
|
+
deleteOrganizationCustomFieldDefinitionOptions?: Maybe<MercuryDeleteCustomFieldDefinitionOptionsPayload>;
|
|
147835
|
+
deleteOrganizationGoalLinks?: Maybe<MercuryDeleteOrganizationGoalLinksPayload>;
|
|
147836
|
+
deleteOrganizationHierarchy?: Maybe<MercuryDeleteOrganizationHierarchyPayload>;
|
|
147837
|
+
deleteOrganizationLink?: Maybe<MercuryDeleteOrganizationLinkPayload>;
|
|
147838
|
+
deleteOrganizationStatusUpdate?: Maybe<MercuryDeleteOrganizationStatusUpdatePayload>;
|
|
147839
|
+
deleteOrganizationType?: Maybe<MercuryDeleteOrganizationTypePayload>;
|
|
147840
|
+
deleteOrganizationView?: Maybe<MercuryDeleteOrganizationViewPayload>;
|
|
147841
|
+
deleteOrganizationViewOrganizationLink?: Maybe<MercuryDeleteOrganizationViewOrganizationLinkPayload>;
|
|
147842
|
+
linkGoalsToOrganization?: Maybe<MercuryLinkGoalsToOrganizationPayload>;
|
|
147843
|
+
linkOrganizationToThirdPartyDocument?: Maybe<MercuryLinkOrganizationThirdPartyDocumentPayload>;
|
|
147844
|
+
linkOrganizationsToOrganization?: Maybe<MercuryLinkOrganizationsToOrganizationPayload>;
|
|
147845
|
+
linkOrganizationsToOrganizationView?: Maybe<MercuryLinkOrganizationsToOrganizationViewPayload>;
|
|
147846
|
+
publishOrganization?: Maybe<MercuryPublishOrganizationPayload>;
|
|
147847
|
+
recreateOrganizationViewOrganizations?: Maybe<MercuryUpdateOrganizationViewPayload>;
|
|
147848
|
+
removeUserAccessToOrganization?: Maybe<MercuryRemoveUserAccessToOrganizationPayload>;
|
|
147849
|
+
removeWatcherFromOrganization?: Maybe<MercuryRemoveWatcherFromOrganizationPayload>;
|
|
147850
|
+
reorderOrganizationCustomFieldDefinitionOptions?: Maybe<MercuryReorderCustomFieldDefinitionOptionsPayload>;
|
|
147851
|
+
reorderOrganizationTypes?: Maybe<MercuryReorderOrganizationTypesPayload>;
|
|
147852
|
+
setOrganizationCustomFieldValue?: Maybe<MercurySetOrganizationCustomFieldPayload>;
|
|
147853
|
+
setOrganizationCustomFieldValues?: Maybe<MercurySetOrganizationCustomFieldsPayload>;
|
|
147854
|
+
starOrganization?: Maybe<MercuryStarOrganizationPayload>;
|
|
147855
|
+
transitionOrganizationStatus?: Maybe<MercuryUpdateOrganizationPayload>;
|
|
147856
|
+
unStarOrganization?: Maybe<MercuryUnStarOrganizationPayload>;
|
|
147857
|
+
unarchiveOrganization?: Maybe<MercuryUnarchiveOrganizationPayload>;
|
|
147858
|
+
updateOrganizationAboutContent?: Maybe<MercuryUpdateOrganizationPayload>;
|
|
147859
|
+
updateOrganizationCustomFieldDefinitionDescription?: Maybe<MercuryUpdateCustomFieldDefinitionDescriptionPayload>;
|
|
147860
|
+
updateOrganizationCustomFieldDefinitionName?: Maybe<MercuryUpdateCustomFieldDefinitionNamePayload>;
|
|
147861
|
+
updateOrganizationCustomFieldDefinitionOption?: Maybe<MercuryUpdateCustomFieldDefinitionOptionPayload>;
|
|
147862
|
+
updateOrganizationHierarchyName?: Maybe<MercuryUpdateOrganizationHierarchyPayload>;
|
|
147863
|
+
updateOrganizationName?: Maybe<MercuryUpdateOrganizationPayload>;
|
|
147864
|
+
updateOrganizationOwner?: Maybe<MercuryUpdateOrganizationPayload>;
|
|
147865
|
+
updateOrganizationStatusUpdate?: Maybe<MercuryUpdateOrganizationStatusUpdatePayload>;
|
|
147866
|
+
updateOrganizationTargetDate?: Maybe<MercuryUpdateOrganizationPayload>;
|
|
147867
|
+
updateOrganizationType?: Maybe<MercuryUpdateOrganizationTypePayload>;
|
|
147868
|
+
updateOrganizationTypeName?: Maybe<MercuryUpdateOrganizationTypeNamePayload>;
|
|
147869
|
+
updateOrganizationViewName?: Maybe<MercuryUpdateOrganizationViewPayload>;
|
|
147870
|
+
validateOrganizationArchival?: Maybe<MercuryArchiveOrganizationValidationPayload>;
|
|
147871
|
+
};
|
|
147872
|
+
export declare type MercuryOrganizationsMutationApiAddOrganizationCustomFieldDefinitionOptionsArgs = {
|
|
147873
|
+
input: MercuryAddCustomFieldDefinitionOptionsInput;
|
|
147874
|
+
};
|
|
147875
|
+
export declare type MercuryOrganizationsMutationApiAddWatcherToOrganizationArgs = {
|
|
147876
|
+
input: MercuryAddWatcherToOrganizationInput;
|
|
147877
|
+
};
|
|
147878
|
+
export declare type MercuryOrganizationsMutationApiArchiveOrganizationArgs = {
|
|
147879
|
+
input: MercuryArchiveOrganizationInput;
|
|
147880
|
+
};
|
|
147881
|
+
export declare type MercuryOrganizationsMutationApiAssignUserAccessToOrganizationArgs = {
|
|
147882
|
+
input: MercuryAssignUserAccessToOrganizationInput;
|
|
147883
|
+
};
|
|
147884
|
+
export declare type MercuryOrganizationsMutationApiBulkCreateOrganizationTypesArgs = {
|
|
147885
|
+
input: MercuryBulkCreateOrganizationTypesInput;
|
|
147886
|
+
};
|
|
147887
|
+
export declare type MercuryOrganizationsMutationApiCreateOrganizationArgs = {
|
|
147888
|
+
input: MercuryCreateOrganizationInput;
|
|
147889
|
+
};
|
|
147890
|
+
export declare type MercuryOrganizationsMutationApiCreateOrganizationCustomFieldDefinitionArgs = {
|
|
147891
|
+
input: MercuryCreateOrganizationCustomFieldDefinitionInput;
|
|
147892
|
+
};
|
|
147893
|
+
export declare type MercuryOrganizationsMutationApiCreateOrganizationHierarchyArgs = {
|
|
147894
|
+
input: MercuryCreateOrganizationHierarchyInput;
|
|
147895
|
+
};
|
|
147896
|
+
export declare type MercuryOrganizationsMutationApiCreateOrganizationStatusUpdateArgs = {
|
|
147897
|
+
input: MercuryCreateOrganizationStatusUpdateInput;
|
|
147898
|
+
};
|
|
147899
|
+
export declare type MercuryOrganizationsMutationApiCreateOrganizationTypeArgs = {
|
|
147900
|
+
input: MercuryCreateOrganizationTypeInput;
|
|
147901
|
+
};
|
|
147902
|
+
export declare type MercuryOrganizationsMutationApiCreateOrganizationViewWithOrganizationsArgs = {
|
|
147903
|
+
input: MercuryCreateOrganizationViewOrganizationsInput;
|
|
147904
|
+
};
|
|
147905
|
+
export declare type MercuryOrganizationsMutationApiDeleteOrganizationArgs = {
|
|
147906
|
+
input: MercuryDeleteOrganizationInput;
|
|
147907
|
+
};
|
|
147908
|
+
export declare type MercuryOrganizationsMutationApiDeleteOrganizationCustomFieldDefinitionArgs = {
|
|
147909
|
+
input: MercuryDeleteCustomFieldDefinitionInput;
|
|
147910
|
+
};
|
|
147911
|
+
export declare type MercuryOrganizationsMutationApiDeleteOrganizationCustomFieldDefinitionOptionsArgs = {
|
|
147912
|
+
input: MercuryDeleteCustomFieldDefinitionOptionsInput;
|
|
147913
|
+
};
|
|
147914
|
+
export declare type MercuryOrganizationsMutationApiDeleteOrganizationGoalLinksArgs = {
|
|
147915
|
+
input: MercuryDeleteOrganizationGoalLinksInput;
|
|
147916
|
+
};
|
|
147917
|
+
export declare type MercuryOrganizationsMutationApiDeleteOrganizationHierarchyArgs = {
|
|
147918
|
+
input: MercuryDeleteOrganizationHierarchyInput;
|
|
147919
|
+
};
|
|
147920
|
+
export declare type MercuryOrganizationsMutationApiDeleteOrganizationLinkArgs = {
|
|
147921
|
+
input: MercuryDeleteOrganizationLinkInput;
|
|
147922
|
+
};
|
|
147923
|
+
export declare type MercuryOrganizationsMutationApiDeleteOrganizationStatusUpdateArgs = {
|
|
147924
|
+
input: MercuryDeleteOrganizationStatusUpdateInput;
|
|
147925
|
+
};
|
|
147926
|
+
export declare type MercuryOrganizationsMutationApiDeleteOrganizationTypeArgs = {
|
|
147927
|
+
input: MercuryDeleteOrganizationTypeInput;
|
|
147928
|
+
};
|
|
147929
|
+
export declare type MercuryOrganizationsMutationApiDeleteOrganizationViewArgs = {
|
|
147930
|
+
input: MercuryDeleteOrganizationViewInput;
|
|
147931
|
+
};
|
|
147932
|
+
export declare type MercuryOrganizationsMutationApiDeleteOrganizationViewOrganizationLinkArgs = {
|
|
147933
|
+
input: MercuryDeleteOrganizationViewOrganizationLinkInput;
|
|
147934
|
+
};
|
|
147935
|
+
export declare type MercuryOrganizationsMutationApiLinkGoalsToOrganizationArgs = {
|
|
147936
|
+
input: MercuryLinkGoalsToOrganizationInput;
|
|
147937
|
+
};
|
|
147938
|
+
export declare type MercuryOrganizationsMutationApiLinkOrganizationToThirdPartyDocumentArgs = {
|
|
147939
|
+
input: MercuryLinkOrganizationToThirdPartyDocumentInput;
|
|
147940
|
+
};
|
|
147941
|
+
export declare type MercuryOrganizationsMutationApiLinkOrganizationsToOrganizationArgs = {
|
|
147942
|
+
input: MercuryLinkOrganizationsToOrganizationInput;
|
|
147943
|
+
};
|
|
147944
|
+
export declare type MercuryOrganizationsMutationApiLinkOrganizationsToOrganizationViewArgs = {
|
|
147945
|
+
input: MercuryLinkOrganizationsToOrganizationViewInput;
|
|
147946
|
+
};
|
|
147947
|
+
export declare type MercuryOrganizationsMutationApiPublishOrganizationArgs = {
|
|
147948
|
+
input: MercuryPublishOrganizationInput;
|
|
147949
|
+
};
|
|
147950
|
+
export declare type MercuryOrganizationsMutationApiRecreateOrganizationViewOrganizationsArgs = {
|
|
147951
|
+
input: MercuryRecreateOrganizationViewOrganizationsInput;
|
|
147952
|
+
};
|
|
147953
|
+
export declare type MercuryOrganizationsMutationApiRemoveUserAccessToOrganizationArgs = {
|
|
147954
|
+
input: MercuryRemoveUserAccessToOrganizationInput;
|
|
147955
|
+
};
|
|
147956
|
+
export declare type MercuryOrganizationsMutationApiRemoveWatcherFromOrganizationArgs = {
|
|
147957
|
+
input: MercuryRemoveWatcherFromOrganizationInput;
|
|
147958
|
+
};
|
|
147959
|
+
export declare type MercuryOrganizationsMutationApiReorderOrganizationCustomFieldDefinitionOptionsArgs = {
|
|
147960
|
+
input: MercuryReorderCustomFieldDefinitionOptionsInput;
|
|
147961
|
+
};
|
|
147962
|
+
export declare type MercuryOrganizationsMutationApiReorderOrganizationTypesArgs = {
|
|
147963
|
+
input: MercuryReorderOrganizationTypesInput;
|
|
147964
|
+
};
|
|
147965
|
+
export declare type MercuryOrganizationsMutationApiSetOrganizationCustomFieldValueArgs = {
|
|
147966
|
+
input: MercurySetOrganizationCustomFieldInput;
|
|
147967
|
+
};
|
|
147968
|
+
export declare type MercuryOrganizationsMutationApiSetOrganizationCustomFieldValuesArgs = {
|
|
147969
|
+
input: MercurySetOrganizationCustomFieldsInput;
|
|
147970
|
+
};
|
|
147971
|
+
export declare type MercuryOrganizationsMutationApiStarOrganizationArgs = {
|
|
147972
|
+
input: MercuryStarOrganizationInput;
|
|
147973
|
+
};
|
|
147974
|
+
export declare type MercuryOrganizationsMutationApiTransitionOrganizationStatusArgs = {
|
|
147975
|
+
input: MercuryTransitionOrganizationStatusInput;
|
|
147976
|
+
};
|
|
147977
|
+
export declare type MercuryOrganizationsMutationApiUnStarOrganizationArgs = {
|
|
147978
|
+
input: MercuryUnStarOrganizationInput;
|
|
147979
|
+
};
|
|
147980
|
+
export declare type MercuryOrganizationsMutationApiUnarchiveOrganizationArgs = {
|
|
147981
|
+
input: MercuryUnarchiveOrganizationInput;
|
|
147982
|
+
};
|
|
147983
|
+
export declare type MercuryOrganizationsMutationApiUpdateOrganizationAboutContentArgs = {
|
|
147984
|
+
input: MercuryUpdateOrganizationAboutContentInput;
|
|
147985
|
+
};
|
|
147986
|
+
export declare type MercuryOrganizationsMutationApiUpdateOrganizationCustomFieldDefinitionDescriptionArgs = {
|
|
147987
|
+
input: MercuryUpdateCustomFieldDefinitionDescriptionInput;
|
|
147988
|
+
};
|
|
147989
|
+
export declare type MercuryOrganizationsMutationApiUpdateOrganizationCustomFieldDefinitionNameArgs = {
|
|
147990
|
+
input: MercuryUpdateCustomFieldDefinitionNameInput;
|
|
147991
|
+
};
|
|
147992
|
+
export declare type MercuryOrganizationsMutationApiUpdateOrganizationCustomFieldDefinitionOptionArgs = {
|
|
147993
|
+
input: MercuryUpdateCustomFieldDefinitionOptionInput;
|
|
147994
|
+
};
|
|
147995
|
+
export declare type MercuryOrganizationsMutationApiUpdateOrganizationHierarchyNameArgs = {
|
|
147996
|
+
input: MercuryUpdateOrganizationHierarchyNameInput;
|
|
147997
|
+
};
|
|
147998
|
+
export declare type MercuryOrganizationsMutationApiUpdateOrganizationNameArgs = {
|
|
147999
|
+
input: MercuryUpdateOrganizationNameInput;
|
|
148000
|
+
};
|
|
148001
|
+
export declare type MercuryOrganizationsMutationApiUpdateOrganizationOwnerArgs = {
|
|
148002
|
+
input: MercuryUpdateOrganizationOwnerInput;
|
|
148003
|
+
};
|
|
148004
|
+
export declare type MercuryOrganizationsMutationApiUpdateOrganizationStatusUpdateArgs = {
|
|
148005
|
+
input: MercuryUpdateOrganizationStatusUpdateInput;
|
|
148006
|
+
};
|
|
148007
|
+
export declare type MercuryOrganizationsMutationApiUpdateOrganizationTargetDateArgs = {
|
|
148008
|
+
input: MercuryUpdateOrganizationTargetDateInput;
|
|
148009
|
+
};
|
|
148010
|
+
export declare type MercuryOrganizationsMutationApiUpdateOrganizationTypeArgs = {
|
|
148011
|
+
input: MercuryUpdateOrganizationTypeInput;
|
|
148012
|
+
};
|
|
148013
|
+
export declare type MercuryOrganizationsMutationApiUpdateOrganizationTypeNameArgs = {
|
|
148014
|
+
input: MercuryUpdateOrganizationTypeNameInput;
|
|
148015
|
+
};
|
|
148016
|
+
export declare type MercuryOrganizationsMutationApiUpdateOrganizationViewNameArgs = {
|
|
148017
|
+
input: MercuryUpdateOrganizationViewNameInput;
|
|
148018
|
+
};
|
|
148019
|
+
export declare type MercuryOrganizationsMutationApiValidateOrganizationArchivalArgs = {
|
|
148020
|
+
input: MercuryArchiveOrganizationValidationInput;
|
|
148021
|
+
};
|
|
148022
|
+
export declare type MercuryOrganizationsQueryApi = {
|
|
148023
|
+
__typename?: 'MercuryOrganizationsQueryApi';
|
|
148024
|
+
aiOrganizationListSummary?: Maybe<MercuryOrganizationListSummary>;
|
|
148025
|
+
aiOrganizationSummary?: Maybe<MercuryOrganizationSummary>;
|
|
148026
|
+
organization?: Maybe<MercuryOrganization>;
|
|
148027
|
+
organizationCustomFieldDefinitionsSearch?: Maybe<MercuryCustomFieldDefinitionConnection>;
|
|
148028
|
+
organizationHierarchies?: Maybe<Array<MercuryOrganizationHierarchy>>;
|
|
148029
|
+
organizationHierarchiesSearch?: Maybe<MercuryOrganizationHierarchyConnection>;
|
|
148030
|
+
organizationHierarchy?: Maybe<MercuryOrganizationHierarchy>;
|
|
148031
|
+
organizationStatusTransitions?: Maybe<Array<MercuryOrganizationStatusTransition>>;
|
|
148032
|
+
organizationStatusUpdates?: Maybe<Array<MercuryOrganizationStatusUpdate>>;
|
|
148033
|
+
organizationTypes?: Maybe<Array<Maybe<MercuryOrganizationType>>>;
|
|
148034
|
+
organizationTypesSearch?: Maybe<Array<MercuryOrganizationType>>;
|
|
148035
|
+
organizationView?: Maybe<MercuryOrganizationView>;
|
|
148036
|
+
organizationViews?: Maybe<Array<MercuryOrganizationView>>;
|
|
148037
|
+
organizationViewsSearch?: Maybe<MercuryOrganizationViewConnection>;
|
|
148038
|
+
organizations?: Maybe<Array<MercuryOrganization>>;
|
|
148039
|
+
organizationsByExternalIds?: Maybe<Array<Maybe<MercuryOrganization>>>;
|
|
148040
|
+
organizationsSearch?: Maybe<MercuryOrganizationConnection>;
|
|
148041
|
+
};
|
|
148042
|
+
export declare type MercuryOrganizationsQueryApiAiOrganizationListSummaryArgs = {
|
|
148043
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
148044
|
+
dryRun?: InputMaybe<Scalars['Boolean']['input']>;
|
|
148045
|
+
ids: Array<Scalars['ID']['input']>;
|
|
148046
|
+
prompt?: InputMaybe<Scalars['String']['input']>;
|
|
148047
|
+
};
|
|
148048
|
+
export declare type MercuryOrganizationsQueryApiAiOrganizationSummaryArgs = {
|
|
148049
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
148050
|
+
dryRun?: InputMaybe<Scalars['Boolean']['input']>;
|
|
148051
|
+
id: Scalars['ID']['input'];
|
|
148052
|
+
includeGoalsFromSubOrganizations?: InputMaybe<Scalars['Boolean']['input']>;
|
|
148053
|
+
prompt?: InputMaybe<Scalars['String']['input']>;
|
|
148054
|
+
summaryType?: InputMaybe<MercuryOrganizationSummaryType>;
|
|
148055
|
+
};
|
|
148056
|
+
export declare type MercuryOrganizationsQueryApiOrganizationArgs = {
|
|
148057
|
+
id: Scalars['ID']['input'];
|
|
148058
|
+
};
|
|
148059
|
+
export declare type MercuryOrganizationsQueryApiOrganizationCustomFieldDefinitionsSearchArgs = {
|
|
148060
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
148061
|
+
cloudId: Scalars['ID']['input'];
|
|
148062
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
148063
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
148064
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryCustomFieldDefinitionSort>>>;
|
|
148065
|
+
};
|
|
148066
|
+
export declare type MercuryOrganizationsQueryApiOrganizationHierarchiesArgs = {
|
|
148067
|
+
ids: Array<Scalars['ID']['input']>;
|
|
148068
|
+
};
|
|
148069
|
+
export declare type MercuryOrganizationsQueryApiOrganizationHierarchiesSearchArgs = {
|
|
148070
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
148071
|
+
cloudId: Scalars['ID']['input'];
|
|
148072
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
148073
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
148074
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryOrganizationHierarchySort>>>;
|
|
148075
|
+
};
|
|
148076
|
+
export declare type MercuryOrganizationsQueryApiOrganizationHierarchyArgs = {
|
|
148077
|
+
id: Scalars['ID']['input'];
|
|
148078
|
+
};
|
|
148079
|
+
export declare type MercuryOrganizationsQueryApiOrganizationStatusTransitionsArgs = {
|
|
148080
|
+
cloudId: Scalars['ID']['input'];
|
|
148081
|
+
};
|
|
148082
|
+
export declare type MercuryOrganizationsQueryApiOrganizationStatusUpdatesArgs = {
|
|
148083
|
+
ids: Array<Scalars['ID']['input']>;
|
|
148084
|
+
};
|
|
148085
|
+
export declare type MercuryOrganizationsQueryApiOrganizationTypesArgs = {
|
|
148086
|
+
ids: Array<Scalars['ID']['input']>;
|
|
148087
|
+
};
|
|
148088
|
+
export declare type MercuryOrganizationsQueryApiOrganizationTypesSearchArgs = {
|
|
148089
|
+
cloudId: Scalars['ID']['input'];
|
|
148090
|
+
};
|
|
148091
|
+
export declare type MercuryOrganizationsQueryApiOrganizationViewArgs = {
|
|
148092
|
+
id: Scalars['ID']['input'];
|
|
148093
|
+
};
|
|
148094
|
+
export declare type MercuryOrganizationsQueryApiOrganizationViewsArgs = {
|
|
148095
|
+
ids: Array<Scalars['ID']['input']>;
|
|
148096
|
+
};
|
|
148097
|
+
export declare type MercuryOrganizationsQueryApiOrganizationViewsSearchArgs = {
|
|
148098
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
148099
|
+
cloudId: Scalars['ID']['input'];
|
|
148100
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
148101
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
148102
|
+
sort?: InputMaybe<Array<MercuryOrganizationViewSort>>;
|
|
148103
|
+
};
|
|
148104
|
+
export declare type MercuryOrganizationsQueryApiOrganizationsArgs = {
|
|
148105
|
+
ids: Array<Scalars['ID']['input']>;
|
|
148106
|
+
};
|
|
148107
|
+
export declare type MercuryOrganizationsQueryApiOrganizationsByExternalIdsArgs = {
|
|
148108
|
+
cloudId: Scalars['ID']['input'];
|
|
148109
|
+
ids: Array<Scalars['String']['input']>;
|
|
148110
|
+
};
|
|
148111
|
+
export declare type MercuryOrganizationsQueryApiOrganizationsSearchArgs = {
|
|
148112
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
148113
|
+
cloudId: Scalars['ID']['input'];
|
|
148114
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
148115
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
148116
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryOrganizationSort>>>;
|
|
148117
|
+
};
|
|
147115
148118
|
export declare type MercuryOriginalProjectStatus = {
|
|
147116
148119
|
mercuryOriginalStatusName?: Maybe<Scalars['String']['output']>;
|
|
147117
148120
|
};
|
|
@@ -147588,6 +148591,15 @@ export declare type MercuryPublishFocusAreaPayload = Payload & {
|
|
|
147588
148591
|
errors?: Maybe<Array<MutationError>>;
|
|
147589
148592
|
success: Scalars['Boolean']['output'];
|
|
147590
148593
|
};
|
|
148594
|
+
export declare type MercuryPublishOrganizationInput = {
|
|
148595
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
148596
|
+
id: Scalars['ID']['input'];
|
|
148597
|
+
};
|
|
148598
|
+
export declare type MercuryPublishOrganizationPayload = Payload & {
|
|
148599
|
+
__typename?: 'MercuryPublishOrganizationPayload';
|
|
148600
|
+
errors?: Maybe<Array<MutationError>>;
|
|
148601
|
+
success: Scalars['Boolean']['output'];
|
|
148602
|
+
};
|
|
147591
148603
|
export declare type MercuryQueryApi = {
|
|
147592
148604
|
__typename?: 'MercuryQueryApi';
|
|
147593
148605
|
aiFocusAreaGoalContextData?: Maybe<MercuryFocusAreaGoalContext>;
|
|
@@ -147767,6 +148779,10 @@ export declare type MercuryRecreateBusinessDomainViewBusinessDomainsInput = {
|
|
|
147767
148779
|
businessDomainIds: Array<Scalars['ID']['input']>;
|
|
147768
148780
|
id: Scalars['ID']['input'];
|
|
147769
148781
|
};
|
|
148782
|
+
export declare type MercuryRecreateOrganizationViewOrganizationsInput = {
|
|
148783
|
+
id: Scalars['ID']['input'];
|
|
148784
|
+
organizationIds: Array<Scalars['ID']['input']>;
|
|
148785
|
+
};
|
|
147770
148786
|
export declare type MercuryRecreatePortfolioFocusAreasInput = {
|
|
147771
148787
|
cloudId: Scalars['ID']['input'];
|
|
147772
148788
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
@@ -147801,6 +148817,15 @@ export declare type MercuryRemoveUserAccessToFocusAreaPayload = Payload & {
|
|
|
147801
148817
|
errors?: Maybe<Array<MutationError>>;
|
|
147802
148818
|
success: Scalars['Boolean']['output'];
|
|
147803
148819
|
};
|
|
148820
|
+
export declare type MercuryRemoveUserAccessToOrganizationInput = {
|
|
148821
|
+
organizationAri: Scalars['ID']['input'];
|
|
148822
|
+
principalIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
148823
|
+
};
|
|
148824
|
+
export declare type MercuryRemoveUserAccessToOrganizationPayload = Payload & {
|
|
148825
|
+
__typename?: 'MercuryRemoveUserAccessToOrganizationPayload';
|
|
148826
|
+
errors?: Maybe<Array<MutationError>>;
|
|
148827
|
+
success: Scalars['Boolean']['output'];
|
|
148828
|
+
};
|
|
147804
148829
|
export declare type MercuryRemoveWatcherFromBusinessDomainInput = {
|
|
147805
148830
|
businessDomainId: Scalars['ID']['input'];
|
|
147806
148831
|
userId: Scalars['ID']['input'];
|
|
@@ -147820,6 +148845,15 @@ export declare type MercuryRemoveWatcherFromFocusAreaPayload = Payload & {
|
|
|
147820
148845
|
errors?: Maybe<Array<MutationError>>;
|
|
147821
148846
|
success: Scalars['Boolean']['output'];
|
|
147822
148847
|
};
|
|
148848
|
+
export declare type MercuryRemoveWatcherFromOrganizationInput = {
|
|
148849
|
+
organizationId: Scalars['ID']['input'];
|
|
148850
|
+
userId: Scalars['ID']['input'];
|
|
148851
|
+
};
|
|
148852
|
+
export declare type MercuryRemoveWatcherFromOrganizationPayload = Payload & {
|
|
148853
|
+
__typename?: 'MercuryRemoveWatcherFromOrganizationPayload';
|
|
148854
|
+
errors?: Maybe<Array<MutationError>>;
|
|
148855
|
+
success: Scalars['Boolean']['output'];
|
|
148856
|
+
};
|
|
147823
148857
|
export declare type MercuryRenameFocusAreaChange = MercuryChangeInterface & Node & {
|
|
147824
148858
|
__typename?: 'MercuryRenameFocusAreaChange';
|
|
147825
148859
|
changeProposal?: Maybe<MercuryChangeProposal>;
|
|
@@ -147863,6 +148897,20 @@ export declare type MercuryReorderCustomFieldDefinitionOptionsPayload = Payload
|
|
|
147863
148897
|
errors?: Maybe<Array<MutationError>>;
|
|
147864
148898
|
success: Scalars['Boolean']['output'];
|
|
147865
148899
|
};
|
|
148900
|
+
export declare type MercuryReorderOrganizationTypesInput = {
|
|
148901
|
+
cloudId: Scalars['ID']['input'];
|
|
148902
|
+
dryRun?: InputMaybe<Scalars['Boolean']['input']>;
|
|
148903
|
+
organizationHierarchyId?: InputMaybe<Scalars['ID']['input']>;
|
|
148904
|
+
organizationTypeIds: Array<Scalars['ID']['input']>;
|
|
148905
|
+
};
|
|
148906
|
+
export declare type MercuryReorderOrganizationTypesPayload = Payload & {
|
|
148907
|
+
__typename?: 'MercuryReorderOrganizationTypesPayload';
|
|
148908
|
+
deletedLinks?: Maybe<Array<MercuryOrganizationLink>>;
|
|
148909
|
+
dryRun?: Maybe<Scalars['Boolean']['output']>;
|
|
148910
|
+
errors?: Maybe<Array<MutationError>>;
|
|
148911
|
+
reorderedOrganizationTypes?: Maybe<Array<MercuryOrganizationType>>;
|
|
148912
|
+
success: Scalars['Boolean']['output'];
|
|
148913
|
+
};
|
|
147866
148914
|
export declare type MercuryRequestFundsChange = MercuryChangeInterface & Node & {
|
|
147867
148915
|
__typename?: 'MercuryRequestFundsChange';
|
|
147868
148916
|
amount: Scalars['BigDecimal']['output'];
|
|
@@ -147971,7 +149019,7 @@ export declare type MercuryRiskRiskStatusUpdatesArgs = {
|
|
|
147971
149019
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
147972
149020
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
147973
149021
|
};
|
|
147974
|
-
export declare type MercuryRiskActivityHistory =
|
|
149022
|
+
export declare type MercuryRiskActivityHistory = {
|
|
147975
149023
|
__typename?: 'MercuryRiskActivityHistory';
|
|
147976
149024
|
eventTimestamp: Scalars['String']['output'];
|
|
147977
149025
|
eventType: MercuryRiskEventType;
|
|
@@ -148018,6 +149066,17 @@ export declare type MercuryRiskImpact = {
|
|
|
148018
149066
|
key: Scalars['String']['output'];
|
|
148019
149067
|
value: Scalars['Int']['output'];
|
|
148020
149068
|
};
|
|
149069
|
+
export declare type MercuryRiskImpactLikelihoodMatrix = {
|
|
149070
|
+
__typename?: 'MercuryRiskImpactLikelihoodMatrix';
|
|
149071
|
+
cells?: Maybe<Array<MercuryRiskImpactLikelihoodMatrixCell>>;
|
|
149072
|
+
};
|
|
149073
|
+
export declare type MercuryRiskImpactLikelihoodMatrixCell = {
|
|
149074
|
+
__typename?: 'MercuryRiskImpactLikelihoodMatrixCell';
|
|
149075
|
+
impact?: Maybe<MercuryRiskImpact>;
|
|
149076
|
+
likelihood?: Maybe<MercuryRiskLikelihood>;
|
|
149077
|
+
topRisks?: Maybe<Array<MercuryRisk>>;
|
|
149078
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
149079
|
+
};
|
|
148021
149080
|
export declare type MercuryRiskLikelihood = {
|
|
148022
149081
|
__typename?: 'MercuryRiskLikelihood';
|
|
148023
149082
|
key: Scalars['String']['output'];
|
|
@@ -148183,6 +149242,7 @@ export declare type MercuryRisksQueryApi = {
|
|
|
148183
149242
|
riskStatusUpdatesByIds?: Maybe<Array<Maybe<MercuryRiskStatusUpdate>>>;
|
|
148184
149243
|
riskStatuses: Array<MercuryRiskStatus>;
|
|
148185
149244
|
risks?: Maybe<Array<Maybe<MercuryRisk>>>;
|
|
149245
|
+
risksByLikelihoodAndImpact?: Maybe<MercuryRiskImpactLikelihoodMatrix>;
|
|
148186
149246
|
risksSearch?: Maybe<MercuryRiskConnection>;
|
|
148187
149247
|
searchRiskActivityHistory?: Maybe<MercuryRiskActivityHistoryConnection>;
|
|
148188
149248
|
};
|
|
@@ -148207,6 +149267,10 @@ export declare type MercuryRisksQueryApiRiskStatusesArgs = {
|
|
|
148207
149267
|
export declare type MercuryRisksQueryApiRisksArgs = {
|
|
148208
149268
|
ids: Array<Scalars['ID']['input']>;
|
|
148209
149269
|
};
|
|
149270
|
+
export declare type MercuryRisksQueryApiRisksByLikelihoodAndImpactArgs = {
|
|
149271
|
+
cloudId: Scalars['ID']['input'];
|
|
149272
|
+
riskStatusId: Scalars['ID']['input'];
|
|
149273
|
+
};
|
|
148210
149274
|
export declare type MercuryRisksQueryApiRisksSearchArgs = {
|
|
148211
149275
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
148212
149276
|
cloudId: Scalars['ID']['input'];
|
|
@@ -148296,6 +149360,27 @@ export declare type MercurySetFocusAreaCustomFieldsPayload = Payload & {
|
|
|
148296
149360
|
errors?: Maybe<Array<MutationError>>;
|
|
148297
149361
|
success: Scalars['Boolean']['output'];
|
|
148298
149362
|
};
|
|
149363
|
+
export declare type MercurySetOrganizationCustomFieldInput = {
|
|
149364
|
+
coreField?: InputMaybe<MercuryCustomFieldInput>;
|
|
149365
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
149366
|
+
organizationId: Scalars['ID']['input'];
|
|
149367
|
+
};
|
|
149368
|
+
export declare type MercurySetOrganizationCustomFieldPayload = Payload & {
|
|
149369
|
+
__typename?: 'MercurySetOrganizationCustomFieldPayload';
|
|
149370
|
+
customField?: Maybe<MercuryCustomField>;
|
|
149371
|
+
errors?: Maybe<Array<MutationError>>;
|
|
149372
|
+
success: Scalars['Boolean']['output'];
|
|
149373
|
+
};
|
|
149374
|
+
export declare type MercurySetOrganizationCustomFieldsInput = {
|
|
149375
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
149376
|
+
customFields: Array<MercurySetOrganizationCustomFieldInput>;
|
|
149377
|
+
};
|
|
149378
|
+
export declare type MercurySetOrganizationCustomFieldsPayload = Payload & {
|
|
149379
|
+
__typename?: 'MercurySetOrganizationCustomFieldsPayload';
|
|
149380
|
+
customFields?: Maybe<Array<MercuryCustomField>>;
|
|
149381
|
+
errors?: Maybe<Array<MutationError>>;
|
|
149382
|
+
success: Scalars['Boolean']['output'];
|
|
149383
|
+
};
|
|
148299
149384
|
export declare type MercurySetPreferenceInput = {
|
|
148300
149385
|
cloudId: Scalars['ID']['input'];
|
|
148301
149386
|
key: Scalars['String']['input'];
|
|
@@ -148381,6 +149466,14 @@ export declare type MercuryStarFocusAreaPayload = Payload & {
|
|
|
148381
149466
|
errors?: Maybe<Array<MutationError>>;
|
|
148382
149467
|
success: Scalars['Boolean']['output'];
|
|
148383
149468
|
};
|
|
149469
|
+
export declare type MercuryStarOrganizationInput = {
|
|
149470
|
+
organizationId: Scalars['ID']['input'];
|
|
149471
|
+
};
|
|
149472
|
+
export declare type MercuryStarOrganizationPayload = Payload & {
|
|
149473
|
+
__typename?: 'MercuryStarOrganizationPayload';
|
|
149474
|
+
errors?: Maybe<Array<MutationError>>;
|
|
149475
|
+
success: Scalars['Boolean']['output'];
|
|
149476
|
+
};
|
|
148384
149477
|
export declare enum MercuryStatusColor {
|
|
148385
149478
|
Blue = "BLUE",
|
|
148386
149479
|
Gray = "GRAY",
|
|
@@ -148816,6 +149909,17 @@ export declare type MercurySubBusinessDomainCountByStatusHealth = {
|
|
|
148816
149909
|
pending?: Maybe<Scalars['Int']['output']>;
|
|
148817
149910
|
total?: Maybe<Scalars['Int']['output']>;
|
|
148818
149911
|
};
|
|
149912
|
+
export declare type MercurySubOrganizationCountByStatusHealth = {
|
|
149913
|
+
__typename?: 'MercurySubOrganizationCountByStatusHealth';
|
|
149914
|
+
atRisk?: Maybe<Scalars['Int']['output']>;
|
|
149915
|
+
completed?: Maybe<Scalars['Int']['output']>;
|
|
149916
|
+
inProgress?: Maybe<Scalars['Int']['output']>;
|
|
149917
|
+
offTrack?: Maybe<Scalars['Int']['output']>;
|
|
149918
|
+
onTrack?: Maybe<Scalars['Int']['output']>;
|
|
149919
|
+
paused?: Maybe<Scalars['Int']['output']>;
|
|
149920
|
+
pending?: Maybe<Scalars['Int']['output']>;
|
|
149921
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
149922
|
+
};
|
|
148819
149923
|
export declare type MercurySubscriptionApi = {
|
|
148820
149924
|
__typename?: 'MercurySubscriptionApi';
|
|
148821
149925
|
onUpdateChangeProposals?: Maybe<MercuryOnUpdateChangeProposalsPayload>;
|
|
@@ -148922,6 +150026,11 @@ export declare type MercuryTransitionFocusAreaStatusInput = {
|
|
|
148922
150026
|
id: Scalars['ID']['input'];
|
|
148923
150027
|
statusTransitionId: Scalars['ID']['input'];
|
|
148924
150028
|
};
|
|
150029
|
+
export declare type MercuryTransitionOrganizationStatusInput = {
|
|
150030
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
150031
|
+
id: Scalars['ID']['input'];
|
|
150032
|
+
statusTransitionId: Scalars['ID']['input'];
|
|
150033
|
+
};
|
|
148925
150034
|
export declare type MercuryTransitionRiskPayload = Payload & {
|
|
148926
150035
|
__typename?: 'MercuryTransitionRiskPayload';
|
|
148927
150036
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -148959,6 +150068,14 @@ export declare type MercuryUnStarFocusAreaPayload = Payload & {
|
|
|
148959
150068
|
errors?: Maybe<Array<MutationError>>;
|
|
148960
150069
|
success: Scalars['Boolean']['output'];
|
|
148961
150070
|
};
|
|
150071
|
+
export declare type MercuryUnStarOrganizationInput = {
|
|
150072
|
+
organizationId: Scalars['ID']['input'];
|
|
150073
|
+
};
|
|
150074
|
+
export declare type MercuryUnStarOrganizationPayload = Payload & {
|
|
150075
|
+
__typename?: 'MercuryUnStarOrganizationPayload';
|
|
150076
|
+
errors?: Maybe<Array<MutationError>>;
|
|
150077
|
+
success: Scalars['Boolean']['output'];
|
|
150078
|
+
};
|
|
148962
150079
|
export declare type MercuryUnarchiveBusinessDomainInput = {
|
|
148963
150080
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
148964
150081
|
comment?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -148979,6 +150096,16 @@ export declare type MercuryUnarchiveFocusAreaPayload = Payload & {
|
|
|
148979
150096
|
errors?: Maybe<Array<MutationError>>;
|
|
148980
150097
|
success: Scalars['Boolean']['output'];
|
|
148981
150098
|
};
|
|
150099
|
+
export declare type MercuryUnarchiveOrganizationInput = {
|
|
150100
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
150101
|
+
comment?: InputMaybe<Scalars['String']['input']>;
|
|
150102
|
+
id: Scalars['ID']['input'];
|
|
150103
|
+
};
|
|
150104
|
+
export declare type MercuryUnarchiveOrganizationPayload = Payload & {
|
|
150105
|
+
__typename?: 'MercuryUnarchiveOrganizationPayload';
|
|
150106
|
+
errors?: Maybe<Array<MutationError>>;
|
|
150107
|
+
success: Scalars['Boolean']['output'];
|
|
150108
|
+
};
|
|
148982
150109
|
export declare type MercuryUndoDismissInsightInput = {
|
|
148983
150110
|
cloudId: Scalars['ID']['input'];
|
|
148984
150111
|
dismissalId: Scalars['ID']['input'];
|
|
@@ -149492,6 +150619,87 @@ export declare type MercuryUpdateMovePositionsChangeInput = {
|
|
|
149492
150619
|
sourceFocusAreaId?: InputMaybe<MercuryUpdateChangeFocusAreaInput>;
|
|
149493
150620
|
targetFocusAreaId?: InputMaybe<MercuryUpdateChangeFocusAreaInput>;
|
|
149494
150621
|
};
|
|
150622
|
+
export declare type MercuryUpdateOrganizationAboutContentInput = {
|
|
150623
|
+
aboutContent: Scalars['String']['input'];
|
|
150624
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
150625
|
+
id: Scalars['ID']['input'];
|
|
150626
|
+
};
|
|
150627
|
+
export declare type MercuryUpdateOrganizationHierarchyNameInput = {
|
|
150628
|
+
id: Scalars['ID']['input'];
|
|
150629
|
+
name: Scalars['String']['input'];
|
|
150630
|
+
};
|
|
150631
|
+
export declare type MercuryUpdateOrganizationHierarchyPayload = Payload & {
|
|
150632
|
+
__typename?: 'MercuryUpdateOrganizationHierarchyPayload';
|
|
150633
|
+
errors?: Maybe<Array<MutationError>>;
|
|
150634
|
+
success: Scalars['Boolean']['output'];
|
|
150635
|
+
updatedOrganizationHierarchy?: Maybe<MercuryOrganizationHierarchy>;
|
|
150636
|
+
};
|
|
150637
|
+
export declare type MercuryUpdateOrganizationNameInput = {
|
|
150638
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
150639
|
+
id: Scalars['ID']['input'];
|
|
150640
|
+
name: Scalars['String']['input'];
|
|
150641
|
+
};
|
|
150642
|
+
export declare type MercuryUpdateOrganizationOwnerInput = {
|
|
150643
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
150644
|
+
id: Scalars['ID']['input'];
|
|
150645
|
+
owner: Scalars['ID']['input'];
|
|
150646
|
+
};
|
|
150647
|
+
export declare type MercuryUpdateOrganizationPayload = Payload & {
|
|
150648
|
+
__typename?: 'MercuryUpdateOrganizationPayload';
|
|
150649
|
+
errors?: Maybe<Array<MutationError>>;
|
|
150650
|
+
success: Scalars['Boolean']['output'];
|
|
150651
|
+
updatedOrganization?: Maybe<MercuryOrganization>;
|
|
150652
|
+
};
|
|
150653
|
+
export declare type MercuryUpdateOrganizationStatusUpdateInput = {
|
|
150654
|
+
id: Scalars['ID']['input'];
|
|
150655
|
+
newTargetDate?: InputMaybe<MercuryOrganizationTargetDateInput>;
|
|
150656
|
+
statusTransitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
150657
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
150658
|
+
};
|
|
150659
|
+
export declare type MercuryUpdateOrganizationStatusUpdatePayload = Payload & {
|
|
150660
|
+
__typename?: 'MercuryUpdateOrganizationStatusUpdatePayload';
|
|
150661
|
+
errors?: Maybe<Array<MutationError>>;
|
|
150662
|
+
success: Scalars['Boolean']['output'];
|
|
150663
|
+
updatedOrganizationStatusUpdate?: Maybe<MercuryOrganizationStatusUpdate>;
|
|
150664
|
+
};
|
|
150665
|
+
export declare type MercuryUpdateOrganizationTargetDateInput = {
|
|
150666
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
150667
|
+
id: Scalars['ID']['input'];
|
|
150668
|
+
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
150669
|
+
targetDateType?: InputMaybe<MercuryOrganizationTargetDateType>;
|
|
150670
|
+
};
|
|
150671
|
+
export declare type MercuryUpdateOrganizationTypeInput = {
|
|
150672
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
150673
|
+
id: Scalars['ID']['input'];
|
|
150674
|
+
organizationTypeId: Scalars['ID']['input'];
|
|
150675
|
+
};
|
|
150676
|
+
export declare type MercuryUpdateOrganizationTypeNameInput = {
|
|
150677
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
150678
|
+
id: Scalars['ID']['input'];
|
|
150679
|
+
name: Scalars['String']['input'];
|
|
150680
|
+
};
|
|
150681
|
+
export declare type MercuryUpdateOrganizationTypeNamePayload = Payload & {
|
|
150682
|
+
__typename?: 'MercuryUpdateOrganizationTypeNamePayload';
|
|
150683
|
+
errors?: Maybe<Array<MutationError>>;
|
|
150684
|
+
success: Scalars['Boolean']['output'];
|
|
150685
|
+
updatedOrganizationType?: Maybe<MercuryOrganizationType>;
|
|
150686
|
+
};
|
|
150687
|
+
export declare type MercuryUpdateOrganizationTypePayload = Payload & {
|
|
150688
|
+
__typename?: 'MercuryUpdateOrganizationTypePayload';
|
|
150689
|
+
errors?: Maybe<Array<MutationError>>;
|
|
150690
|
+
success: Scalars['Boolean']['output'];
|
|
150691
|
+
updatedOrganization?: Maybe<MercuryOrganization>;
|
|
150692
|
+
};
|
|
150693
|
+
export declare type MercuryUpdateOrganizationViewNameInput = {
|
|
150694
|
+
id: Scalars['ID']['input'];
|
|
150695
|
+
name: Scalars['String']['input'];
|
|
150696
|
+
};
|
|
150697
|
+
export declare type MercuryUpdateOrganizationViewPayload = Payload & {
|
|
150698
|
+
__typename?: 'MercuryUpdateOrganizationViewPayload';
|
|
150699
|
+
errors?: Maybe<Array<MutationError>>;
|
|
150700
|
+
success: Scalars['Boolean']['output'];
|
|
150701
|
+
updatedOrganizationView?: Maybe<MercuryOrganizationView>;
|
|
150702
|
+
};
|
|
149495
150703
|
export declare type MercuryUpdatePortfolioNameInput = {
|
|
149496
150704
|
cloudId: Scalars['ID']['input'];
|
|
149497
150705
|
id: Scalars['ID']['input'];
|
|
@@ -150284,7 +151492,6 @@ export declare type Mutation = {
|
|
|
150284
151492
|
confluence_sendToDesktop?: Maybe<ConfluenceDesktopSendPayload>;
|
|
150285
151493
|
confluence_setContentApprovalsSpaceSettings?: Maybe<ConfluenceContentApprovalsSpaceSettingsPayload>;
|
|
150286
151494
|
confluence_setContentGeneralAccessMode?: Maybe<ConfluenceSetContentGeneralAccessModePayload>;
|
|
150287
|
-
confluence_setCutoverRoleConfig?: Maybe<ConfluenceSetCutoverRoleConfigPayload>;
|
|
150288
151495
|
confluence_setSubCalendarReminder?: Maybe<ConfluenceSetSubCalendarReminderPayload>;
|
|
150289
151496
|
confluence_shareContent?: Maybe<ConfluenceShareContentPayload>;
|
|
150290
151497
|
confluence_subscribeCalendars?: Maybe<ConfluenceSubscribeCalendarPayload>;
|
|
@@ -150312,6 +151519,7 @@ export declare type Mutation = {
|
|
|
150312
151519
|
confluence_updateDefaultTitleEmoji?: Maybe<ConfluenceUpdateDefaultTitleEmojiPayload>;
|
|
150313
151520
|
confluence_updateInstance?: Maybe<ConfluenceUpdateInstancePayload>;
|
|
150314
151521
|
confluence_updateMarkdownMode?: Maybe<ConfluenceUpdateMarkdownModePayload>;
|
|
151522
|
+
confluence_updateModeChange?: Maybe<ConfluenceUpdateModeChangePayload>;
|
|
150315
151523
|
confluence_updateNcsPdfExportConfiguration?: Maybe<ConfluenceUpdateNcsPdfExportConfigurationPayload>;
|
|
150316
151524
|
confluence_updatePage?: Maybe<ConfluenceUpdatePagePayload>;
|
|
150317
151525
|
confluence_updateQuestion?: Maybe<ConfluenceUpdateQuestionPayload>;
|
|
@@ -150818,6 +152026,7 @@ export declare type Mutation = {
|
|
|
150818
152026
|
mercury_comments?: Maybe<MercuryCommentMutationApi>;
|
|
150819
152027
|
mercury_funds?: Maybe<MercuryFundsMutationApi>;
|
|
150820
152028
|
mercury_insights?: Maybe<MercuryInsightsMutationApi>;
|
|
152029
|
+
mercury_organizations?: Maybe<MercuryOrganizationsMutationApi>;
|
|
150821
152030
|
mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationMutationApi>;
|
|
150822
152031
|
mercury_risks?: Maybe<MercuryRisksMutationApi>;
|
|
150823
152032
|
mercury_strategicEvents?: Maybe<MercuryStrategicEventsMutationApi>;
|
|
@@ -151050,6 +152259,7 @@ export declare type Mutation = {
|
|
|
151050
152259
|
spf_updatePlanTimeframe?: Maybe<SpfUpsertPlanPayload>;
|
|
151051
152260
|
spf_updatePlanVisibility?: Maybe<SpfUpsertPlanPayload>;
|
|
151052
152261
|
spf_updateViewName?: Maybe<SpfUpsertViewPayload>;
|
|
152262
|
+
spf_updateViewOwner?: Maybe<SpfUpsertViewPayload>;
|
|
151053
152263
|
spf_updateViewSettings?: Maybe<SpfUpsertViewPayload>;
|
|
151054
152264
|
splitIssue?: Maybe<SplitIssueOutput>;
|
|
151055
152265
|
spss_exportFullSiteScanResults?: Maybe<SpssExportFullSiteScanResultsPayload>;
|
|
@@ -152552,10 +153762,6 @@ export declare type MutationConfluence_SetContentGeneralAccessModeArgs = {
|
|
|
152552
153762
|
cloudId: Scalars['ID']['input'];
|
|
152553
153763
|
input: ConfluenceSetContentGeneralAccessModeInput;
|
|
152554
153764
|
};
|
|
152555
|
-
export declare type MutationConfluence_SetCutoverRoleConfigArgs = {
|
|
152556
|
-
cloudId: Scalars['ID']['input'];
|
|
152557
|
-
input: ConfluenceSetCutoverRoleConfigInput;
|
|
152558
|
-
};
|
|
152559
153765
|
export declare type MutationConfluence_SetSubCalendarReminderArgs = {
|
|
152560
153766
|
cloudId: Scalars['ID']['input'];
|
|
152561
153767
|
input: ConfluenceSetSubCalendarReminderInput;
|
|
@@ -152665,6 +153871,10 @@ export declare type MutationConfluence_UpdateMarkdownModeArgs = {
|
|
|
152665
153871
|
cloudId: Scalars['ID']['input'];
|
|
152666
153872
|
input: ConfluenceUpdateMarkdownModeInput;
|
|
152667
153873
|
};
|
|
153874
|
+
export declare type MutationConfluence_UpdateModeChangeArgs = {
|
|
153875
|
+
cloudId: Scalars['ID']['input'];
|
|
153876
|
+
input: ConfluenceUpdateModeChangeInput;
|
|
153877
|
+
};
|
|
152668
153878
|
export declare type MutationConfluence_UpdateNcsPdfExportConfigurationArgs = {
|
|
152669
153879
|
cloudId: Scalars['ID']['input'];
|
|
152670
153880
|
input: ConfluenceUpdatePdfExportNoCodeStylingConfigInput;
|
|
@@ -155068,6 +156278,9 @@ export declare type MutationSpf_UpdatePlanVisibilityArgs = {
|
|
|
155068
156278
|
export declare type MutationSpf_UpdateViewNameArgs = {
|
|
155069
156279
|
input: SpfUpdateViewNameInput;
|
|
155070
156280
|
};
|
|
156281
|
+
export declare type MutationSpf_UpdateViewOwnerArgs = {
|
|
156282
|
+
input: SpfUpdateViewOwnerInput;
|
|
156283
|
+
};
|
|
155071
156284
|
export declare type MutationSpf_UpdateViewSettingsArgs = {
|
|
155072
156285
|
input: SpfUpdateViewSettingsInput;
|
|
155073
156286
|
};
|
|
@@ -156338,7 +157551,6 @@ export declare type PtPage = {
|
|
|
156338
157551
|
lastUpdatedDate?: Maybe<ConfluenceDate>;
|
|
156339
157552
|
links?: Maybe<Map_LinkType_String>;
|
|
156340
157553
|
nearestAncestors?: Maybe<PtPaginatedPageList>;
|
|
156341
|
-
page?: Maybe<Page>;
|
|
156342
157554
|
previousSiblings?: Maybe<PtPaginatedPageList>;
|
|
156343
157555
|
properties?: Maybe<PaginatedJsonContentPropertyList>;
|
|
156344
157556
|
status?: Maybe<PtGraphQlPageStatus>;
|
|
@@ -158872,8 +160084,6 @@ export declare type Query = {
|
|
|
158872
160084
|
confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
|
|
158873
160085
|
confluence_calendarsByCriteria?: Maybe<ConfluenceCalendarConnection>;
|
|
158874
160086
|
confluence_categorizeNbmChains?: Maybe<ConfluenceCategorizeNbmChainsResult>;
|
|
158875
|
-
confluence_classificationLevelsForContent?: Maybe<Array<ContentDataClassificationLevel>>;
|
|
158876
|
-
confluence_classificationLevelsForSpaceDefault?: Maybe<Array<ContentDataClassificationLevel>>;
|
|
158877
160087
|
confluence_commentMediaSession?: Maybe<ContentMediaSession>;
|
|
158878
160088
|
confluence_contentAISummaries?: Maybe<Array<Maybe<ConfluenceContentAiSummaryResponse>>>;
|
|
158879
160089
|
confluence_contentAISummariesByContentId?: Maybe<Array<Maybe<ConfluenceContentAiSummaryByContentId>>>;
|
|
@@ -158945,6 +160155,7 @@ export declare type Query = {
|
|
|
158945
160155
|
confluence_ncsPdfExportConfiguration?: Maybe<ConfluenceNcsPdfExportConfiguration>;
|
|
158946
160156
|
confluence_note?: Maybe<NoteResponse>;
|
|
158947
160157
|
confluence_notesByProductLink?: Maybe<NoteConnection>;
|
|
160158
|
+
confluence_pageBriefing?: Maybe<ConfluencePageBriefing>;
|
|
158948
160159
|
confluence_pdfExportDownloadLink?: Maybe<ConfluencePdfExportDownloadLink>;
|
|
158949
160160
|
confluence_pdfExportTask?: Maybe<ConfluencePdfExportTask>;
|
|
158950
160161
|
confluence_pendingRequestExists?: Maybe<ConfluencePendingAccessRequest>;
|
|
@@ -159195,6 +160406,7 @@ export declare type Query = {
|
|
|
159195
160406
|
goals_byId?: Maybe<TownsquareGoal>;
|
|
159196
160407
|
goals_byIds?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
159197
160408
|
goals_byKey?: Maybe<TownsquareGoal>;
|
|
160409
|
+
goals_goalStatuses?: Maybe<Array<TownsquareStatus>>;
|
|
159198
160410
|
goals_goalTypeById?: Maybe<TownsquareGoalType>;
|
|
159199
160411
|
goals_goalTypes?: Maybe<TownsquareGoalTypeConnection>;
|
|
159200
160412
|
goals_goalTypesByIds?: Maybe<Array<Maybe<TownsquareGoalType>>>;
|
|
@@ -159309,6 +160521,7 @@ export declare type Query = {
|
|
|
159309
160521
|
jira_issuesByIds?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
159310
160522
|
jira_jiraServiceManagementDefaultCommentBehavior?: Maybe<JiraServiceManagementDefaultCommentBehavior>;
|
|
159311
160523
|
jira_jswBoardViewSettings?: Maybe<JiraJswBoardViewSettings>;
|
|
160524
|
+
jira_jswGlobalConfig?: Maybe<JswGlobalConfig>;
|
|
159312
160525
|
jira_lookAndFeel?: Maybe<JiraLookAndFeel>;
|
|
159313
160526
|
jira_mergeIssuesOperationProgress?: Maybe<JiraMergeIssuesOperationProgressResult>;
|
|
159314
160527
|
jira_onboardingConfigById?: Maybe<JiraOnboardingConfig>;
|
|
@@ -159443,6 +160656,7 @@ export declare type Query = {
|
|
|
159443
160656
|
mercury_jiraAlignProvider?: Maybe<MercuryJiraAlignProviderQueryApi>;
|
|
159444
160657
|
mercury_jiraProvider?: Maybe<MercuryJiraProviderQueryApi>;
|
|
159445
160658
|
mercury_normalizedWork?: Maybe<MercuryWorkNormalizationQueryApi>;
|
|
160659
|
+
mercury_organizations?: Maybe<MercuryOrganizationsQueryApi>;
|
|
159446
160660
|
mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationQueryApi>;
|
|
159447
160661
|
mercury_risks?: Maybe<MercuryRisksQueryApi>;
|
|
159448
160662
|
mercury_strategicEvents?: Maybe<MercuryStrategicEventsQueryApi>;
|
|
@@ -159613,7 +160827,6 @@ export declare type Query = {
|
|
|
159613
160827
|
spaceRoleAssignmentsByCriteria?: Maybe<SpaceRoleAssignmentConnection>;
|
|
159614
160828
|
spaceRoleAssignmentsByPrincipal?: Maybe<SpaceRoleAssignmentConnection>;
|
|
159615
160829
|
spaceRolesByCriteria?: Maybe<SpaceRoleConnection>;
|
|
159616
|
-
spaceRolesBySpace?: Maybe<SpaceRoleConnection>;
|
|
159617
160830
|
spaceSidebarLinks?: Maybe<SpaceSidebarLinks>;
|
|
159618
160831
|
spaceTheme?: Maybe<Theme>;
|
|
159619
160832
|
spaceWatchers?: Maybe<PaginatedPersonList>;
|
|
@@ -161650,13 +162863,6 @@ export declare type QueryConfluence_CategorizeNbmChainsArgs = {
|
|
|
161650
162863
|
cloudId: Scalars['ID']['input'];
|
|
161651
162864
|
nbmChains: Array<InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>>;
|
|
161652
162865
|
};
|
|
161653
|
-
export declare type QueryConfluence_ClassificationLevelsForContentArgs = {
|
|
161654
|
-
cloudId: Scalars['ID']['input'];
|
|
161655
|
-
contentId: Scalars['ID']['input'];
|
|
161656
|
-
};
|
|
161657
|
-
export declare type QueryConfluence_ClassificationLevelsForSpaceDefaultArgs = {
|
|
161658
|
-
cloudId: Scalars['ID']['input'];
|
|
161659
|
-
};
|
|
161660
162866
|
export declare type QueryConfluence_CommentMediaSessionArgs = {
|
|
161661
162867
|
cloudId: Scalars['ID']['input'];
|
|
161662
162868
|
contentId: Scalars['ID']['input'];
|
|
@@ -162002,6 +163208,9 @@ export declare type QueryConfluence_NotesByProductLinkArgs = {
|
|
|
162002
163208
|
orderBy?: InputMaybe<ConfluenceNotesOrdering>;
|
|
162003
163209
|
productLink: Scalars['ID']['input'];
|
|
162004
163210
|
};
|
|
163211
|
+
export declare type QueryConfluence_PageBriefingArgs = {
|
|
163212
|
+
pageId: Scalars['ID']['input'];
|
|
163213
|
+
};
|
|
162005
163214
|
export declare type QueryConfluence_PdfExportDownloadLinkArgs = {
|
|
162006
163215
|
cloudId: Scalars['ID']['input'];
|
|
162007
163216
|
id: Scalars['ID']['input'];
|
|
@@ -163147,6 +164356,9 @@ export declare type QueryGoals_ByKeyArgs = {
|
|
|
163147
164356
|
containerId: Scalars['ID']['input'];
|
|
163148
164357
|
goalKey: Scalars['String']['input'];
|
|
163149
164358
|
};
|
|
164359
|
+
export declare type QueryGoals_GoalStatusesArgs = {
|
|
164360
|
+
containerId: Scalars['ID']['input'];
|
|
164361
|
+
};
|
|
163150
164362
|
export declare type QueryGoals_GoalTypeByIdArgs = {
|
|
163151
164363
|
goalTypeId: Scalars['ID']['input'];
|
|
163152
164364
|
};
|
|
@@ -163564,6 +164776,9 @@ export declare type QueryJira_JiraServiceManagementDefaultCommentBehaviorArgs =
|
|
|
163564
164776
|
export declare type QueryJira_JswBoardViewSettingsArgs = {
|
|
163565
164777
|
input: JiraJswBoardViewSettingsQueryInput;
|
|
163566
164778
|
};
|
|
164779
|
+
export declare type QueryJira_JswGlobalConfigArgs = {
|
|
164780
|
+
cloudId: Scalars['ID']['input'];
|
|
164781
|
+
};
|
|
163567
164782
|
export declare type QueryJira_LookAndFeelArgs = {
|
|
163568
164783
|
cloudId: Scalars['ID']['input'];
|
|
163569
164784
|
};
|
|
@@ -163782,6 +164997,7 @@ export declare type QueryKitsune_SearchChunkArgs = {
|
|
|
163782
164997
|
export declare type QueryKitsune_SearchCustomersArgs = {
|
|
163783
164998
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
163784
164999
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
165000
|
+
organizationAri?: InputMaybe<Scalars['ID']['input']>;
|
|
163785
165001
|
organizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
163786
165002
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
163787
165003
|
workspaceAri: Scalars['ID']['input'];
|
|
@@ -164682,11 +165898,6 @@ export declare type QuerySpaceRolesByCriteriaArgs = {
|
|
|
164682
165898
|
principal?: InputMaybe<RoleAssignmentPrincipalInput>;
|
|
164683
165899
|
spaceId?: InputMaybe<Scalars['Long']['input']>;
|
|
164684
165900
|
};
|
|
164685
|
-
export declare type QuerySpaceRolesBySpaceArgs = {
|
|
164686
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
164687
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
164688
|
-
spaceId: Scalars['Long']['input'];
|
|
164689
|
-
};
|
|
164690
165901
|
export declare type QuerySpaceSidebarLinksArgs = {
|
|
164691
165902
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
164692
165903
|
};
|
|
@@ -167902,8 +169113,12 @@ export declare enum Scope {
|
|
|
167902
169113
|
TrelloAtlassianExternal = "TRELLO_ATLASSIAN_EXTERNAL",
|
|
167903
169114
|
TrelloReadBoard = "TRELLO_READ_BOARD",
|
|
167904
169115
|
TrelloReadMember = "TRELLO_READ_MEMBER",
|
|
169116
|
+
TrelloReadMemberInbox = "TRELLO_READ_MEMBER_INBOX",
|
|
169117
|
+
TrelloReadMemberPlanner = "TRELLO_READ_MEMBER_PLANNER",
|
|
167905
169118
|
TrelloReadOrganization = "TRELLO_READ_ORGANIZATION",
|
|
167906
169119
|
TrelloWriteBoard = "TRELLO_WRITE_BOARD",
|
|
169120
|
+
TrelloWriteMemberInbox = "TRELLO_WRITE_MEMBER_INBOX",
|
|
169121
|
+
TrelloWriteMemberPlanner = "TRELLO_WRITE_MEMBER_PLANNER",
|
|
167907
169122
|
UserColumnsRead = "USER_COLUMNS_READ",
|
|
167908
169123
|
UserConfigurationDelete = "USER_CONFIGURATION_DELETE",
|
|
167909
169124
|
UserConfigurationRead = "USER_CONFIGURATION_READ",
|
|
@@ -188560,6 +189775,13 @@ export declare type SmartFeaturesUserResultResponse = SmartFeaturesResultRespons
|
|
|
188560
189775
|
result?: Maybe<Array<Maybe<SmartFeaturesUserResult>>>;
|
|
188561
189776
|
};
|
|
188562
189777
|
export declare type SmartLink = {
|
|
189778
|
+
canView: Scalars['Boolean']['output'];
|
|
189779
|
+
emojiTitle?: Maybe<Scalars['String']['output']>;
|
|
189780
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
189781
|
+
product?: Maybe<Scalars['String']['output']>;
|
|
189782
|
+
resolved: Scalars['Boolean']['output'];
|
|
189783
|
+
resourceType?: Maybe<Scalars['String']['output']>;
|
|
189784
|
+
subType?: Maybe<Scalars['String']['output']>;
|
|
188563
189785
|
title?: Maybe<Scalars['String']['output']>;
|
|
188564
189786
|
url: Scalars['String']['output'];
|
|
188565
189787
|
};
|
|
@@ -190065,6 +191287,7 @@ export declare type SpfCreateViewInput = {
|
|
|
190065
191287
|
cloudId: Scalars['ID']['input'];
|
|
190066
191288
|
entityType: Scalars['String']['input'];
|
|
190067
191289
|
name: Scalars['String']['input'];
|
|
191290
|
+
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
190068
191291
|
settings: SpfViewSettingsInput;
|
|
190069
191292
|
};
|
|
190070
191293
|
export declare type SpfDeleteAskCommentInput = {
|
|
@@ -190568,6 +191791,10 @@ export declare type SpfUpdateViewNameInput = {
|
|
|
190568
191791
|
id: Scalars['ID']['input'];
|
|
190569
191792
|
name: Scalars['String']['input'];
|
|
190570
191793
|
};
|
|
191794
|
+
export declare type SpfUpdateViewOwnerInput = {
|
|
191795
|
+
id: Scalars['ID']['input'];
|
|
191796
|
+
ownerId: Scalars['String']['input'];
|
|
191797
|
+
};
|
|
190571
191798
|
export declare type SpfUpdateViewSettingsInput = {
|
|
190572
191799
|
id: Scalars['ID']['input'];
|
|
190573
191800
|
settings: SpfViewSettingsInput;
|
|
@@ -190645,6 +191872,8 @@ export declare type SpfView = Node & {
|
|
|
190645
191872
|
entityType: Scalars['String']['output'];
|
|
190646
191873
|
id: Scalars['ID']['output'];
|
|
190647
191874
|
name: Scalars['String']['output'];
|
|
191875
|
+
owner?: Maybe<User>;
|
|
191876
|
+
ownerId?: Maybe<Scalars['String']['output']>;
|
|
190648
191877
|
settings: SpfViewSettings;
|
|
190649
191878
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
190650
191879
|
updatedBy?: Maybe<User>;
|
|
@@ -195281,6 +196510,7 @@ export declare type TownsquareGoalCreateMetricInput = {
|
|
|
195281
196510
|
name: Scalars['String']['input'];
|
|
195282
196511
|
source?: InputMaybe<Scalars['String']['input']>;
|
|
195283
196512
|
subType?: InputMaybe<Scalars['String']['input']>;
|
|
196513
|
+
time?: InputMaybe<Scalars['DateTime']['input']>;
|
|
195284
196514
|
type: TownsquareMetricType;
|
|
195285
196515
|
value: Scalars['Float']['input'];
|
|
195286
196516
|
};
|
|
@@ -198927,6 +200157,10 @@ export declare type TrelloBoardCustomFieldsLimits = {
|
|
|
198927
200157
|
__typename?: 'TrelloBoardCustomFieldsLimits';
|
|
198928
200158
|
perBoard?: Maybe<TrelloLimitProps>;
|
|
198929
200159
|
};
|
|
200160
|
+
export declare type TrelloBoardDeleted = {
|
|
200161
|
+
__typename?: 'TrelloBoardDeleted';
|
|
200162
|
+
id: Scalars['ID']['output'];
|
|
200163
|
+
};
|
|
198930
200164
|
export declare type TrelloBoardEdge = {
|
|
198931
200165
|
__typename?: 'TrelloBoardEdge';
|
|
198932
200166
|
cursor: Scalars['String']['output'];
|
|
@@ -200346,6 +201580,7 @@ export declare type TrelloDeleteBoardInput = {
|
|
|
200346
201580
|
};
|
|
200347
201581
|
export declare type TrelloDeleteBoardPayload = Payload & {
|
|
200348
201582
|
__typename?: 'TrelloDeleteBoardPayload';
|
|
201583
|
+
board?: Maybe<TrelloBoardDeleted>;
|
|
200349
201584
|
errors?: Maybe<Array<MutationError>>;
|
|
200350
201585
|
success: Scalars['Boolean']['output'];
|
|
200351
201586
|
};
|
|
@@ -200745,6 +201980,16 @@ export declare type TrelloInboxUpdated = TrelloBaseBoardUpdated & {
|
|
|
200745
201980
|
prefs?: Maybe<TrelloInboxPrefs>;
|
|
200746
201981
|
workspace?: Maybe<TrelloBoardWorkspaceUpdated>;
|
|
200747
201982
|
};
|
|
201983
|
+
export declare type TrelloInitializeVoiceCaptureSessionInput = {
|
|
201984
|
+
boardId: Scalars['ID']['input'];
|
|
201985
|
+
listId: Scalars['ID']['input'];
|
|
201986
|
+
};
|
|
201987
|
+
export declare type TrelloInitializeVoiceCaptureSessionPayload = Payload & {
|
|
201988
|
+
__typename?: 'TrelloInitializeVoiceCaptureSessionPayload';
|
|
201989
|
+
errors?: Maybe<Array<MutationError>>;
|
|
201990
|
+
sessionId?: Maybe<Scalars['ID']['output']>;
|
|
201991
|
+
success: Scalars['Boolean']['output'];
|
|
201992
|
+
};
|
|
200748
201993
|
export declare type TrelloJwmWorkspaceLink = {
|
|
200749
201994
|
__typename?: 'TrelloJwmWorkspaceLink';
|
|
200750
201995
|
cloudId?: Maybe<Scalars['String']['output']>;
|
|
@@ -201368,6 +202613,7 @@ export declare type TrelloMutationApi = {
|
|
|
201368
202613
|
generateCheckItemsForCard?: Maybe<TrelloGenerateCheckItemsForCardPayload>;
|
|
201369
202614
|
hideCardCoversOnCardFront?: Maybe<TrelloHideCardCoversOnCardFrontPayload>;
|
|
201370
202615
|
hideVotesOnBoard?: Maybe<TrelloHideVotesOnBoardPayload>;
|
|
202616
|
+
initializeVoiceCaptureSession?: Maybe<TrelloInitializeVoiceCaptureSessionPayload>;
|
|
201371
202617
|
markCardComplete?: Maybe<TrelloMarkCardCompletePayload>;
|
|
201372
202618
|
markInboxNotificationsRead?: Maybe<TrelloMarkInboxNotificationsReadPayload>;
|
|
201373
202619
|
mergeCards?: Maybe<TrelloMergeCardsPayload>;
|
|
@@ -201574,6 +202820,9 @@ export declare type TrelloMutationApiHideCardCoversOnCardFrontArgs = {
|
|
|
201574
202820
|
export declare type TrelloMutationApiHideVotesOnBoardArgs = {
|
|
201575
202821
|
input: TrelloHideVotesOnBoardInput;
|
|
201576
202822
|
};
|
|
202823
|
+
export declare type TrelloMutationApiInitializeVoiceCaptureSessionArgs = {
|
|
202824
|
+
input: TrelloInitializeVoiceCaptureSessionInput;
|
|
202825
|
+
};
|
|
201577
202826
|
export declare type TrelloMutationApiMarkCardCompleteArgs = {
|
|
201578
202827
|
input: TrelloMarkCardCompleteInput;
|
|
201579
202828
|
};
|
|
@@ -202658,6 +203907,7 @@ export declare type TrelloProposedEventUpdated = {
|
|
|
202658
203907
|
export declare type TrelloProviderCalendarDeleted = {
|
|
202659
203908
|
__typename?: 'TrelloProviderCalendarDeleted';
|
|
202660
203909
|
id: Scalars['ID']['output'];
|
|
203910
|
+
providerAccountId: Scalars['ID']['output'];
|
|
202661
203911
|
};
|
|
202662
203912
|
export declare type TrelloProviderCalendarInterface = {
|
|
202663
203913
|
color?: Maybe<TrelloPlannerCalendarColor>;
|