@forge/cli-shared 8.24.1-next.1 → 8.25.0-next.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/out/graphql/graphql-types.d.ts +1285 -88
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +262 -44
- package/out/tunnel/tunnel-options.d.ts +2 -0
- package/out/tunnel/tunnel-options.d.ts.map +1 -1
- package/out/tunnel/tunnel-options.js +4 -2
- package/out/ui/text.d.ts +2 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +6 -4
- package/package.json +1 -1
|
@@ -189,6 +189,13 @@ export declare enum AiOpsChangeAnalysisStatus {
|
|
|
189
189
|
NotStarted = "NOT_STARTED",
|
|
190
190
|
Skipped = "SKIPPED"
|
|
191
191
|
}
|
|
192
|
+
export declare type AiOpsChangeCandidateFunnelCounts = {
|
|
193
|
+
__typename?: 'AIOpsChangeCandidateFunnelCounts';
|
|
194
|
+
afterCorrelationFilter?: Maybe<Scalars['Int']['output']>;
|
|
195
|
+
afterReasoningFilter?: Maybe<Scalars['Int']['output']>;
|
|
196
|
+
afterReviewerFilter?: Maybe<Scalars['Int']['output']>;
|
|
197
|
+
initial?: Maybe<Scalars['Int']['output']>;
|
|
198
|
+
};
|
|
192
199
|
export declare type AiOpsChangeImpactTaskOutput = {
|
|
193
200
|
__typename?: 'AIOpsChangeImpactTaskOutput';
|
|
194
201
|
perServiceAnalysis?: Maybe<Array<AiOpsServiceChangeAnalysis>>;
|
|
@@ -532,6 +539,7 @@ export declare type AiOpsInvestigationTaskArgs = {
|
|
|
532
539
|
export declare type AiOpsInvestigationCompleted = {
|
|
533
540
|
__typename?: 'AIOpsInvestigationCompleted';
|
|
534
541
|
changeCandidateFunnelCounts?: Maybe<Scalars['String']['output']>;
|
|
542
|
+
changeCandidateFunnelMetrics?: Maybe<AiOpsChangeCandidateFunnelCounts>;
|
|
535
543
|
error?: Maybe<Scalars['String']['output']>;
|
|
536
544
|
errorContextSummary?: Maybe<Scalars['String']['output']>;
|
|
537
545
|
investigationJourney?: Maybe<Scalars['String']['output']>;
|
|
@@ -2158,6 +2166,7 @@ export declare type AvpDashboardInput = {
|
|
|
2158
2166
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
2159
2167
|
settings?: InputMaybe<AvpDashboardSettingsInput>;
|
|
2160
2168
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
2169
|
+
type?: InputMaybe<AvpDashboardType>;
|
|
2161
2170
|
};
|
|
2162
2171
|
export declare enum AvpDashboardPermissionType {
|
|
2163
2172
|
Closed = "CLOSED",
|
|
@@ -3291,6 +3300,7 @@ export declare type ActivitiesWorkedOnArgs = {
|
|
|
3291
3300
|
export declare type ActivitiesArguments = {
|
|
3292
3301
|
accountIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
3293
3302
|
cloudIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
3303
|
+
collabContextId?: InputMaybe<Scalars['ID']['input']>;
|
|
3294
3304
|
containerIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
3295
3305
|
earliestStart?: InputMaybe<Scalars['String']['input']>;
|
|
3296
3306
|
eventTypes?: InputMaybe<Array<ActivityEventType>>;
|
|
@@ -3460,6 +3470,7 @@ export declare enum ActivityEventType {
|
|
|
3460
3470
|
export declare type ActivityFilter = {
|
|
3461
3471
|
actors?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
3462
3472
|
arguments?: InputMaybe<ActivityFilterArgs>;
|
|
3473
|
+
collabContextId?: InputMaybe<Scalars['ID']['input']>;
|
|
3463
3474
|
rootContainerIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
3464
3475
|
type?: InputMaybe<ActivitiesFilterType>;
|
|
3465
3476
|
};
|
|
@@ -5530,6 +5541,12 @@ export declare type AdminWorkspaceTypeEdge = {
|
|
|
5530
5541
|
cursor: Scalars['String']['output'];
|
|
5531
5542
|
node?: Maybe<AdminWorkspaceType>;
|
|
5532
5543
|
};
|
|
5544
|
+
export declare type AdvisorySignalIndicator = {
|
|
5545
|
+
__typename?: 'AdvisorySignalIndicator';
|
|
5546
|
+
advisorySignalId: Scalars['String']['output'];
|
|
5547
|
+
advisorySignalSummary: Scalars['String']['output'];
|
|
5548
|
+
provenance: Array<IndicatorProvenance>;
|
|
5549
|
+
};
|
|
5533
5550
|
export declare type AgentAiCitation = {
|
|
5534
5551
|
__typename?: 'AgentAICitation';
|
|
5535
5552
|
confidence?: Maybe<Scalars['Float']['output']>;
|
|
@@ -6935,7 +6952,11 @@ export declare type AgentStudioSurface = {
|
|
|
6935
6952
|
id?: Maybe<AgentStudioSurfaceId>;
|
|
6936
6953
|
};
|
|
6937
6954
|
export declare enum AgentStudioSurfaceId {
|
|
6955
|
+
AssignableAgentsJira = "ASSIGNABLE_AGENTS_JIRA",
|
|
6956
|
+
DesktopApp = "DESKTOP_APP",
|
|
6957
|
+
Extension = "EXTENSION",
|
|
6938
6958
|
HelpCenter = "HELP_CENTER",
|
|
6959
|
+
Mobile = "MOBILE",
|
|
6939
6960
|
Portal = "PORTAL",
|
|
6940
6961
|
RovoChat = "ROVO_CHAT",
|
|
6941
6962
|
Slack = "SLACK"
|
|
@@ -7765,6 +7786,9 @@ export declare type AgentWorkspaceCreateTeamFromGroupInput = {
|
|
|
7765
7786
|
groupAri: Scalars['ID']['input'];
|
|
7766
7787
|
groupName: Scalars['String']['input'];
|
|
7767
7788
|
};
|
|
7789
|
+
export declare type AgentWorkspaceCreateWfoSummaryViewInput = {
|
|
7790
|
+
projectAri: Scalars['ID']['input'];
|
|
7791
|
+
};
|
|
7768
7792
|
export declare enum AgentWorkspaceDayOfWeek {
|
|
7769
7793
|
Friday = "FRIDAY",
|
|
7770
7794
|
Monday = "MONDAY",
|
|
@@ -7844,6 +7868,10 @@ export declare type AgentWorkspaceDraftedRoutingTableStatus = {
|
|
|
7844
7868
|
draftId?: Maybe<Scalars['ID']['output']>;
|
|
7845
7869
|
serviceFieldId?: Maybe<Scalars['String']['output']>;
|
|
7846
7870
|
};
|
|
7871
|
+
export declare enum AgentWorkspaceEditBoundReason {
|
|
7872
|
+
AdjacentShift = "ADJACENT_SHIFT",
|
|
7873
|
+
ScheduleOccurrenceBoundary = "SCHEDULE_OCCURRENCE_BOUNDARY"
|
|
7874
|
+
}
|
|
7847
7875
|
export declare type AgentWorkspaceEditCoverShiftInput = {
|
|
7848
7876
|
agentId: Scalars['ID']['input'];
|
|
7849
7877
|
coveringShiftId: Scalars['ID']['input'];
|
|
@@ -8376,6 +8404,13 @@ export declare type AgentWorkspaceShift = {
|
|
|
8376
8404
|
export declare type AgentWorkspaceShiftEditBounds = {
|
|
8377
8405
|
__typename?: 'AgentWorkspaceShiftEditBounds';
|
|
8378
8406
|
editableWindow: AgentWorkspaceTimeRange;
|
|
8407
|
+
endBound: AgentWorkspaceShiftEditBoundsEdge;
|
|
8408
|
+
startBound: AgentWorkspaceShiftEditBoundsEdge;
|
|
8409
|
+
};
|
|
8410
|
+
export declare type AgentWorkspaceShiftEditBoundsEdge = {
|
|
8411
|
+
__typename?: 'AgentWorkspaceShiftEditBoundsEdge';
|
|
8412
|
+
reason: AgentWorkspaceEditBoundReason;
|
|
8413
|
+
time: Scalars['DateTime']['output'];
|
|
8379
8414
|
};
|
|
8380
8415
|
export declare type AgentWorkspaceShiftEditBoundsInput = {
|
|
8381
8416
|
occurrenceAgentId: Scalars['ID']['input'];
|
|
@@ -8595,7 +8630,7 @@ export declare type AgentWorkspaceStartGenerateRoutingTablePayload = {
|
|
|
8595
8630
|
export declare type AgentWorkspaceSubmitDraftedRoutingTableInput = {
|
|
8596
8631
|
cloudId: Scalars['ID']['input'];
|
|
8597
8632
|
draftId?: InputMaybe<Scalars['ID']['input']>;
|
|
8598
|
-
expectedSetupVersion
|
|
8633
|
+
expectedSetupVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
8599
8634
|
fieldId: Scalars['String']['input'];
|
|
8600
8635
|
projectKey: Scalars['String']['input'];
|
|
8601
8636
|
selectedServiceIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -8841,6 +8876,9 @@ export declare type AgentWorkspaceWfoSummaryView = {
|
|
|
8841
8876
|
dashboardId?: Maybe<Scalars['ID']['output']>;
|
|
8842
8877
|
viewId: Scalars['ID']['output'];
|
|
8843
8878
|
};
|
|
8879
|
+
export declare type AgentWorkspaceWfoSummaryViewQueryInput = {
|
|
8880
|
+
projectAri: Scalars['ID']['input'];
|
|
8881
|
+
};
|
|
8844
8882
|
export declare type AgentWorkspaceWorkloadJqlConfig = {
|
|
8845
8883
|
__typename?: 'AgentWorkspaceWorkloadJqlConfig';
|
|
8846
8884
|
jql: Scalars['String']['output'];
|
|
@@ -8904,6 +8942,7 @@ export declare type AiCoreApiRsaEmployeeTicketsResult = AiCoreApiRsaEmployeeTick
|
|
|
8904
8942
|
export declare type AiCoreApiRsaFetchReportResult = AiCoreApiRsaReportPayload | QueryError;
|
|
8905
8943
|
export declare type AiCoreApiRsaFunnelMetricsPayload = {
|
|
8906
8944
|
__typename?: 'AiCoreApiRsaFunnelMetricsPayload';
|
|
8945
|
+
conversationsStarted: Scalars['Int']['output'];
|
|
8907
8946
|
ticketsAssignedToRovo: Scalars['Int']['output'];
|
|
8908
8947
|
ticketsWithResolutionPlan: Scalars['Int']['output'];
|
|
8909
8948
|
};
|
|
@@ -8941,6 +8980,7 @@ export declare type AiCoreApiRsaReportPayload = {
|
|
|
8941
8980
|
__typename?: 'AiCoreApiRsaReportPayload';
|
|
8942
8981
|
assisted?: Maybe<AiCoreApiRsaAssistedResult>;
|
|
8943
8982
|
completedAt?: Maybe<Scalars['String']['output']>;
|
|
8983
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
8944
8984
|
employee?: Maybe<AiCoreApiRsaEmployeeResult>;
|
|
8945
8985
|
errorCode?: Maybe<Scalars['String']['output']>;
|
|
8946
8986
|
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
@@ -16738,8 +16778,11 @@ export declare enum CcpCreateEntitlementExperienceCapabilityErrorReasonCode {
|
|
|
16738
16778
|
}
|
|
16739
16779
|
export declare type CcpCreateEntitlementExperienceOptions = {
|
|
16740
16780
|
confirmationScreen?: InputMaybe<CcpCreateEntitlementExperienceOptionsConfirmationScreen>;
|
|
16781
|
+
existingEntitlementOverrides?: InputMaybe<Array<CcpExperienceExistingEntitlementOverrideInput>>;
|
|
16782
|
+
targetEntitlementOverride?: InputMaybe<CcpExperienceTargetEntitlementOverrideInput>;
|
|
16741
16783
|
};
|
|
16742
16784
|
export declare enum CcpCreateEntitlementExperienceOptionsConfirmationScreen {
|
|
16785
|
+
CollectionComparisonIntercept = "COLLECTION_COMPARISON_INTERCEPT",
|
|
16743
16786
|
Comparison = "COMPARISON",
|
|
16744
16787
|
Default = "DEFAULT"
|
|
16745
16788
|
}
|
|
@@ -17118,6 +17161,13 @@ export declare type CcpExperienceCapability = CommerceExperienceCapability & {
|
|
|
17118
17161
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
17119
17162
|
isAvailableToUser?: Maybe<Scalars['Boolean']['output']>;
|
|
17120
17163
|
};
|
|
17164
|
+
export declare type CcpExperienceExistingEntitlementOverrideInput = {
|
|
17165
|
+
chargeQuantitiesForRecurringEstimate?: InputMaybe<Array<CcpBillEstimateChargeQuantityInput>>;
|
|
17166
|
+
entitlementId: Scalars['ID']['input'];
|
|
17167
|
+
};
|
|
17168
|
+
export declare type CcpExperienceTargetEntitlementOverrideInput = {
|
|
17169
|
+
chargeQuantitiesForRecurringEstimate?: InputMaybe<Array<CcpBillEstimateChargeQuantityInput>>;
|
|
17170
|
+
};
|
|
17121
17171
|
export declare type CcpExtension = {
|
|
17122
17172
|
__typename?: 'CcpExtension';
|
|
17123
17173
|
ari?: Maybe<Scalars['String']['output']>;
|
|
@@ -22380,6 +22430,7 @@ export declare type CommerceExpOrderBuilderInput = {
|
|
|
22380
22430
|
orderId?: InputMaybe<Scalars['String']['input']>;
|
|
22381
22431
|
promotionsInput?: InputMaybe<CommerceExpPromotionsInput>;
|
|
22382
22432
|
transactionAccountId: Scalars['ID']['input'];
|
|
22433
|
+
unbundleCollectionOrderInput?: InputMaybe<CommerceExpUnbundleCollectionOrderInput>;
|
|
22383
22434
|
undoScheduledDeactivationInput?: InputMaybe<CommerceExpUndoScheduledDeactivationInput>;
|
|
22384
22435
|
};
|
|
22385
22436
|
export declare enum CommerceExpOrderBuilderType {
|
|
@@ -22393,6 +22444,7 @@ export declare enum CommerceExpOrderBuilderType {
|
|
|
22393
22444
|
OpsgenieMigration = "OPSGENIE_MIGRATION",
|
|
22394
22445
|
OptOutTrial = "OPT_OUT_TRIAL",
|
|
22395
22446
|
Promotions = "PROMOTIONS",
|
|
22447
|
+
UnbundleCollection = "UNBUNDLE_COLLECTION",
|
|
22396
22448
|
UndoScheduledDeactivation = "UNDO_SCHEDULED_DEACTIVATION"
|
|
22397
22449
|
}
|
|
22398
22450
|
export declare type CommerceExpOrderCreationItem = {
|
|
@@ -23178,6 +23230,10 @@ export declare type CommerceExpScheduledChanges = {
|
|
|
23178
23230
|
phases?: Maybe<Array<Maybe<CommerceExpPhase>>>;
|
|
23179
23231
|
transactionAccountId?: Maybe<Scalars['ID']['output']>;
|
|
23180
23232
|
};
|
|
23233
|
+
export declare type CommerceExpSelectedInstanceOffering = {
|
|
23234
|
+
entitlementId: Scalars['String']['input'];
|
|
23235
|
+
selectedOfferingId: Scalars['String']['input'];
|
|
23236
|
+
};
|
|
23181
23237
|
export declare type CommerceExpSendNotificationInput = {
|
|
23182
23238
|
customMessage?: InputMaybe<Scalars['String']['input']>;
|
|
23183
23239
|
invoiceGroupId: Scalars['String']['input'];
|
|
@@ -23411,6 +23467,10 @@ export declare type CommerceExpTrialIntentInput = {
|
|
|
23411
23467
|
behaviourAtEndOfTrial?: InputMaybe<CommerceExpBehaviourAtEndOfTrial>;
|
|
23412
23468
|
skipTrial?: InputMaybe<Scalars['Boolean']['input']>;
|
|
23413
23469
|
};
|
|
23470
|
+
export declare type CommerceExpUnbundleCollectionOrderInput = {
|
|
23471
|
+
entitlementId: Scalars['String']['input'];
|
|
23472
|
+
selectedInstanceOfferings?: InputMaybe<Array<CommerceExpSelectedInstanceOffering>>;
|
|
23473
|
+
};
|
|
23414
23474
|
export declare type CommerceExpUnbundledCollectionTransition = {
|
|
23415
23475
|
__typename?: 'CommerceExpUnbundledCollectionTransition';
|
|
23416
23476
|
breachedLimits: Array<Scalars['String']['output']>;
|
|
@@ -29665,7 +29725,7 @@ export declare type ConfluenceComment = {
|
|
|
29665
29725
|
links?: Maybe<ConfluenceCommentLinks>;
|
|
29666
29726
|
name?: Maybe<Scalars['String']['output']>;
|
|
29667
29727
|
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
29668
|
-
reactions?: Maybe<Array<ConfluenceCommentReactionSummary
|
|
29728
|
+
reactions?: Maybe<Array<Maybe<ConfluenceCommentReactionSummary>>>;
|
|
29669
29729
|
status?: Maybe<ConfluenceCommentStatus>;
|
|
29670
29730
|
};
|
|
29671
29731
|
export declare type ConfluenceCommentConnection = {
|
|
@@ -29706,14 +29766,14 @@ export declare type ConfluenceCommentLinks = {
|
|
|
29706
29766
|
};
|
|
29707
29767
|
export declare type ConfluenceCommentReactionSummary = {
|
|
29708
29768
|
__typename?: 'ConfluenceCommentReactionSummary';
|
|
29709
|
-
ari
|
|
29710
|
-
containerAri
|
|
29711
|
-
count
|
|
29712
|
-
emojiId
|
|
29713
|
-
emojiName
|
|
29714
|
-
emojiPath
|
|
29715
|
-
id
|
|
29716
|
-
reacted
|
|
29769
|
+
ari?: Maybe<Scalars['ID']['output']>;
|
|
29770
|
+
containerAri?: Maybe<Scalars['ID']['output']>;
|
|
29771
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
29772
|
+
emojiId?: Maybe<Scalars['ID']['output']>;
|
|
29773
|
+
emojiName?: Maybe<Scalars['String']['output']>;
|
|
29774
|
+
emojiPath?: Maybe<Scalars['String']['output']>;
|
|
29775
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
29776
|
+
reacted?: Maybe<Scalars['Boolean']['output']>;
|
|
29717
29777
|
};
|
|
29718
29778
|
export declare type ConfluenceCommentResolutionState = {
|
|
29719
29779
|
__typename?: 'ConfluenceCommentResolutionState';
|
|
@@ -30499,6 +30559,7 @@ export declare type ConfluenceCreateContentApprovalRequestInput = {
|
|
|
30499
30559
|
comment?: InputMaybe<Scalars['String']['input']>;
|
|
30500
30560
|
contentId: Scalars['ID']['input'];
|
|
30501
30561
|
contentStatus: GraphQlContentStatus;
|
|
30562
|
+
dueDate?: InputMaybe<Scalars['String']['input']>;
|
|
30502
30563
|
reviewers?: InputMaybe<Array<InputMaybe<ConfluenceContentApprovalReviewerInput>>>;
|
|
30503
30564
|
version: Scalars['Int']['input'];
|
|
30504
30565
|
};
|
|
@@ -31286,7 +31347,7 @@ export declare type ConfluenceFooterComment = ConfluenceComment & Node & {
|
|
|
31286
31347
|
links?: Maybe<ConfluenceCommentLinks>;
|
|
31287
31348
|
name?: Maybe<Scalars['String']['output']>;
|
|
31288
31349
|
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
31289
|
-
reactions?: Maybe<Array<ConfluenceCommentReactionSummary
|
|
31350
|
+
reactions?: Maybe<Array<Maybe<ConfluenceCommentReactionSummary>>>;
|
|
31290
31351
|
status?: Maybe<ConfluenceCommentStatus>;
|
|
31291
31352
|
};
|
|
31292
31353
|
export declare type ConfluenceForgeContextToken = {
|
|
@@ -31571,7 +31632,7 @@ export declare type ConfluenceInlineComment = ConfluenceComment & Node & {
|
|
|
31571
31632
|
links?: Maybe<ConfluenceCommentLinks>;
|
|
31572
31633
|
name?: Maybe<Scalars['String']['output']>;
|
|
31573
31634
|
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
31574
|
-
reactions?: Maybe<Array<ConfluenceCommentReactionSummary
|
|
31635
|
+
reactions?: Maybe<Array<Maybe<ConfluenceCommentReactionSummary>>>;
|
|
31575
31636
|
resolutionStatus?: Maybe<ConfluenceInlineCommentResolutionStatus>;
|
|
31576
31637
|
status?: Maybe<ConfluenceCommentStatus>;
|
|
31577
31638
|
};
|
|
@@ -35445,8 +35506,10 @@ export declare type ConfluenceUpdateContentAppearancePayload = {
|
|
|
35445
35506
|
};
|
|
35446
35507
|
export declare type ConfluenceUpdateContentApprovalRequestInput = {
|
|
35447
35508
|
approvalStatus?: InputMaybe<ConfluenceWorkflowReviewStatus>;
|
|
35509
|
+
clearDueDate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
35448
35510
|
comment?: InputMaybe<Scalars['String']['input']>;
|
|
35449
35511
|
contentApprovalReviewId: Scalars['Long']['input'];
|
|
35512
|
+
dueDate?: InputMaybe<Scalars['String']['input']>;
|
|
35450
35513
|
reviewers?: InputMaybe<Array<InputMaybe<ConfluenceContentApprovalReviewerInput>>>;
|
|
35451
35514
|
workflowApplicationId: Scalars['Long']['input'];
|
|
35452
35515
|
};
|
|
@@ -36283,6 +36346,48 @@ export declare type ConfluenceWorkflowApplicationDetails = {
|
|
|
36283
36346
|
workflowId?: Maybe<Scalars['ID']['output']>;
|
|
36284
36347
|
workflowStatusId?: Maybe<Scalars['ID']['output']>;
|
|
36285
36348
|
};
|
|
36349
|
+
export declare type ConfluenceWorkflowApplicationHistoryActor = {
|
|
36350
|
+
__typename?: 'ConfluenceWorkflowApplicationHistoryActor';
|
|
36351
|
+
accountId?: Maybe<Scalars['ID']['output']>;
|
|
36352
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
36353
|
+
};
|
|
36354
|
+
export declare type ConfluenceWorkflowApplicationHistoryConnection = {
|
|
36355
|
+
__typename?: 'ConfluenceWorkflowApplicationHistoryConnection';
|
|
36356
|
+
edges?: Maybe<Array<Maybe<ConfluenceWorkflowApplicationHistoryEdge>>>;
|
|
36357
|
+
nodes?: Maybe<Array<Maybe<ConfluenceWorkflowApplicationHistoryEntry>>>;
|
|
36358
|
+
pageInfo: ConfluencePageInfo;
|
|
36359
|
+
};
|
|
36360
|
+
export declare type ConfluenceWorkflowApplicationHistoryEdge = {
|
|
36361
|
+
__typename?: 'ConfluenceWorkflowApplicationHistoryEdge';
|
|
36362
|
+
cursor: Scalars['String']['output'];
|
|
36363
|
+
node?: Maybe<ConfluenceWorkflowApplicationHistoryEntry>;
|
|
36364
|
+
};
|
|
36365
|
+
export declare type ConfluenceWorkflowApplicationHistoryEntry = {
|
|
36366
|
+
__typename?: 'ConfluenceWorkflowApplicationHistoryEntry';
|
|
36367
|
+
action: Scalars['String']['output'];
|
|
36368
|
+
actor?: Maybe<ConfluenceWorkflowApplicationHistoryActor>;
|
|
36369
|
+
contentId: Scalars['ID']['output'];
|
|
36370
|
+
contentStatus: GraphQlContentStatus;
|
|
36371
|
+
contentVersion?: Maybe<Scalars['Int']['output']>;
|
|
36372
|
+
creationDate: ConfluenceApprovalsDate;
|
|
36373
|
+
id: Scalars['ID']['output'];
|
|
36374
|
+
reviewDecision?: Maybe<ConfluenceWorkflowApplicationHistoryReviewDecision>;
|
|
36375
|
+
targetPrincipal?: Maybe<ConfluenceWorkflowApplicationHistoryTargetPrincipal>;
|
|
36376
|
+
triggerSource?: Maybe<Scalars['String']['output']>;
|
|
36377
|
+
workflowApplicationId: Scalars['ID']['output'];
|
|
36378
|
+
workflowReviewId?: Maybe<Scalars['ID']['output']>;
|
|
36379
|
+
workflowStatus?: Maybe<ConfluenceApprovalsWorkflowStatus>;
|
|
36380
|
+
};
|
|
36381
|
+
export declare type ConfluenceWorkflowApplicationHistoryReviewDecision = {
|
|
36382
|
+
__typename?: 'ConfluenceWorkflowApplicationHistoryReviewDecision';
|
|
36383
|
+
comment?: Maybe<Scalars['String']['output']>;
|
|
36384
|
+
decisionStatus?: Maybe<Scalars['String']['output']>;
|
|
36385
|
+
};
|
|
36386
|
+
export declare type ConfluenceWorkflowApplicationHistoryTargetPrincipal = {
|
|
36387
|
+
__typename?: 'ConfluenceWorkflowApplicationHistoryTargetPrincipal';
|
|
36388
|
+
principalId?: Maybe<Scalars['ID']['output']>;
|
|
36389
|
+
principalType?: Maybe<Scalars['String']['output']>;
|
|
36390
|
+
};
|
|
36286
36391
|
export declare type ConfluenceWorkflowApplicationPayload = {
|
|
36287
36392
|
__typename?: 'ConfluenceWorkflowApplicationPayload';
|
|
36288
36393
|
errors: Array<MutationError>;
|
|
@@ -36294,6 +36399,7 @@ export declare type ConfluenceWorkflowApplicationPayload = {
|
|
|
36294
36399
|
export declare type ConfluenceWorkflowReview = {
|
|
36295
36400
|
__typename?: 'ConfluenceWorkflowReview';
|
|
36296
36401
|
comment?: Maybe<Scalars['String']['output']>;
|
|
36402
|
+
dueDate?: Maybe<ConfluenceApprovalsDate>;
|
|
36297
36403
|
id: Scalars['ID']['output'];
|
|
36298
36404
|
reviewStatus: ConfluenceWorkflowReviewStatus;
|
|
36299
36405
|
reviewers: Array<Maybe<ConfluenceWorkflowReviewer>>;
|
|
@@ -36310,6 +36416,7 @@ export declare type ConfluenceWorkflowReviewWithDecisions = {
|
|
|
36310
36416
|
creationDate?: Maybe<ConfluenceApprovalsDate>;
|
|
36311
36417
|
creator?: Maybe<AtlassianUser>;
|
|
36312
36418
|
creatorAaid?: Maybe<Scalars['ID']['output']>;
|
|
36419
|
+
dueDate?: Maybe<ConfluenceApprovalsDate>;
|
|
36313
36420
|
id: Scalars['ID']['output'];
|
|
36314
36421
|
reviewComment?: Maybe<Scalars['String']['output']>;
|
|
36315
36422
|
reviewLastModified?: Maybe<ConfluenceApprovalsDate>;
|
|
@@ -39386,11 +39493,13 @@ export declare type CsmAiConfluenceKnowledgeFilter = {
|
|
|
39386
39493
|
knowledgeGapFilter?: Maybe<Array<CsmAiKnowledgeGapSpace>>;
|
|
39387
39494
|
parentFilter?: Maybe<Array<Scalars['ID']['output']>>;
|
|
39388
39495
|
spaceFilter?: Maybe<Array<Scalars['ID']['output']>>;
|
|
39496
|
+
ticketsAsKnowledgeFilter?: Maybe<Array<CsmAiTicketsAsKnowledgeSpace>>;
|
|
39389
39497
|
};
|
|
39390
39498
|
export declare type CsmAiConfluenceKnowledgeFilterInput = {
|
|
39391
39499
|
knowledgeGapFilter?: InputMaybe<Array<CsmAiKnowledgeGapSpaceInput>>;
|
|
39392
39500
|
parentFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
39393
39501
|
spaceFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
39502
|
+
ticketsAsKnowledgeFilter?: InputMaybe<Array<CsmAiTicketsAsKnowledgeSpaceInput>>;
|
|
39394
39503
|
};
|
|
39395
39504
|
export declare type CsmAiConnectorConfiguration = CsmAiMessageHandoff | CsmAiTicketingHandoff;
|
|
39396
39505
|
export declare type CsmAiConnectorConfigurationInput = {
|
|
@@ -39596,6 +39705,15 @@ export declare type CsmAiTicketingHandoff = {
|
|
|
39596
39705
|
export declare type CsmAiTicketingHandoffInput = {
|
|
39597
39706
|
formId: Scalars['ID']['input'];
|
|
39598
39707
|
};
|
|
39708
|
+
export declare type CsmAiTicketsAsKnowledgeSpace = {
|
|
39709
|
+
__typename?: 'CsmAiTicketsAsKnowledgeSpace';
|
|
39710
|
+
enabled: Scalars['Boolean']['output'];
|
|
39711
|
+
spaceAri: Scalars['ID']['output'];
|
|
39712
|
+
};
|
|
39713
|
+
export declare type CsmAiTicketsAsKnowledgeSpaceInput = {
|
|
39714
|
+
enabled?: Scalars['Boolean']['input'];
|
|
39715
|
+
spaceAri: Scalars['ID']['input'];
|
|
39716
|
+
};
|
|
39599
39717
|
export declare type CsmAiUpdateActionInput = {
|
|
39600
39718
|
actionType?: InputMaybe<CsmAiActionType>;
|
|
39601
39719
|
apiOperation?: InputMaybe<CsmAiApiOperationInput>;
|
|
@@ -42580,19 +42698,29 @@ export declare enum DevAiAutodevNextWorkstreamMemberRole {
|
|
|
42580
42698
|
}
|
|
42581
42699
|
export declare type DevAiAutodevNextWorkstreamSettings = {
|
|
42582
42700
|
__typename?: 'DevAiAutodevNextWorkstreamSettings';
|
|
42701
|
+
assignees?: Maybe<Array<User>>;
|
|
42702
|
+
classificationRepositoryUrl?: Maybe<Scalars['String']['output']>;
|
|
42583
42703
|
defaultJiraProjectAri?: Maybe<Scalars['ID']['output']>;
|
|
42584
42704
|
eligibilityCriteria?: Maybe<Scalars['String']['output']>;
|
|
42585
42705
|
notifications?: Maybe<DevAiAutodevNextNotificationSettings>;
|
|
42706
|
+
pullRequestMessage?: Maybe<Scalars['String']['output']>;
|
|
42707
|
+
pullRequestPrefix?: Maybe<Scalars['String']['output']>;
|
|
42586
42708
|
scanSchedule?: Maybe<DevAiAutodevNextScanSchedule>;
|
|
42709
|
+
sessionPrompt?: Maybe<Scalars['String']['output']>;
|
|
42587
42710
|
suggestedJql?: Maybe<Scalars['String']['output']>;
|
|
42588
42711
|
taskOverdueAfterDays?: Maybe<Scalars['Int']['output']>;
|
|
42589
42712
|
wipLimit?: Maybe<Scalars['Int']['output']>;
|
|
42590
42713
|
};
|
|
42591
42714
|
export declare type DevAiAutodevNextWorkstreamSettingsInput = {
|
|
42715
|
+
assignees?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
42716
|
+
classificationRepositoryUrl?: InputMaybe<Scalars['String']['input']>;
|
|
42592
42717
|
defaultJiraProjectAri?: InputMaybe<Scalars['ID']['input']>;
|
|
42593
42718
|
eligibilityCriteria?: InputMaybe<Scalars['String']['input']>;
|
|
42594
42719
|
notifications?: InputMaybe<DevAiAutodevNextNotificationSettingsInput>;
|
|
42720
|
+
pullRequestMessage?: InputMaybe<Scalars['String']['input']>;
|
|
42721
|
+
pullRequestPrefix?: InputMaybe<Scalars['String']['input']>;
|
|
42595
42722
|
scanSchedule?: InputMaybe<DevAiAutodevNextScanScheduleInput>;
|
|
42723
|
+
sessionPrompt?: InputMaybe<Scalars['String']['input']>;
|
|
42596
42724
|
suggestedJql?: InputMaybe<Scalars['String']['input']>;
|
|
42597
42725
|
taskOverdueAfterDays?: InputMaybe<Scalars['Int']['input']>;
|
|
42598
42726
|
wipLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -43480,6 +43608,7 @@ export declare type DevAiWorkspace = {
|
|
|
43480
43608
|
export declare type DevAiWorkspaceFilter = {
|
|
43481
43609
|
id: Scalars['String']['input'];
|
|
43482
43610
|
name: Scalars['String']['input'];
|
|
43611
|
+
scm?: InputMaybe<Scalars['String']['input']>;
|
|
43483
43612
|
};
|
|
43484
43613
|
export declare type DevConsoleActiveDistributionLink = {
|
|
43485
43614
|
__typename?: 'DevConsoleActiveDistributionLink';
|
|
@@ -46726,7 +46855,7 @@ export declare type ExternalAssociationEdge = {
|
|
|
46726
46855
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
46727
46856
|
node?: Maybe<ExternalAssociation>;
|
|
46728
46857
|
};
|
|
46729
|
-
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalLead | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
46858
|
+
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalLead | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTempMicrosoftTeamsMessage | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
46730
46859
|
export declare type ExternalAttachment = {
|
|
46731
46860
|
__typename?: 'ExternalAttachment';
|
|
46732
46861
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
@@ -47607,6 +47736,7 @@ export declare type ExternalEntities = {
|
|
|
47607
47736
|
softwareService?: Maybe<Array<Maybe<ExternalSoftwareService>>>;
|
|
47608
47737
|
space?: Maybe<Array<Maybe<ExternalSpace>>>;
|
|
47609
47738
|
team?: Maybe<Array<Maybe<ExternalTeam>>>;
|
|
47739
|
+
tempMicrosoftTeamsMessage?: Maybe<Array<Maybe<ExternalTempMicrosoftTeamsMessage>>>;
|
|
47610
47740
|
test?: Maybe<Array<Maybe<ExternalTest>>>;
|
|
47611
47741
|
testExecution?: Maybe<Array<Maybe<ExternalTestExecution>>>;
|
|
47612
47742
|
testPlan?: Maybe<Array<Maybe<ExternalTestPlan>>>;
|
|
@@ -47617,7 +47747,7 @@ export declare type ExternalEntities = {
|
|
|
47617
47747
|
workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
|
|
47618
47748
|
worker?: Maybe<Array<Maybe<ExternalWorker>>>;
|
|
47619
47749
|
};
|
|
47620
|
-
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalLead | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
47750
|
+
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalLead | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTempMicrosoftTeamsMessage | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
47621
47751
|
export declare type ExternalEntityExtendedValue = {
|
|
47622
47752
|
__typename?: 'ExternalEntityExtendedValue';
|
|
47623
47753
|
dataType?: Maybe<Scalars['String']['output']>;
|
|
@@ -48218,6 +48348,29 @@ export declare type ExternalTeam = Node & {
|
|
|
48218
48348
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
48219
48349
|
url?: Maybe<Scalars['String']['output']>;
|
|
48220
48350
|
};
|
|
48351
|
+
export declare type ExternalTempMicrosoftTeamsMessage = Node & {
|
|
48352
|
+
__typename?: 'ExternalTempMicrosoftTeamsMessage';
|
|
48353
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
48354
|
+
container?: Maybe<ExternalEntity>;
|
|
48355
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
48356
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
48357
|
+
createdBy?: Maybe<ExternalUser>;
|
|
48358
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
48359
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
48360
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
48361
|
+
id: Scalars['ID']['output'];
|
|
48362
|
+
importance?: Maybe<Scalars['String']['output']>;
|
|
48363
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
48364
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
48365
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
48366
|
+
parent?: Maybe<ExternalEntity>;
|
|
48367
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
48368
|
+
provider?: Maybe<ExternalProvider>;
|
|
48369
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
48370
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
48371
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
48372
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
48373
|
+
};
|
|
48221
48374
|
export declare type ExternalTest = Node & {
|
|
48222
48375
|
__typename?: 'ExternalTest';
|
|
48223
48376
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
@@ -48382,6 +48535,8 @@ export declare type ExternalVideo = Node & {
|
|
|
48382
48535
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
48383
48536
|
chapters?: Maybe<Array<Maybe<ExternalChapter>>>;
|
|
48384
48537
|
commentCount?: Maybe<Scalars['Long']['output']>;
|
|
48538
|
+
container?: Maybe<ExternalEntity>;
|
|
48539
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
48385
48540
|
contributors?: Maybe<Array<Maybe<ExternalContributor>>>;
|
|
48386
48541
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
48387
48542
|
createdBy?: Maybe<ExternalUser>;
|
|
@@ -48395,6 +48550,8 @@ export declare type ExternalVideo = Node & {
|
|
|
48395
48550
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
48396
48551
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
48397
48552
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
48553
|
+
parent?: Maybe<ExternalEntity>;
|
|
48554
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
48398
48555
|
provider?: Maybe<ExternalProvider>;
|
|
48399
48556
|
textTracks?: Maybe<Array<Maybe<ExternalTrack>>>;
|
|
48400
48557
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
@@ -50069,6 +50226,7 @@ export declare type GetAllPlanOwnersFilterInput = {
|
|
|
50069
50226
|
jiraProjectAri?: InputMaybe<Scalars['String']['input']>;
|
|
50070
50227
|
};
|
|
50071
50228
|
export declare type GetAllPlansFilterInput = {
|
|
50229
|
+
access?: InputMaybe<PlanAccessFilter>;
|
|
50072
50230
|
excludeOwnerId?: InputMaybe<Scalars['String']['input']>;
|
|
50073
50231
|
jiraProjectAri?: InputMaybe<Scalars['String']['input']>;
|
|
50074
50232
|
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -51333,6 +51491,7 @@ export declare type GraphIntegrationCreateSkillInput = {
|
|
|
51333
51491
|
name: Scalars['String']['input'];
|
|
51334
51492
|
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
51335
51493
|
tools?: InputMaybe<Array<GraphIntegrationSkillToolInput>>;
|
|
51494
|
+
visibility?: InputMaybe<GraphIntegrationSkillVisibilityInput>;
|
|
51336
51495
|
};
|
|
51337
51496
|
export declare type GraphIntegrationDataConnector = {
|
|
51338
51497
|
__typename?: 'GraphIntegrationDataConnector';
|
|
@@ -51479,6 +51638,12 @@ export declare enum GraphIntegrationMcpAdminManagementMcpRegistrationSource {
|
|
|
51479
51638
|
Customer = "CUSTOMER",
|
|
51480
51639
|
Global = "GLOBAL"
|
|
51481
51640
|
}
|
|
51641
|
+
export declare enum GraphIntegrationMcpAdminManagementMcpServerAuthType {
|
|
51642
|
+
ApiToken = "API_TOKEN",
|
|
51643
|
+
None = "NONE",
|
|
51644
|
+
Oauth = "OAUTH",
|
|
51645
|
+
OauthClientCredentials = "OAUTH_CLIENT_CREDENTIALS"
|
|
51646
|
+
}
|
|
51482
51647
|
export declare type GraphIntegrationMcpAdminManagementMcpServerConnection = {
|
|
51483
51648
|
__typename?: 'GraphIntegrationMcpAdminManagementMcpServerConnection';
|
|
51484
51649
|
edges?: Maybe<Array<GraphIntegrationMcpAdminManagementMcpServerEdge>>;
|
|
@@ -51569,6 +51734,7 @@ export declare enum GraphIntegrationMcpAdminManagementMcpToolStatus {
|
|
|
51569
51734
|
NewToolDeny = "NEW_TOOL_DENY"
|
|
51570
51735
|
}
|
|
51571
51736
|
export declare type GraphIntegrationMcpAdminManagementRegisterMcpServerInput = {
|
|
51737
|
+
authType?: InputMaybe<GraphIntegrationMcpAdminManagementMcpServerAuthType>;
|
|
51572
51738
|
autoEnableNewTools?: InputMaybe<Scalars['Boolean']['input']>;
|
|
51573
51739
|
cloudId: Scalars['ID']['input'];
|
|
51574
51740
|
displayName: Scalars['String']['input'];
|
|
@@ -51821,6 +51987,13 @@ export declare enum GraphIntegrationSkillColor {
|
|
|
51821
51987
|
Teal = "TEAL",
|
|
51822
51988
|
Yellow = "YELLOW"
|
|
51823
51989
|
}
|
|
51990
|
+
export declare enum GraphIntegrationSkillConsumer {
|
|
51991
|
+
RovoAgents = "ROVO_AGENTS",
|
|
51992
|
+
RovoClaw = "ROVO_CLAW"
|
|
51993
|
+
}
|
|
51994
|
+
export declare type GraphIntegrationSkillConsumerVisibilityInput = {
|
|
51995
|
+
optIn?: InputMaybe<Array<GraphIntegrationSkillConsumer>>;
|
|
51996
|
+
};
|
|
51824
51997
|
export declare enum GraphIntegrationSkillDimension {
|
|
51825
51998
|
Products = "PRODUCTS"
|
|
51826
51999
|
}
|
|
@@ -51885,7 +52058,8 @@ export declare type GraphIntegrationSkillProductItem = GraphIntegrationSkillDime
|
|
|
51885
52058
|
id: Scalars['String']['output'];
|
|
51886
52059
|
};
|
|
51887
52060
|
export declare enum GraphIntegrationSkillSurface {
|
|
51888
|
-
RovoAgents = "ROVO_AGENTS"
|
|
52061
|
+
RovoAgents = "ROVO_AGENTS",
|
|
52062
|
+
RovoClaw = "ROVO_CLAW"
|
|
51889
52063
|
}
|
|
51890
52064
|
export declare type GraphIntegrationSkillTool = {
|
|
51891
52065
|
__typename?: 'GraphIntegrationSkillTool';
|
|
@@ -51913,6 +52087,9 @@ export declare type GraphIntegrationSkillUiMetadata = {
|
|
|
51913
52087
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
51914
52088
|
products: Array<Scalars['String']['output']>;
|
|
51915
52089
|
};
|
|
52090
|
+
export declare type GraphIntegrationSkillVisibilityInput = {
|
|
52091
|
+
consumer?: InputMaybe<GraphIntegrationSkillConsumerVisibilityInput>;
|
|
52092
|
+
};
|
|
51916
52093
|
export declare enum GraphIntegrationStatus {
|
|
51917
52094
|
Disabled = "DISABLED",
|
|
51918
52095
|
Enabled = "ENABLED"
|
|
@@ -51922,6 +52099,7 @@ export declare enum GraphIntegrationSurface {
|
|
|
51922
52099
|
Pollinator = "POLLINATOR",
|
|
51923
52100
|
Rovo = "ROVO",
|
|
51924
52101
|
RovoAgents = "ROVO_AGENTS",
|
|
52102
|
+
RovoClaw = "ROVO_CLAW",
|
|
51925
52103
|
Studio = "STUDIO"
|
|
51926
52104
|
}
|
|
51927
52105
|
export declare type GraphIntegrationTwgCapabilityContainer = {
|
|
@@ -52010,6 +52188,7 @@ export declare type GraphIntegrationUpdateSkillInput = {
|
|
|
52010
52188
|
skillAri: Scalars['ID']['input'];
|
|
52011
52189
|
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
52012
52190
|
tools?: InputMaybe<Array<GraphIntegrationSkillToolInput>>;
|
|
52191
|
+
visibility?: InputMaybe<GraphIntegrationSkillVisibilityInput>;
|
|
52013
52192
|
};
|
|
52014
52193
|
export declare type GraphIssueAssociatedDesignPayload = Payload & {
|
|
52015
52194
|
__typename?: 'GraphIssueAssociatedDesignPayload';
|
|
@@ -55061,6 +55240,8 @@ export declare type GraphStore = {
|
|
|
55061
55240
|
focusAreaHasWatcherBatch?: Maybe<GraphStoreBatchFocusAreaHasWatcherConnection>;
|
|
55062
55241
|
focusAreaHasWatcherInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasWatcherInverseConnection>;
|
|
55063
55242
|
focusAreaHasWatcherInverseBatch?: Maybe<GraphStoreBatchFocusAreaHasWatcherConnection>;
|
|
55243
|
+
getDynamicNodeTypes?: Maybe<GraphStoreDynamicNodeTypeConnection>;
|
|
55244
|
+
getDynamicRelationshipTypes?: Maybe<GraphStoreDynamicRelationshipTypeConnection>;
|
|
55064
55245
|
graphDocument3pDocumentInverse?: Maybe<GraphStoreSimplifiedGraphDocument3pDocumentInverseConnection>;
|
|
55065
55246
|
graphDocumentReplicates3pDocumentGoogleDriveDocumentInverse?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveDocumentInverseConnection>;
|
|
55066
55247
|
graphDocumentReplicates3pDocumentGoogleDriveOtherInverse?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveOtherInverseConnection>;
|
|
@@ -58869,6 +59050,16 @@ export declare type GraphStoreFocusAreaHasWatcherInverseBatchArgs = {
|
|
|
58869
59050
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
58870
59051
|
sort?: InputMaybe<GraphStoreFocusAreaHasWatcherSortInput>;
|
|
58871
59052
|
};
|
|
59053
|
+
export declare type GraphStoreGetDynamicNodeTypesArgs = {
|
|
59054
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
59055
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
59056
|
+
workspaceAri: Scalars['ID']['input'];
|
|
59057
|
+
};
|
|
59058
|
+
export declare type GraphStoreGetDynamicRelationshipTypesArgs = {
|
|
59059
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
59060
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
59061
|
+
workspaceAri: Scalars['ID']['input'];
|
|
59062
|
+
};
|
|
58872
59063
|
export declare type GraphStoreGraphDocument3pDocumentInverseArgs = {
|
|
58873
59064
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
58874
59065
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -68612,6 +68803,28 @@ export declare type GraphStoreDeploymentAssociatedRepoSortInput = {
|
|
|
68612
68803
|
export declare type GraphStoreDeploymentContainsCommitSortInput = {
|
|
68613
68804
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
68614
68805
|
};
|
|
68806
|
+
export declare type GraphStoreDynamicNodeType = {
|
|
68807
|
+
__typename?: 'GraphStoreDynamicNodeType';
|
|
68808
|
+
deleted: Scalars['Boolean']['output'];
|
|
68809
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
68810
|
+
id: Scalars['String']['output'];
|
|
68811
|
+
metadata?: Maybe<Scalars['JSON']['output']>;
|
|
68812
|
+
name: Scalars['String']['output'];
|
|
68813
|
+
schemaId?: Maybe<Scalars['String']['output']>;
|
|
68814
|
+
type: Scalars['String']['output'];
|
|
68815
|
+
version: Scalars['Long']['output'];
|
|
68816
|
+
};
|
|
68817
|
+
export declare type GraphStoreDynamicNodeTypeConnection = HasPageInfo & {
|
|
68818
|
+
__typename?: 'GraphStoreDynamicNodeTypeConnection';
|
|
68819
|
+
edges: Array<GraphStoreDynamicNodeTypeEdge>;
|
|
68820
|
+
nodes: Array<GraphStoreDynamicNodeType>;
|
|
68821
|
+
pageInfo: PageInfo;
|
|
68822
|
+
};
|
|
68823
|
+
export declare type GraphStoreDynamicNodeTypeEdge = {
|
|
68824
|
+
__typename?: 'GraphStoreDynamicNodeTypeEdge';
|
|
68825
|
+
cursor: Scalars['String']['output'];
|
|
68826
|
+
node: GraphStoreDynamicNodeType;
|
|
68827
|
+
};
|
|
68615
68828
|
export declare type GraphStoreDynamicRelationshipAssetToAssetSortInput = {
|
|
68616
68829
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
68617
68830
|
};
|
|
@@ -68627,6 +68840,29 @@ export declare type GraphStoreDynamicRelationshipAssetToRepoSortInput = {
|
|
|
68627
68840
|
export declare type GraphStoreDynamicRelationshipAssetToUserSortInput = {
|
|
68628
68841
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
68629
68842
|
};
|
|
68843
|
+
export declare type GraphStoreDynamicRelationshipType = {
|
|
68844
|
+
__typename?: 'GraphStoreDynamicRelationshipType';
|
|
68845
|
+
deleted: Scalars['Boolean']['output'];
|
|
68846
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
68847
|
+
fromType: Array<Scalars['String']['output']>;
|
|
68848
|
+
id: Scalars['String']['output'];
|
|
68849
|
+
includeChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
68850
|
+
name: Scalars['String']['output'];
|
|
68851
|
+
staticTypeId?: Maybe<Scalars['String']['output']>;
|
|
68852
|
+
targetType: Array<Scalars['String']['output']>;
|
|
68853
|
+
version: Scalars['Long']['output'];
|
|
68854
|
+
};
|
|
68855
|
+
export declare type GraphStoreDynamicRelationshipTypeConnection = HasPageInfo & {
|
|
68856
|
+
__typename?: 'GraphStoreDynamicRelationshipTypeConnection';
|
|
68857
|
+
edges: Array<GraphStoreDynamicRelationshipTypeEdge>;
|
|
68858
|
+
nodes: Array<GraphStoreDynamicRelationshipType>;
|
|
68859
|
+
pageInfo: PageInfo;
|
|
68860
|
+
};
|
|
68861
|
+
export declare type GraphStoreDynamicRelationshipTypeEdge = {
|
|
68862
|
+
__typename?: 'GraphStoreDynamicRelationshipTypeEdge';
|
|
68863
|
+
cursor: Scalars['String']['output'];
|
|
68864
|
+
node: GraphStoreDynamicRelationshipType;
|
|
68865
|
+
};
|
|
68630
68866
|
export declare type GraphStoreEntityIsRelatedToEntitySortInput = {
|
|
68631
68867
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
68632
68868
|
};
|
|
@@ -112991,6 +113227,7 @@ export declare type HeaderLookAndFeel = {
|
|
|
112991
113227
|
export declare type HelpCenter = Node & {
|
|
112992
113228
|
__typename?: 'HelpCenter';
|
|
112993
113229
|
announcements?: Maybe<HelpCenterAnnouncements>;
|
|
113230
|
+
autoLinkingEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
112994
113231
|
helpCenterBranding?: Maybe<HelpCenterBranding>;
|
|
112995
113232
|
hoistedProjectId?: Maybe<Scalars['ID']['output']>;
|
|
112996
113233
|
hoistedProjectKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -115150,6 +115387,14 @@ export declare type HydratingJiraIssueEdge = {
|
|
|
115150
115387
|
cursor: Scalars['String']['output'];
|
|
115151
115388
|
node?: Maybe<JiraIssue>;
|
|
115152
115389
|
};
|
|
115390
|
+
export declare type HypothesisIndicator = {
|
|
115391
|
+
__typename?: 'HypothesisIndicator';
|
|
115392
|
+
hypothesisId: Scalars['ID']['output'];
|
|
115393
|
+
hypothesisSummary: Scalars['String']['output'];
|
|
115394
|
+
hypothesisType?: Maybe<MitigationHypothesisType>;
|
|
115395
|
+
investigationId: Scalars['ID']['output'];
|
|
115396
|
+
provenance: Array<IndicatorProvenance>;
|
|
115397
|
+
};
|
|
115153
115398
|
export declare type Icon = {
|
|
115154
115399
|
__typename?: 'Icon';
|
|
115155
115400
|
height?: Maybe<Scalars['Int']['output']>;
|
|
@@ -115180,6 +115425,24 @@ export declare type IncomingLinksCount = {
|
|
|
115180
115425
|
export declare type IndexHintInputType = {
|
|
115181
115426
|
hints?: InputMaybe<Array<InputMaybe<PreferredIndexInputType>>>;
|
|
115182
115427
|
};
|
|
115428
|
+
export declare type IndicatorProvenance = {
|
|
115429
|
+
__typename?: 'IndicatorProvenance';
|
|
115430
|
+
sourceId: Scalars['ID']['output'];
|
|
115431
|
+
sourceType: Scalars['String']['output'];
|
|
115432
|
+
};
|
|
115433
|
+
export declare type IndicatorRejectionPayload = Payload & {
|
|
115434
|
+
__typename?: 'IndicatorRejectionPayload';
|
|
115435
|
+
errors?: Maybe<Array<MutationError>>;
|
|
115436
|
+
indicator?: Maybe<MitigationIndicator>;
|
|
115437
|
+
success: Scalars['Boolean']['output'];
|
|
115438
|
+
};
|
|
115439
|
+
export declare enum IndicatorRejectionReason {
|
|
115440
|
+
Duplicate = "DUPLICATE",
|
|
115441
|
+
Incorrect = "INCORRECT",
|
|
115442
|
+
LowConfidence = "LOW_CONFIDENCE",
|
|
115443
|
+
NotRelevant = "NOT_RELEVANT",
|
|
115444
|
+
Other = "OTHER"
|
|
115445
|
+
}
|
|
115183
115446
|
export declare type IndividualInlineTaskNotification = {
|
|
115184
115447
|
__typename?: 'IndividualInlineTaskNotification';
|
|
115185
115448
|
notificationAction?: Maybe<NotificationAction>;
|
|
@@ -115813,6 +116076,7 @@ export declare type InvokeExtensionPayloadErrorExtension = MutationErrorExtensio
|
|
|
115813
116076
|
__typename?: 'InvokeExtensionPayloadErrorExtension';
|
|
115814
116077
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
115815
116078
|
fields?: Maybe<InvokeExtensionPayloadErrorExtensionFields>;
|
|
116079
|
+
rateLimitProperties?: Maybe<RateLimitProperties>;
|
|
115816
116080
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
115817
116081
|
};
|
|
115818
116082
|
export declare type InvokeExtensionPayloadErrorExtensionFields = {
|
|
@@ -115826,6 +116090,7 @@ export declare type InvokeExtensionResponse = Payload & {
|
|
|
115826
116090
|
errors?: Maybe<Array<MutationError>>;
|
|
115827
116091
|
externalAuth?: Maybe<Array<Maybe<ExternalAuthProvider>>>;
|
|
115828
116092
|
metrics?: Maybe<InvocationMetrics>;
|
|
116093
|
+
rateLimitProperties?: Maybe<RateLimitProperties>;
|
|
115829
116094
|
response?: Maybe<InvocationResponsePayload>;
|
|
115830
116095
|
success: Scalars['Boolean']['output'];
|
|
115831
116096
|
};
|
|
@@ -116593,6 +116858,7 @@ export declare type JiraAgentSessionCreateEvent = {
|
|
|
116593
116858
|
__typename?: 'JiraAgentSessionCreateEvent';
|
|
116594
116859
|
agent?: Maybe<JiraAgent>;
|
|
116595
116860
|
conversationId: Scalars['String']['output'];
|
|
116861
|
+
startTime?: Maybe<Scalars['Long']['output']>;
|
|
116596
116862
|
triggeredBy?: Maybe<User>;
|
|
116597
116863
|
};
|
|
116598
116864
|
export declare type JiraAgentSessionEdge = {
|
|
@@ -118976,11 +119242,15 @@ export declare type JiraBoardViewFieldSwimlaneCellsArgs = {
|
|
|
118976
119242
|
export declare type JiraBoardViewFieldSwimlaneTotalIssueCountArgs = {
|
|
118977
119243
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
118978
119244
|
};
|
|
119245
|
+
export declare type JiraBoardViewFieldSwimlaneAgent = {
|
|
119246
|
+
__typename?: 'JiraBoardViewFieldSwimlaneAgent';
|
|
119247
|
+
agent?: Maybe<User>;
|
|
119248
|
+
};
|
|
118979
119249
|
export declare type JiraBoardViewFieldSwimlaneUser = {
|
|
118980
119250
|
__typename?: 'JiraBoardViewFieldSwimlaneUser';
|
|
118981
119251
|
user?: Maybe<User>;
|
|
118982
119252
|
};
|
|
118983
|
-
export declare type JiraBoardViewFieldSwimlaneValue = JiraBoardViewFieldSwimlaneUser | JiraIssue | JiraOption | JiraPriority | JiraTownsquareProject;
|
|
119253
|
+
export declare type JiraBoardViewFieldSwimlaneValue = JiraBoardViewFieldSwimlaneAgent | JiraBoardViewFieldSwimlaneUser | JiraIssue | JiraOption | JiraPriority | JiraTownsquareProject;
|
|
118984
119254
|
export declare type JiraBoardViewInput = {
|
|
118985
119255
|
jiraBoardViewQueryInput?: InputMaybe<JiraBoardViewQueryInput>;
|
|
118986
119256
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
@@ -119492,6 +119762,7 @@ export declare type JiraCfoBoardPerformanceDataRow = JiraCfoDataRow & {
|
|
|
119492
119762
|
boardId?: Maybe<Scalars['ID']['output']>;
|
|
119493
119763
|
boardLocation?: Maybe<JiraBoardLocationModel>;
|
|
119494
119764
|
boardName?: Maybe<Scalars['String']['output']>;
|
|
119765
|
+
boardType?: Maybe<JiraCfoBoardType>;
|
|
119495
119766
|
dimensions?: Maybe<Array<Maybe<JiraCfoDimension>>>;
|
|
119496
119767
|
metrics?: Maybe<Array<Maybe<JiraCfoMetric>>>;
|
|
119497
119768
|
optimizationSuggestion?: Maybe<Scalars['String']['output']>;
|
|
@@ -119517,6 +119788,11 @@ export declare enum JiraCfoBoardPerformanceStatus {
|
|
|
119517
119788
|
Moderate = "MODERATE",
|
|
119518
119789
|
Slow = "SLOW"
|
|
119519
119790
|
}
|
|
119791
|
+
export declare enum JiraCfoBoardType {
|
|
119792
|
+
Kanban = "KANBAN",
|
|
119793
|
+
Scrum = "SCRUM",
|
|
119794
|
+
Simple = "SIMPLE"
|
|
119795
|
+
}
|
|
119520
119796
|
export declare type JiraCfoClientSetupConfig = {
|
|
119521
119797
|
__typename?: 'JiraCFOClientSetupConfig';
|
|
119522
119798
|
distribution?: Maybe<Array<Maybe<JiraCfoDistribution>>>;
|
|
@@ -120585,6 +120861,8 @@ export declare enum JiraCollapsibleSection {
|
|
|
120585
120861
|
Attachments = "ATTACHMENTS",
|
|
120586
120862
|
ChildWorkItem = "CHILD_WORK_ITEM",
|
|
120587
120863
|
Description = "DESCRIPTION",
|
|
120864
|
+
IncidentSummaryServicedesk = "INCIDENT_SUMMARY_SERVICEDESK",
|
|
120865
|
+
IncidentTimelineServicedesk = "INCIDENT_TIMELINE_SERVICEDESK",
|
|
120588
120866
|
LinkedWorkItem = "LINKED_WORK_ITEM",
|
|
120589
120867
|
ProformaForms = "PROFORMA_FORMS",
|
|
120590
120868
|
SimilarIssues = "SIMILAR_ISSUES",
|
|
@@ -121692,6 +121970,26 @@ export declare type JiraCustomFieldOptionInput = {
|
|
|
121692
121970
|
parentOptionId?: InputMaybe<Scalars['Long']['input']>;
|
|
121693
121971
|
value: Scalars['String']['input'];
|
|
121694
121972
|
};
|
|
121973
|
+
export declare type JiraCustomFieldOptionUsageMetric = JiraResourceUsageMetricV2 & Node & {
|
|
121974
|
+
__typename?: 'JiraCustomFieldOptionUsageMetric';
|
|
121975
|
+
cleanupValue?: Maybe<Scalars['Long']['output']>;
|
|
121976
|
+
currentValue?: Maybe<Scalars['Long']['output']>;
|
|
121977
|
+
fieldsOverLimit?: Maybe<Scalars['Int']['output']>;
|
|
121978
|
+
fieldsReachingLimit?: Maybe<Scalars['Int']['output']>;
|
|
121979
|
+
id: Scalars['ID']['output'];
|
|
121980
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
121981
|
+
thresholdValue?: Maybe<Scalars['Long']['output']>;
|
|
121982
|
+
values?: Maybe<JiraResourceUsageMetricValueConnection>;
|
|
121983
|
+
warningValue?: Maybe<Scalars['Long']['output']>;
|
|
121984
|
+
};
|
|
121985
|
+
export declare type JiraCustomFieldOptionUsageMetricValuesArgs = {
|
|
121986
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
121987
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
121988
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
121989
|
+
fromDate?: InputMaybe<Scalars['Date']['input']>;
|
|
121990
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
121991
|
+
toDate?: InputMaybe<Scalars['Date']['input']>;
|
|
121992
|
+
};
|
|
121695
121993
|
export declare type JiraCustomFieldType = {
|
|
121696
121994
|
__typename?: 'JiraCustomFieldType';
|
|
121697
121995
|
category?: Maybe<JiraCustomFieldTypeCategory>;
|
|
@@ -123348,16 +123646,61 @@ export declare type JiraFieldPredictionCandidateInput = {
|
|
|
123348
123646
|
id: Scalars['String']['input'];
|
|
123349
123647
|
value?: InputMaybe<Scalars['String']['input']>;
|
|
123350
123648
|
};
|
|
123649
|
+
export declare type JiraFieldPredictionFieldInput = {
|
|
123650
|
+
candidates?: InputMaybe<Array<JiraFieldPredictionCandidateInput>>;
|
|
123651
|
+
fieldId: Scalars['String']['input'];
|
|
123652
|
+
maxResults?: InputMaybe<Scalars['Int']['input']>;
|
|
123653
|
+
predictionTypes?: InputMaybe<Array<JiraFieldPredictionType>>;
|
|
123654
|
+
searchFilter?: InputMaybe<Scalars['String']['input']>;
|
|
123655
|
+
};
|
|
123656
|
+
export declare type JiraFieldPredictionFieldResult = {
|
|
123657
|
+
__typename?: 'JiraFieldPredictionFieldResult';
|
|
123658
|
+
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
123659
|
+
fieldId: Scalars['String']['output'];
|
|
123660
|
+
predictions: Array<JiraFieldPredictionOutcome>;
|
|
123661
|
+
success: Scalars['Boolean']['output'];
|
|
123662
|
+
};
|
|
123663
|
+
export declare type JiraFieldPredictionOutcome = {
|
|
123664
|
+
__typename?: 'JiraFieldPredictionOutcome';
|
|
123665
|
+
candidates: Array<JiraFieldPredictionRankedCandidate>;
|
|
123666
|
+
predictionType: JiraFieldPredictionType;
|
|
123667
|
+
skippedReason?: Maybe<JiraFieldPredictionSkipReason>;
|
|
123668
|
+
};
|
|
123669
|
+
export declare type JiraFieldPredictionRankedCandidate = {
|
|
123670
|
+
__typename?: 'JiraFieldPredictionRankedCandidate';
|
|
123671
|
+
id: Scalars['String']['output'];
|
|
123672
|
+
recommended: Scalars['Boolean']['output'];
|
|
123673
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
123674
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
123675
|
+
};
|
|
123351
123676
|
export declare type JiraFieldPredictionResult = {
|
|
123352
123677
|
__typename?: 'JiraFieldPredictionResult';
|
|
123353
123678
|
candidatesAboveThreshold?: Maybe<Scalars['Int']['output']>;
|
|
123354
123679
|
predictions?: Maybe<Array<Maybe<JiraFieldPredictionCandidate>>>;
|
|
123355
123680
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
123356
123681
|
};
|
|
123682
|
+
export declare enum JiraFieldPredictionSkipReason {
|
|
123683
|
+
FieldTypeUnsupported = "FIELD_TYPE_UNSUPPORTED",
|
|
123684
|
+
InsufficientContext = "INSUFFICIENT_CONTEXT",
|
|
123685
|
+
MissingSemanticContext = "MISSING_SEMANTIC_CONTEXT",
|
|
123686
|
+
Unauthenticated = "UNAUTHENTICATED"
|
|
123687
|
+
}
|
|
123357
123688
|
export declare enum JiraFieldPredictionSource {
|
|
123358
123689
|
Agent = "AGENT",
|
|
123359
123690
|
Gic = "GIC"
|
|
123360
123691
|
}
|
|
123692
|
+
export declare enum JiraFieldPredictionType {
|
|
123693
|
+
Behavioural = "BEHAVIOURAL",
|
|
123694
|
+
KnnSimilarIssues = "KNN_SIMILAR_ISSUES",
|
|
123695
|
+
Semantic = "SEMANTIC",
|
|
123696
|
+
SimilarIssues = "SIMILAR_ISSUES",
|
|
123697
|
+
Urs = "URS"
|
|
123698
|
+
}
|
|
123699
|
+
export declare type JiraFieldPredictionsResult = {
|
|
123700
|
+
__typename?: 'JiraFieldPredictionsResult';
|
|
123701
|
+
fieldResults: Array<JiraFieldPredictionFieldResult>;
|
|
123702
|
+
success: Scalars['Boolean']['output'];
|
|
123703
|
+
};
|
|
123361
123704
|
export declare type JiraFieldScheme = Node & {
|
|
123362
123705
|
__typename?: 'JiraFieldScheme';
|
|
123363
123706
|
associatedIssueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
@@ -125230,6 +125573,8 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
125230
125573
|
incidentActionItems?: Maybe<GraphIncidentHasActionItemRelationshipConnection>;
|
|
125231
125574
|
incidentLinkedJswIssues?: Maybe<GraphIncidentLinkedJswIssueRelationshipConnection>;
|
|
125232
125575
|
incidentSuggestion?: Maybe<AiOpsIncidentSuggestionAsyncResult>;
|
|
125576
|
+
incidentTimeline?: Maybe<AiOpsIncidentTimelineIccResponse>;
|
|
125577
|
+
isAboveThreshold?: Maybe<Scalars['Boolean']['output']>;
|
|
125233
125578
|
isArchived?: Maybe<Scalars['Boolean']['output']>;
|
|
125234
125579
|
isChatOpsEntitlementEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
125235
125580
|
isFlagged?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -125586,6 +125931,9 @@ export declare type JiraIssueHistoryArgs = {
|
|
|
125586
125931
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
125587
125932
|
orderBy?: InputMaybe<Scalars['String']['input']>;
|
|
125588
125933
|
};
|
|
125934
|
+
export declare type JiraIssueIncidentTimelineArgs = {
|
|
125935
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
125936
|
+
};
|
|
125589
125937
|
export declare type JiraIssueIssueAiSummaryArgs = {
|
|
125590
125938
|
type: JiraIssueAiSummaryType;
|
|
125591
125939
|
};
|
|
@@ -132802,6 +133150,7 @@ export declare type JiraProject = Node & {
|
|
|
132802
133150
|
isExplicitFieldAssociationsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
132803
133151
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
132804
133152
|
isGlobalComponentsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
133153
|
+
isIncidentCommandCenterEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
132805
133154
|
isLiveTemplate?: Maybe<Scalars['Boolean']['output']>;
|
|
132806
133155
|
isNfaEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
132807
133156
|
isNpleDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -132841,6 +133190,7 @@ export declare type JiraProject = Node & {
|
|
|
132841
133190
|
projectTypeName?: Maybe<Scalars['String']['output']>;
|
|
132842
133191
|
projectUrl?: Maybe<Scalars['String']['output']>;
|
|
132843
133192
|
projectWithVisibleIssueTypeIds?: Maybe<JiraProjectWithIssueTypeIds>;
|
|
133193
|
+
queues?: Maybe<JiraServiceManagementProjectQueueConnection>;
|
|
132844
133194
|
reportCategories?: Maybe<JiraReportCategoryConnection>;
|
|
132845
133195
|
repositories?: Maybe<GraphStoreSimplifiedProjectAssociatedRepoConnection>;
|
|
132846
133196
|
requestTypes?: Maybe<JiraServiceManagementRequestTypeConnection>;
|
|
@@ -133012,6 +133362,10 @@ export declare type JiraProjectProjectFieldTypeGroupsArgs = {
|
|
|
133012
133362
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
133013
133363
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
133014
133364
|
};
|
|
133365
|
+
export declare type JiraProjectQueuesArgs = {
|
|
133366
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
133367
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
133368
|
+
};
|
|
133015
133369
|
export declare type JiraProjectReportCategoriesArgs = {
|
|
133016
133370
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
133017
133371
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -134072,6 +134426,7 @@ export declare type JiraQuery = {
|
|
|
134072
134426
|
favourites?: Maybe<JiraFavouriteConnection>;
|
|
134073
134427
|
fieldConfigById?: Maybe<Array<Maybe<JiraIssueFieldConfig>>>;
|
|
134074
134428
|
fieldPrediction?: Maybe<JiraFieldPredictionResult>;
|
|
134429
|
+
fieldPredictions?: Maybe<JiraFieldPredictionsResult>;
|
|
134075
134430
|
fieldSetViewQueryByProject?: Maybe<JiraFieldSetViewResult>;
|
|
134076
134431
|
fieldSetsById?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
134077
134432
|
fields?: Maybe<JiraJqlFieldConnectionResult>;
|
|
@@ -134563,6 +134918,17 @@ export declare type JiraQueryFieldPredictionArgs = {
|
|
|
134563
134918
|
sessionId: Scalars['String']['input'];
|
|
134564
134919
|
source?: InputMaybe<JiraFieldPredictionSource>;
|
|
134565
134920
|
};
|
|
134921
|
+
export declare type JiraQueryFieldPredictionsArgs = {
|
|
134922
|
+
cloudId: Scalars['ID']['input'];
|
|
134923
|
+
fields: Array<JiraFieldPredictionFieldInput>;
|
|
134924
|
+
issueId?: InputMaybe<Scalars['ID']['input']>;
|
|
134925
|
+
issueTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
134926
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
134927
|
+
semanticContext?: InputMaybe<Scalars['String']['input']>;
|
|
134928
|
+
semanticContextDescription?: InputMaybe<Scalars['String']['input']>;
|
|
134929
|
+
sessionId: Scalars['String']['input'];
|
|
134930
|
+
source?: InputMaybe<JiraFieldPredictionSource>;
|
|
134931
|
+
};
|
|
134566
134932
|
export declare type JiraQueryFieldSetViewQueryByProjectArgs = {
|
|
134567
134933
|
cloudId: Scalars['ID']['input'];
|
|
134568
134934
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -135668,6 +136034,10 @@ export declare type JiraRankNavigationItemPayloadNavigationItemsArgs = {
|
|
|
135668
136034
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
135669
136035
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
135670
136036
|
};
|
|
136037
|
+
export declare type JiraRankOperationInput = {
|
|
136038
|
+
edge: JiraRankMutationEdge;
|
|
136039
|
+
relativeToIssue: Scalars['ID']['input'];
|
|
136040
|
+
};
|
|
135671
136041
|
export declare type JiraRecentItemsFilter = {
|
|
135672
136042
|
includeArchivedProjects?: InputMaybe<Scalars['Boolean']['input']>;
|
|
135673
136043
|
keyword?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -136323,6 +136693,15 @@ export declare type JiraRemoveJiraBitbucketWorkspaceConnectionPayload = Payload
|
|
|
136323
136693
|
errors?: Maybe<Array<MutationError>>;
|
|
136324
136694
|
success: Scalars['Boolean']['output'];
|
|
136325
136695
|
};
|
|
136696
|
+
export declare type JiraRemoveLinkedAgentContextItemInput = {
|
|
136697
|
+
sourceAri: Scalars['ID']['input'];
|
|
136698
|
+
targetAri: Scalars['ID']['input'];
|
|
136699
|
+
};
|
|
136700
|
+
export declare type JiraRemoveLinkedAgentContextItemPayload = {
|
|
136701
|
+
__typename?: 'JiraRemoveLinkedAgentContextItemPayload';
|
|
136702
|
+
errors?: Maybe<Array<MutationError>>;
|
|
136703
|
+
success: Scalars['Boolean']['output'];
|
|
136704
|
+
};
|
|
136326
136705
|
export declare type JiraRemovePostIncidentReviewLinkMutationInput = {
|
|
136327
136706
|
incidentId: Scalars['ID']['input'];
|
|
136328
136707
|
postIncidentReviewLinkId: Scalars['ID']['input'];
|
|
@@ -138043,6 +138422,18 @@ export declare type JiraServiceManagementProjectNavigationMetadata = {
|
|
|
138043
138422
|
queueId: Scalars['ID']['output'];
|
|
138044
138423
|
queueName: Scalars['String']['output'];
|
|
138045
138424
|
};
|
|
138425
|
+
export declare type JiraServiceManagementProjectQueue = {
|
|
138426
|
+
__typename?: 'JiraServiceManagementProjectQueue';
|
|
138427
|
+
id: Scalars['ID']['output'];
|
|
138428
|
+
jql?: Maybe<Scalars['String']['output']>;
|
|
138429
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
138430
|
+
};
|
|
138431
|
+
export declare type JiraServiceManagementProjectQueueConnection = {
|
|
138432
|
+
__typename?: 'JiraServiceManagementProjectQueueConnection';
|
|
138433
|
+
nodes: Array<JiraServiceManagementProjectQueue>;
|
|
138434
|
+
pageInfo: PageInfo;
|
|
138435
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
138436
|
+
};
|
|
138046
138437
|
export declare type JiraServiceManagementProjectTeamType = {
|
|
138047
138438
|
__typename?: 'JiraServiceManagementProjectTeamType';
|
|
138048
138439
|
teamType?: Maybe<Scalars['String']['output']>;
|
|
@@ -139714,6 +140105,7 @@ export declare type JiraSoftwareProjectNavigationMetadata = {
|
|
|
139714
140105
|
export declare type JiraSpaceSearchForYouConnection = {
|
|
139715
140106
|
__typename?: 'JiraSpaceSearchForYouConnection';
|
|
139716
140107
|
edges?: Maybe<Array<Maybe<JiraSpaceSearchForYouEdge>>>;
|
|
140108
|
+
error?: Maybe<JiraSpaceSearchForYouError>;
|
|
139717
140109
|
pageInfo: PageInfo;
|
|
139718
140110
|
};
|
|
139719
140111
|
export declare type JiraSpaceSearchForYouEdge = {
|
|
@@ -139722,6 +140114,12 @@ export declare type JiraSpaceSearchForYouEdge = {
|
|
|
139722
140114
|
node?: Maybe<JiraProject>;
|
|
139723
140115
|
projectId: Scalars['ID']['output'];
|
|
139724
140116
|
};
|
|
140117
|
+
export declare type JiraSpaceSearchForYouError = {
|
|
140118
|
+
__typename?: 'JiraSpaceSearchForYouError';
|
|
140119
|
+
errorType: Scalars['String']['output'];
|
|
140120
|
+
message: Scalars['String']['output'];
|
|
140121
|
+
statusCode: Scalars['Int']['output'];
|
|
140122
|
+
};
|
|
139725
140123
|
export declare type JiraSpaceSearchForYouInput = {
|
|
139726
140124
|
spaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
139727
140125
|
teamId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -140055,6 +140453,11 @@ export declare type JiraStatusCategoryField = JiraIssueField & JiraIssueFieldCon
|
|
|
140055
140453
|
type: Scalars['String']['output'];
|
|
140056
140454
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
140057
140455
|
};
|
|
140456
|
+
export declare enum JiraStatusCategoryFilter {
|
|
140457
|
+
Done = "DONE",
|
|
140458
|
+
InProgress = "IN_PROGRESS",
|
|
140459
|
+
Todo = "TODO"
|
|
140460
|
+
}
|
|
140058
140461
|
export declare type JiraStatusCategoryProgress = {
|
|
140059
140462
|
__typename?: 'JiraStatusCategoryProgress';
|
|
140060
140463
|
statusCategory?: Maybe<JiraStatusCategory>;
|
|
@@ -140072,6 +140475,17 @@ export declare type JiraStatusCategoryProgressEdge = {
|
|
|
140072
140475
|
cursor: Scalars['String']['output'];
|
|
140073
140476
|
node?: Maybe<JiraStatusCategoryProgress>;
|
|
140074
140477
|
};
|
|
140478
|
+
export declare type JiraStatusConnection = HasPageInfo & {
|
|
140479
|
+
__typename?: 'JiraStatusConnection';
|
|
140480
|
+
edges?: Maybe<Array<JiraStatusEdge>>;
|
|
140481
|
+
nodes?: Maybe<Array<JiraStatus>>;
|
|
140482
|
+
pageInfo: PageInfo;
|
|
140483
|
+
};
|
|
140484
|
+
export declare type JiraStatusEdge = {
|
|
140485
|
+
__typename?: 'JiraStatusEdge';
|
|
140486
|
+
cursor: Scalars['String']['output'];
|
|
140487
|
+
node?: Maybe<JiraStatus>;
|
|
140488
|
+
};
|
|
140075
140489
|
export declare type JiraStatusField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & JiraUserIssueFieldConfiguration & Node & {
|
|
140076
140490
|
__typename?: 'JiraStatusField';
|
|
140077
140491
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -141571,6 +141985,16 @@ export declare type JiraUpdateOverviewPlanMigrationChangeboardingPayload = Paylo
|
|
|
141571
141985
|
errors?: Maybe<Array<MutationError>>;
|
|
141572
141986
|
success: Scalars['Boolean']['output'];
|
|
141573
141987
|
};
|
|
141988
|
+
export declare type JiraUpdateParentAndRankInput = {
|
|
141989
|
+
issue: Scalars['ID']['input'];
|
|
141990
|
+
parent?: InputMaybe<JiraParentFieldOperationInput>;
|
|
141991
|
+
rank: JiraRankOperationInput;
|
|
141992
|
+
};
|
|
141993
|
+
export declare type JiraUpdateParentAndRankPayload = Payload & {
|
|
141994
|
+
__typename?: 'JiraUpdateParentAndRankPayload';
|
|
141995
|
+
errors?: Maybe<Array<MutationError>>;
|
|
141996
|
+
success: Scalars['Boolean']['output'];
|
|
141997
|
+
};
|
|
141574
141998
|
export declare type JiraUpdateParentFieldInput = {
|
|
141575
141999
|
id: Scalars['ID']['input'];
|
|
141576
142000
|
operation: JiraParentFieldOperationInput;
|
|
@@ -146110,7 +146534,7 @@ export declare type KitsuneFilterInput = {
|
|
|
146110
146534
|
logicalOperator: KitsuneLogicalOperator;
|
|
146111
146535
|
values: KitsuneFilterValueInput;
|
|
146112
146536
|
};
|
|
146113
|
-
export declare type KitsuneFilterValue = KitsuneCustomerNode | KitsuneDateValue | KitsuneFieldValue | KitsuneNumberValue | KitsuneSourceCategory | KitsuneTextValue | KitsuneUser;
|
|
146537
|
+
export declare type KitsuneFilterValue = KitsuneCustomerNode | KitsuneDateValue | KitsuneFieldValue | KitsuneIdeaNode | KitsuneNumberValue | KitsuneOrganizationNode | KitsuneSourceCategory | KitsuneTextValue | KitsuneUser;
|
|
146114
146538
|
export declare type KitsuneFilterValueInput = {
|
|
146115
146539
|
valueDate?: InputMaybe<Array<Scalars['Date']['input']>>;
|
|
146116
146540
|
valueId?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -146121,6 +146545,11 @@ export declare type KitsuneHighlightFragment = {
|
|
|
146121
146545
|
__typename?: 'KitsuneHighlightFragment';
|
|
146122
146546
|
text: Scalars['String']['output'];
|
|
146123
146547
|
};
|
|
146548
|
+
export declare type KitsuneIdeaNode = {
|
|
146549
|
+
__typename?: 'KitsuneIdeaNode';
|
|
146550
|
+
idea?: Maybe<JiraIssue>;
|
|
146551
|
+
ideaId: Scalars['ID']['output'];
|
|
146552
|
+
};
|
|
146124
146553
|
export declare type KitsuneInsight = Node & {
|
|
146125
146554
|
__typename?: 'KitsuneInsight';
|
|
146126
146555
|
content: Scalars['KitsuneADF']['output'];
|
|
@@ -146129,6 +146558,7 @@ export declare type KitsuneInsight = Node & {
|
|
|
146129
146558
|
creatorId?: Maybe<Scalars['ID']['output']>;
|
|
146130
146559
|
externalId?: Maybe<Scalars['ID']['output']>;
|
|
146131
146560
|
id: Scalars['ID']['output'];
|
|
146561
|
+
ideas: Array<KitsuneIdeaNode>;
|
|
146132
146562
|
jiraIssue?: Maybe<JiraIssue>;
|
|
146133
146563
|
nbSnippets: Scalars['Int']['output'];
|
|
146134
146564
|
snippets: KitsuneSnippetConnection;
|
|
@@ -146221,6 +146651,11 @@ export declare type KitsuneOrganizationEdge = KitsuneEdge & {
|
|
|
146221
146651
|
cursor: Scalars['String']['output'];
|
|
146222
146652
|
node?: Maybe<KitsuneOrganization>;
|
|
146223
146653
|
};
|
|
146654
|
+
export declare type KitsuneOrganizationNode = {
|
|
146655
|
+
__typename?: 'KitsuneOrganizationNode';
|
|
146656
|
+
organization?: Maybe<CustomerServiceCsmOrganization>;
|
|
146657
|
+
organizationId: Scalars['ID']['output'];
|
|
146658
|
+
};
|
|
146224
146659
|
export declare type KitsunePaginationInput = {
|
|
146225
146660
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
146226
146661
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -153599,6 +154034,10 @@ export declare enum MercuryBaselineJobStatus {
|
|
|
153599
154034
|
InProgress = "IN_PROGRESS",
|
|
153600
154035
|
Succeeded = "SUCCEEDED"
|
|
153601
154036
|
}
|
|
154037
|
+
export declare enum MercuryBaselineType {
|
|
154038
|
+
Benefit = "BENEFIT",
|
|
154039
|
+
Cost = "COST"
|
|
154040
|
+
}
|
|
153602
154041
|
export declare type MercuryBenefitItem = Node & {
|
|
153603
154042
|
__typename?: 'MercuryBenefitItem';
|
|
153604
154043
|
benefitItemSummary?: Maybe<MercuryBenefitItemSummary>;
|
|
@@ -153617,6 +154056,31 @@ export declare type MercuryBenefitItemTagsArgs = {
|
|
|
153617
154056
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
153618
154057
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
153619
154058
|
};
|
|
154059
|
+
export declare type MercuryBenefitItemActivityHistory = Node & {
|
|
154060
|
+
__typename?: 'MercuryBenefitItemActivityHistory';
|
|
154061
|
+
benefitItemId: Scalars['ID']['output'];
|
|
154062
|
+
currency: Scalars['String']['output'];
|
|
154063
|
+
eventTimestamp: Scalars['String']['output'];
|
|
154064
|
+
eventType: MercuryBenefitItemEventType;
|
|
154065
|
+
fields?: Maybe<Array<Maybe<MercuryBenefitItemUpdatedField>>>;
|
|
154066
|
+
fieldsChanged?: Maybe<Array<Maybe<MercuryBenefitItemField>>>;
|
|
154067
|
+
id: Scalars['ID']['output'];
|
|
154068
|
+
user?: Maybe<User>;
|
|
154069
|
+
};
|
|
154070
|
+
export declare type MercuryBenefitItemActivityHistoryConnection = {
|
|
154071
|
+
__typename?: 'MercuryBenefitItemActivityHistoryConnection';
|
|
154072
|
+
edges?: Maybe<Array<Maybe<MercuryBenefitItemActivityHistoryEdge>>>;
|
|
154073
|
+
pageInfo: PageInfo;
|
|
154074
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
154075
|
+
};
|
|
154076
|
+
export declare type MercuryBenefitItemActivityHistoryEdge = {
|
|
154077
|
+
__typename?: 'MercuryBenefitItemActivityHistoryEdge';
|
|
154078
|
+
cursor: Scalars['String']['output'];
|
|
154079
|
+
node?: Maybe<MercuryBenefitItemActivityHistory>;
|
|
154080
|
+
};
|
|
154081
|
+
export declare type MercuryBenefitItemActivitySort = {
|
|
154082
|
+
order: SortOrder;
|
|
154083
|
+
};
|
|
153620
154084
|
export declare type MercuryBenefitItemConnection = {
|
|
153621
154085
|
__typename?: 'MercuryBenefitItemConnection';
|
|
153622
154086
|
edges?: Maybe<Array<MercuryBenefitItemEdge>>;
|
|
@@ -153628,6 +154092,14 @@ export declare type MercuryBenefitItemEdge = {
|
|
|
153628
154092
|
cursor: Scalars['String']['output'];
|
|
153629
154093
|
node?: Maybe<MercuryBenefitItem>;
|
|
153630
154094
|
};
|
|
154095
|
+
export declare enum MercuryBenefitItemEventType {
|
|
154096
|
+
CreateBenefitPeriodValue = "CREATE_BENEFIT_PERIOD_VALUE",
|
|
154097
|
+
DeleteBenefitPeriodValue = "DELETE_BENEFIT_PERIOD_VALUE",
|
|
154098
|
+
UpdateBenefitPeriodValue = "UPDATE_BENEFIT_PERIOD_VALUE"
|
|
154099
|
+
}
|
|
154100
|
+
export declare enum MercuryBenefitItemField {
|
|
154101
|
+
BenefitPeriodValue = "BENEFIT_PERIOD_VALUE"
|
|
154102
|
+
}
|
|
153631
154103
|
export declare type MercuryBenefitItemSort = {
|
|
153632
154104
|
field: MercuryBenefitItemSortField;
|
|
153633
154105
|
order: SortOrder;
|
|
@@ -153642,6 +154114,13 @@ export declare type MercuryBenefitItemSummary = {
|
|
|
153642
154114
|
estimateAtCompletion?: Maybe<MercuryEstimateBenefitAtCompletion>;
|
|
153643
154115
|
financialVersionBenefitSummaries?: Maybe<Array<Maybe<MercuryFinancialVersionBenefitSummary>>>;
|
|
153644
154116
|
};
|
|
154117
|
+
export declare type MercuryBenefitItemUpdatedField = {
|
|
154118
|
+
__typename?: 'MercuryBenefitItemUpdatedField';
|
|
154119
|
+
field: MercuryBenefitItemField;
|
|
154120
|
+
fieldId: Scalars['ID']['output'];
|
|
154121
|
+
newValue?: Maybe<Scalars['String']['output']>;
|
|
154122
|
+
oldValue?: Maybe<Scalars['String']['output']>;
|
|
154123
|
+
};
|
|
153645
154124
|
export declare type MercuryBenefitPeriodValue = Node & {
|
|
153646
154125
|
__typename?: 'MercuryBenefitPeriodValue';
|
|
153647
154126
|
amount?: Maybe<MercuryMoney>;
|
|
@@ -153729,6 +154208,11 @@ export declare type MercuryBusinessDomainsQueryApiBusinessDomainsArgs = {
|
|
|
153729
154208
|
ids: Array<Scalars['ID']['input']>;
|
|
153730
154209
|
};
|
|
153731
154210
|
export declare type MercuryChange = MercuryArchiveFocusAreaChange | MercuryChangeParentFocusAreaChange | MercuryCreateFocusAreaChange | MercuryMoveFundsChange | MercuryMovePositionsChange | MercuryPositionAllocationChange | MercuryRenameFocusAreaChange | MercuryRequestFundsChange | MercuryRequestPositionsChange;
|
|
154211
|
+
export declare type MercuryChangeActivityHistoryMetadata = MercuryActivityHistoryMetadata & {
|
|
154212
|
+
__typename?: 'MercuryChangeActivityHistoryMetadata';
|
|
154213
|
+
changeType: Scalars['String']['output'];
|
|
154214
|
+
kind: MercuryActivityHistoryUpdatedFieldKind;
|
|
154215
|
+
};
|
|
153732
154216
|
export declare type MercuryChangeConnection = {
|
|
153733
154217
|
__typename?: 'MercuryChangeConnection';
|
|
153734
154218
|
edges?: Maybe<Array<Maybe<MercuryChangeEdge>>>;
|
|
@@ -153809,6 +154293,7 @@ export declare type MercuryChangeProposalTagsArgs = {
|
|
|
153809
154293
|
export declare type MercuryChangeProposalActivityHistory = Node & {
|
|
153810
154294
|
__typename?: 'MercuryChangeProposalActivityHistory';
|
|
153811
154295
|
changeProposalId: Scalars['ID']['output'];
|
|
154296
|
+
currency: Scalars['String']['output'];
|
|
153812
154297
|
eventTimestamp: Scalars['String']['output'];
|
|
153813
154298
|
eventType: MercuryChangeProposalEventType;
|
|
153814
154299
|
fields?: Maybe<Array<Maybe<MercuryChangeProposalUpdatedField>>>;
|
|
@@ -153869,6 +154354,11 @@ export declare type MercuryChangeProposalCountByStatus = {
|
|
|
153869
154354
|
count?: Maybe<Scalars['Int']['output']>;
|
|
153870
154355
|
status?: Maybe<MercuryChangeProposalStatus>;
|
|
153871
154356
|
};
|
|
154357
|
+
export declare type MercuryChangeProposalCustomFieldActivityHistoryMetadata = MercuryActivityHistoryMetadata & {
|
|
154358
|
+
__typename?: 'MercuryChangeProposalCustomFieldActivityHistoryMetadata';
|
|
154359
|
+
kind: MercuryActivityHistoryUpdatedFieldKind;
|
|
154360
|
+
searchKey: Scalars['String']['output'];
|
|
154361
|
+
};
|
|
153872
154362
|
export declare type MercuryChangeProposalCustomFieldDefinitionScope = MercuryCustomFieldDefinitionScope & {
|
|
153873
154363
|
__typename?: 'MercuryChangeProposalCustomFieldDefinitionScope';
|
|
153874
154364
|
entityType: Scalars['String']['output'];
|
|
@@ -154002,6 +154492,7 @@ export declare type MercuryChangeProposalUpdate = {
|
|
|
154002
154492
|
export declare type MercuryChangeProposalUpdatedField = {
|
|
154003
154493
|
__typename?: 'MercuryChangeProposalUpdatedField';
|
|
154004
154494
|
field: MercuryChangeProposalField;
|
|
154495
|
+
metadata?: Maybe<Array<MercuryActivityHistoryMetadata>>;
|
|
154005
154496
|
newData?: Maybe<MercuryChangeProposalActivityHistoryData>;
|
|
154006
154497
|
newValue?: Maybe<Scalars['String']['output']>;
|
|
154007
154498
|
oldData?: Maybe<MercuryChangeProposalActivityHistoryData>;
|
|
@@ -154166,6 +154657,31 @@ export declare type MercuryCostItemTagsArgs = {
|
|
|
154166
154657
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
154167
154658
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
154168
154659
|
};
|
|
154660
|
+
export declare type MercuryCostItemActivityHistory = Node & {
|
|
154661
|
+
__typename?: 'MercuryCostItemActivityHistory';
|
|
154662
|
+
costItemId: Scalars['ID']['output'];
|
|
154663
|
+
currency: Scalars['String']['output'];
|
|
154664
|
+
eventTimestamp: Scalars['String']['output'];
|
|
154665
|
+
eventType: MercuryCostItemEventType;
|
|
154666
|
+
fields?: Maybe<Array<Maybe<MercuryCostItemUpdatedField>>>;
|
|
154667
|
+
fieldsChanged?: Maybe<Array<Maybe<MercuryCostItemField>>>;
|
|
154668
|
+
id: Scalars['ID']['output'];
|
|
154669
|
+
user?: Maybe<User>;
|
|
154670
|
+
};
|
|
154671
|
+
export declare type MercuryCostItemActivityHistoryConnection = {
|
|
154672
|
+
__typename?: 'MercuryCostItemActivityHistoryConnection';
|
|
154673
|
+
edges?: Maybe<Array<Maybe<MercuryCostItemActivityHistoryEdge>>>;
|
|
154674
|
+
pageInfo: PageInfo;
|
|
154675
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
154676
|
+
};
|
|
154677
|
+
export declare type MercuryCostItemActivityHistoryEdge = {
|
|
154678
|
+
__typename?: 'MercuryCostItemActivityHistoryEdge';
|
|
154679
|
+
cursor: Scalars['String']['output'];
|
|
154680
|
+
node?: Maybe<MercuryCostItemActivityHistory>;
|
|
154681
|
+
};
|
|
154682
|
+
export declare type MercuryCostItemActivitySort = {
|
|
154683
|
+
order: SortOrder;
|
|
154684
|
+
};
|
|
154169
154685
|
export declare type MercuryCostItemClassificationInput = {
|
|
154170
154686
|
costSubtypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
154171
154687
|
costTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -154181,6 +154697,14 @@ export declare type MercuryCostItemEdge = {
|
|
|
154181
154697
|
cursor: Scalars['String']['output'];
|
|
154182
154698
|
node?: Maybe<MercuryCostItem>;
|
|
154183
154699
|
};
|
|
154700
|
+
export declare enum MercuryCostItemEventType {
|
|
154701
|
+
CreateCostPeriodValue = "CREATE_COST_PERIOD_VALUE",
|
|
154702
|
+
DeleteCostPeriodValue = "DELETE_COST_PERIOD_VALUE",
|
|
154703
|
+
UpdateCostPeriodValue = "UPDATE_COST_PERIOD_VALUE"
|
|
154704
|
+
}
|
|
154705
|
+
export declare enum MercuryCostItemField {
|
|
154706
|
+
CostPeriodValue = "COST_PERIOD_VALUE"
|
|
154707
|
+
}
|
|
154184
154708
|
export declare type MercuryCostItemSort = {
|
|
154185
154709
|
field: MercuryCostItemSortField;
|
|
154186
154710
|
order: SortOrder;
|
|
@@ -154195,6 +154719,13 @@ export declare type MercuryCostItemSummary = {
|
|
|
154195
154719
|
estimateAtCompletion?: Maybe<MercuryEstimateCostAtCompletion>;
|
|
154196
154720
|
financialVersionCostSummaries?: Maybe<Array<Maybe<MercuryFinancialVersionCostSummary>>>;
|
|
154197
154721
|
};
|
|
154722
|
+
export declare type MercuryCostItemUpdatedField = {
|
|
154723
|
+
__typename?: 'MercuryCostItemUpdatedField';
|
|
154724
|
+
field: MercuryCostItemField;
|
|
154725
|
+
fieldId: Scalars['ID']['output'];
|
|
154726
|
+
newValue?: Maybe<Scalars['String']['output']>;
|
|
154727
|
+
oldValue?: Maybe<Scalars['String']['output']>;
|
|
154728
|
+
};
|
|
154198
154729
|
export declare type MercuryCostPeriodValue = Node & {
|
|
154199
154730
|
__typename?: 'MercuryCostPeriodValue';
|
|
154200
154731
|
amount?: Maybe<MercuryMoney>;
|
|
@@ -154403,6 +154934,17 @@ export declare type MercuryCreateCustomFieldDefinitionPayload = {
|
|
|
154403
154934
|
export declare type MercuryCreateDateCustomFieldDefinitionInput = {
|
|
154404
154935
|
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
154405
154936
|
};
|
|
154937
|
+
export declare type MercuryCreateDraftPlanInput = {
|
|
154938
|
+
endDate: Scalars['Date']['input'];
|
|
154939
|
+
organizationId: Scalars['ID']['input'];
|
|
154940
|
+
startDate: Scalars['Date']['input'];
|
|
154941
|
+
};
|
|
154942
|
+
export declare type MercuryCreateDraftPlanPayload = Payload & {
|
|
154943
|
+
__typename?: 'MercuryCreateDraftPlanPayload';
|
|
154944
|
+
errors?: Maybe<Array<MutationError>>;
|
|
154945
|
+
plan?: Maybe<MercuryPlan>;
|
|
154946
|
+
success: Scalars['Boolean']['output'];
|
|
154947
|
+
};
|
|
154406
154948
|
export declare type MercuryCreateFiscalCalendarConfigurationInput = {
|
|
154407
154949
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
154408
154950
|
startMonthNumber: Scalars['Int']['input'];
|
|
@@ -155502,12 +156044,20 @@ export declare type MercuryFocusAreaActivityHistory = Node & {
|
|
|
155502
156044
|
export declare type MercuryFocusAreaActivitySort = {
|
|
155503
156045
|
order: SortOrder;
|
|
155504
156046
|
};
|
|
156047
|
+
export declare type MercuryFocusAreaBaselineActivityHistoryMetadata = MercuryActivityHistoryMetadata & {
|
|
156048
|
+
__typename?: 'MercuryFocusAreaBaselineActivityHistoryMetadata';
|
|
156049
|
+
baselineType?: Maybe<MercuryBaselineType>;
|
|
156050
|
+
endYearMonth?: Maybe<Scalars['String']['output']>;
|
|
156051
|
+
kind: MercuryActivityHistoryUpdatedFieldKind;
|
|
156052
|
+
startYearMonth?: Maybe<Scalars['String']['output']>;
|
|
156053
|
+
};
|
|
155505
156054
|
export declare type MercuryFocusAreaBenefitSummary = {
|
|
155506
156055
|
__typename?: 'MercuryFocusAreaBenefitSummary';
|
|
155507
156056
|
estimateAtCompletion?: Maybe<MercuryEstimateBenefitAtCompletion>;
|
|
155508
156057
|
financialVersionBenefitPerYearMonthSummaries?: Maybe<Array<Maybe<MercuryFinancialVersionBenefitPerYearMonthSummary>>>;
|
|
155509
156058
|
financialVersionBenefitSummaries?: Maybe<Array<Maybe<MercuryFinancialVersionBenefitSummary>>>;
|
|
155510
156059
|
focusAreaId: Scalars['ID']['output'];
|
|
156060
|
+
remainingEstimateAtCompletion?: Maybe<MercuryRemainingEstimateBenefitAtCompletion>;
|
|
155511
156061
|
returnOnInvestment?: Maybe<Scalars['Float']['output']>;
|
|
155512
156062
|
};
|
|
155513
156063
|
export declare type MercuryFocusAreaBudget = Node & {
|
|
@@ -155521,6 +156071,11 @@ export declare type MercuryFocusAreaBudget = Node & {
|
|
|
155521
156071
|
updatedBy?: Maybe<User>;
|
|
155522
156072
|
updatedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
155523
156073
|
};
|
|
156074
|
+
export declare type MercuryFocusAreaBudgetActivityHistoryMetadata = MercuryActivityHistoryMetadata & {
|
|
156075
|
+
__typename?: 'MercuryFocusAreaBudgetActivityHistoryMetadata';
|
|
156076
|
+
fiscalYear?: Maybe<Scalars['Int']['output']>;
|
|
156077
|
+
kind: MercuryActivityHistoryUpdatedFieldKind;
|
|
156078
|
+
};
|
|
155524
156079
|
export declare type MercuryFocusAreaBudgetConnection = {
|
|
155525
156080
|
__typename?: 'MercuryFocusAreaBudgetConnection';
|
|
155526
156081
|
edges?: Maybe<Array<MercuryFocusAreaBudgetEdge>>;
|
|
@@ -155789,12 +156344,14 @@ export declare type MercuryFocusAreaSort = {
|
|
|
155789
156344
|
export declare enum MercuryFocusAreaSortField {
|
|
155790
156345
|
Budget = "BUDGET",
|
|
155791
156346
|
FocusAreaType = "FOCUS_AREA_TYPE",
|
|
156347
|
+
GroupType = "GROUP_TYPE",
|
|
155792
156348
|
HasParent = "HAS_PARENT",
|
|
155793
156349
|
Health = "HEALTH",
|
|
155794
156350
|
HierarchyLevel = "HIERARCHY_LEVEL",
|
|
155795
156351
|
LastUpdated = "LAST_UPDATED",
|
|
155796
156352
|
Name = "NAME",
|
|
155797
156353
|
Rank = "RANK",
|
|
156354
|
+
Ranking = "RANKING",
|
|
155798
156355
|
Spend = "SPEND",
|
|
155799
156356
|
Starred = "STARRED",
|
|
155800
156357
|
Status = "STATUS",
|
|
@@ -156161,11 +156718,13 @@ export declare type MercuryFundsQueryApi = {
|
|
|
156161
156718
|
__typename?: 'MercuryFundsQueryApi';
|
|
156162
156719
|
activeCurrency: MercuryCurrency;
|
|
156163
156720
|
activeFiscalCalendarConfiguration?: Maybe<MercuryFiscalCalendarConfiguration>;
|
|
156721
|
+
benefitItemActivityHistoryByIds?: Maybe<Array<Maybe<MercuryBenefitItemActivityHistory>>>;
|
|
156164
156722
|
benefitItems?: Maybe<Array<Maybe<MercuryBenefitItem>>>;
|
|
156165
156723
|
benefitItemsSearch?: Maybe<MercuryBenefitItemConnection>;
|
|
156166
156724
|
benefitPeriodValues?: Maybe<Array<Maybe<MercuryBenefitPeriodValue>>>;
|
|
156167
156725
|
benefitTypes?: Maybe<Array<Maybe<MercuryBenefitType>>>;
|
|
156168
156726
|
benefitTypesByIds?: Maybe<Array<Maybe<MercuryBenefitType>>>;
|
|
156727
|
+
costItemActivityHistoryByIds?: Maybe<Array<Maybe<MercuryCostItemActivityHistory>>>;
|
|
156169
156728
|
costItems?: Maybe<Array<Maybe<MercuryCostItem>>>;
|
|
156170
156729
|
costItemsSearch?: Maybe<MercuryCostItemConnection>;
|
|
156171
156730
|
costPeriodValues?: Maybe<Array<Maybe<MercuryCostPeriodValue>>>;
|
|
@@ -156189,6 +156748,8 @@ export declare type MercuryFundsQueryApi = {
|
|
|
156189
156748
|
fundsPermissionsByFocusAreaId?: Maybe<Array<MercuryFundsPermission>>;
|
|
156190
156749
|
investmentCategories?: Maybe<Array<Maybe<MercuryInvestmentCategory>>>;
|
|
156191
156750
|
investmentCategoriesSearch?: Maybe<MercuryInvestmentCategoryConnection>;
|
|
156751
|
+
searchBenefitItemActivityHistory?: Maybe<MercuryBenefitItemActivityHistoryConnection>;
|
|
156752
|
+
searchCostItemActivityHistory?: Maybe<MercuryCostItemActivityHistoryConnection>;
|
|
156192
156753
|
setBenefitBaselineAndDescendantsJob?: Maybe<MercuryBaselineJob>;
|
|
156193
156754
|
setCostBaselineAndDescendantsJob?: Maybe<MercuryBaselineJob>;
|
|
156194
156755
|
unsetBenefitBaselineAndDescendantsJob?: Maybe<MercuryBaselineJob>;
|
|
@@ -156200,6 +156761,9 @@ export declare type MercuryFundsQueryApiActiveCurrencyArgs = {
|
|
|
156200
156761
|
export declare type MercuryFundsQueryApiActiveFiscalCalendarConfigurationArgs = {
|
|
156201
156762
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
156202
156763
|
};
|
|
156764
|
+
export declare type MercuryFundsQueryApiBenefitItemActivityHistoryByIdsArgs = {
|
|
156765
|
+
ids: Array<Scalars['ID']['input']>;
|
|
156766
|
+
};
|
|
156203
156767
|
export declare type MercuryFundsQueryApiBenefitItemsArgs = {
|
|
156204
156768
|
ids: Array<Scalars['ID']['input']>;
|
|
156205
156769
|
};
|
|
@@ -156219,6 +156783,9 @@ export declare type MercuryFundsQueryApiBenefitTypesArgs = {
|
|
|
156219
156783
|
export declare type MercuryFundsQueryApiBenefitTypesByIdsArgs = {
|
|
156220
156784
|
ids: Array<Scalars['ID']['input']>;
|
|
156221
156785
|
};
|
|
156786
|
+
export declare type MercuryFundsQueryApiCostItemActivityHistoryByIdsArgs = {
|
|
156787
|
+
ids: Array<Scalars['ID']['input']>;
|
|
156788
|
+
};
|
|
156222
156789
|
export declare type MercuryFundsQueryApiCostItemsArgs = {
|
|
156223
156790
|
ids: Array<Scalars['ID']['input']>;
|
|
156224
156791
|
};
|
|
@@ -156318,6 +156885,20 @@ export declare type MercuryFundsQueryApiInvestmentCategoriesSearchArgs = {
|
|
|
156318
156885
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
156319
156886
|
sort?: InputMaybe<Array<InputMaybe<MercuryInvestmentCategorySort>>>;
|
|
156320
156887
|
};
|
|
156888
|
+
export declare type MercuryFundsQueryApiSearchBenefitItemActivityHistoryArgs = {
|
|
156889
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
156890
|
+
cloudId: Scalars['ID']['input'];
|
|
156891
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
156892
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
156893
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryBenefitItemActivitySort>>>;
|
|
156894
|
+
};
|
|
156895
|
+
export declare type MercuryFundsQueryApiSearchCostItemActivityHistoryArgs = {
|
|
156896
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
156897
|
+
cloudId: Scalars['ID']['input'];
|
|
156898
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
156899
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
156900
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryCostItemActivitySort>>>;
|
|
156901
|
+
};
|
|
156321
156902
|
export declare type MercuryFundsQueryApiSetBenefitBaselineAndDescendantsJobArgs = {
|
|
156322
156903
|
cloudId: Scalars['ID']['input'];
|
|
156323
156904
|
id: Scalars['ID']['input'];
|
|
@@ -156698,6 +157279,16 @@ export declare type MercuryLinkFocusAreasToFocusAreaPayload = Payload & {
|
|
|
156698
157279
|
errors?: Maybe<Array<MutationError>>;
|
|
156699
157280
|
success: Scalars['Boolean']['output'];
|
|
156700
157281
|
};
|
|
157282
|
+
export declare type MercuryLinkFocusAreasToPlanInput = {
|
|
157283
|
+
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
157284
|
+
planId: Scalars['ID']['input'];
|
|
157285
|
+
};
|
|
157286
|
+
export declare type MercuryLinkFocusAreasToPlanPayload = Payload & {
|
|
157287
|
+
__typename?: 'MercuryLinkFocusAreasToPlanPayload';
|
|
157288
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157289
|
+
plan?: Maybe<MercuryPlan>;
|
|
157290
|
+
success: Scalars['Boolean']['output'];
|
|
157291
|
+
};
|
|
156701
157292
|
export declare type MercuryLinkFocusAreasToPortfolioInput = {
|
|
156702
157293
|
cloudId: Scalars['ID']['input'];
|
|
156703
157294
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
@@ -157003,6 +157594,7 @@ export declare type MercuryMutationApi = {
|
|
|
157003
157594
|
removeUserAccessToFocusArea?: Maybe<MercuryRemoveUserAccessToFocusAreaPayload>;
|
|
157004
157595
|
removeWatcherFromFocusArea?: Maybe<MercuryRemoveWatcherFromFocusAreaPayload>;
|
|
157005
157596
|
reorderFocusAreaCustomFieldDefinitionOptions?: Maybe<MercuryReorderCustomFieldDefinitionOptionsPayload>;
|
|
157597
|
+
rerankFocusAreaAbsolute?: Maybe<MercuryRerankFocusAreaAbsolutePayload>;
|
|
157006
157598
|
rerankFocusAreas?: Maybe<MercuryRerankFocusAreasPayload>;
|
|
157007
157599
|
setFocusAreaCustomFieldValue?: Maybe<MercurySetFocusAreaCustomFieldPayload>;
|
|
157008
157600
|
setFocusAreaCustomFieldValues?: Maybe<MercurySetFocusAreaCustomFieldsPayload>;
|
|
@@ -157119,6 +157711,9 @@ export declare type MercuryMutationApiRemoveWatcherFromFocusAreaArgs = {
|
|
|
157119
157711
|
export declare type MercuryMutationApiReorderFocusAreaCustomFieldDefinitionOptionsArgs = {
|
|
157120
157712
|
input: MercuryReorderCustomFieldDefinitionOptionsInput;
|
|
157121
157713
|
};
|
|
157714
|
+
export declare type MercuryMutationApiRerankFocusAreaAbsoluteArgs = {
|
|
157715
|
+
input: MercuryRerankFocusAreaAbsoluteInput;
|
|
157716
|
+
};
|
|
157122
157717
|
export declare type MercuryMutationApiRerankFocusAreasArgs = {
|
|
157123
157718
|
input: MercuryRerankFocusAreasInput;
|
|
157124
157719
|
};
|
|
@@ -157384,6 +157979,30 @@ export declare type MercuryOrganizationAbout = {
|
|
|
157384
157979
|
__typename?: 'MercuryOrganizationAbout';
|
|
157385
157980
|
editorAdfContent?: Maybe<Scalars['String']['output']>;
|
|
157386
157981
|
};
|
|
157982
|
+
export declare type MercuryOrganizationActivityHistory = Node & {
|
|
157983
|
+
__typename?: 'MercuryOrganizationActivityHistory';
|
|
157984
|
+
eventTimestamp: Scalars['String']['output'];
|
|
157985
|
+
eventType: MercuryOrganizationEventType;
|
|
157986
|
+
fields?: Maybe<Array<Maybe<MercuryOrganizationUpdatedField>>>;
|
|
157987
|
+
fieldsChanged?: Maybe<Array<Maybe<MercuryOrganizationField>>>;
|
|
157988
|
+
id: Scalars['ID']['output'];
|
|
157989
|
+
organizationId: Scalars['ID']['output'];
|
|
157990
|
+
user?: Maybe<User>;
|
|
157991
|
+
};
|
|
157992
|
+
export declare type MercuryOrganizationActivityHistoryConnection = {
|
|
157993
|
+
__typename?: 'MercuryOrganizationActivityHistoryConnection';
|
|
157994
|
+
edges?: Maybe<Array<Maybe<MercuryOrganizationActivityHistoryEdge>>>;
|
|
157995
|
+
pageInfo: PageInfo;
|
|
157996
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
157997
|
+
};
|
|
157998
|
+
export declare type MercuryOrganizationActivityHistoryEdge = {
|
|
157999
|
+
__typename?: 'MercuryOrganizationActivityHistoryEdge';
|
|
158000
|
+
cursor: Scalars['String']['output'];
|
|
158001
|
+
node?: Maybe<MercuryOrganizationActivityHistory>;
|
|
158002
|
+
};
|
|
158003
|
+
export declare type MercuryOrganizationActivitySort = {
|
|
158004
|
+
order: SortOrder;
|
|
158005
|
+
};
|
|
157387
158006
|
export declare type MercuryOrganizationCapacity = {
|
|
157388
158007
|
__typename?: 'MercuryOrganizationCapacity';
|
|
157389
158008
|
count: Scalars['BigDecimal']['output'];
|
|
@@ -157411,6 +158030,39 @@ export declare type MercuryOrganizationEdge = {
|
|
|
157411
158030
|
cursor: Scalars['String']['output'];
|
|
157412
158031
|
node?: Maybe<MercuryOrganization>;
|
|
157413
158032
|
};
|
|
158033
|
+
export declare enum MercuryOrganizationEventType {
|
|
158034
|
+
Archive = "ARCHIVE",
|
|
158035
|
+
Create = "CREATE",
|
|
158036
|
+
CreateUpdate = "CREATE_UPDATE",
|
|
158037
|
+
Delete = "DELETE",
|
|
158038
|
+
DeleteUpdate = "DELETE_UPDATE",
|
|
158039
|
+
EditUpdate = "EDIT_UPDATE",
|
|
158040
|
+
Export = "EXPORT",
|
|
158041
|
+
Import = "IMPORT",
|
|
158042
|
+
Link = "LINK",
|
|
158043
|
+
Unarchive = "UNARCHIVE",
|
|
158044
|
+
Unlink = "UNLINK",
|
|
158045
|
+
Update = "UPDATE"
|
|
158046
|
+
}
|
|
158047
|
+
export declare enum MercuryOrganizationField {
|
|
158048
|
+
AboutEditorContent = "ABOUT_EDITOR_CONTENT",
|
|
158049
|
+
ChildOrganization = "CHILD_ORGANIZATION",
|
|
158050
|
+
Comments = "COMMENTS",
|
|
158051
|
+
Health = "HEALTH",
|
|
158052
|
+
LinkedGoal = "LINKED_GOAL",
|
|
158053
|
+
LinkedWork = "LINKED_WORK",
|
|
158054
|
+
Name = "NAME",
|
|
158055
|
+
OrganizationLink = "ORGANIZATION_LINK",
|
|
158056
|
+
OrganizationType = "ORGANIZATION_TYPE",
|
|
158057
|
+
Owner = "OWNER",
|
|
158058
|
+
Parent = "PARENT",
|
|
158059
|
+
ParentOrganization = "PARENT_ORGANIZATION",
|
|
158060
|
+
SponsoredFocusArea = "SPONSORED_FOCUS_AREA",
|
|
158061
|
+
Status = "STATUS",
|
|
158062
|
+
StatusUpdateSummaryContent = "STATUS_UPDATE_SUMMARY_CONTENT",
|
|
158063
|
+
TargetDate = "TARGET_DATE",
|
|
158064
|
+
TargetDateType = "TARGET_DATE_TYPE"
|
|
158065
|
+
}
|
|
157414
158066
|
export declare type MercuryOrganizationHealth = {
|
|
157415
158067
|
__typename?: 'MercuryOrganizationHealth';
|
|
157416
158068
|
color: MercuryOrganizationHealthColor;
|
|
@@ -157648,6 +158300,15 @@ export declare type MercuryOrganizationTypeAggregation = {
|
|
|
157648
158300
|
__typename?: 'MercuryOrganizationTypeAggregation';
|
|
157649
158301
|
totalCount: Scalars['Int']['output'];
|
|
157650
158302
|
};
|
|
158303
|
+
export declare type MercuryOrganizationUpdatedField = {
|
|
158304
|
+
__typename?: 'MercuryOrganizationUpdatedField';
|
|
158305
|
+
field: MercuryOrganizationField;
|
|
158306
|
+
fieldId?: Maybe<Scalars['String']['output']>;
|
|
158307
|
+
newString?: Maybe<Scalars['String']['output']>;
|
|
158308
|
+
newValue?: Maybe<Scalars['String']['output']>;
|
|
158309
|
+
oldString?: Maybe<Scalars['String']['output']>;
|
|
158310
|
+
oldValue?: Maybe<Scalars['String']['output']>;
|
|
158311
|
+
};
|
|
157651
158312
|
export declare type MercuryOrganizationUrlLink = {
|
|
157652
158313
|
__typename?: 'MercuryOrganizationUrlLink';
|
|
157653
158314
|
createdDate: Scalars['String']['output'];
|
|
@@ -157796,6 +158457,7 @@ export declare type MercuryOrganizationsMutationApi = {
|
|
|
157796
158457
|
removeWatcherFromOrganization?: Maybe<MercuryRemoveWatcherFromOrganizationPayload>;
|
|
157797
158458
|
reorderOrganizationCustomFieldDefinitionOptions?: Maybe<MercuryReorderCustomFieldDefinitionOptionsPayload>;
|
|
157798
158459
|
reorderOrganizationTypes?: Maybe<MercuryReorderOrganizationTypesPayload>;
|
|
158460
|
+
setGlobalPlanAuthorityFocusAreaLevel?: Maybe<MercurySetGlobalPlanAuthorityFocusAreaLevelPayload>;
|
|
157799
158461
|
setGlobalPlanAuthorityOrgLevel?: Maybe<MercurySetGlobalPlanAuthorityOrgLevelPayload>;
|
|
157800
158462
|
setOrganizationCustomFieldValue?: Maybe<MercurySetOrganizationCustomFieldPayload>;
|
|
157801
158463
|
setOrganizationCustomFieldValues?: Maybe<MercurySetOrganizationCustomFieldsPayload>;
|
|
@@ -157932,6 +158594,9 @@ export declare type MercuryOrganizationsMutationApiReorderOrganizationCustomFiel
|
|
|
157932
158594
|
export declare type MercuryOrganizationsMutationApiReorderOrganizationTypesArgs = {
|
|
157933
158595
|
input: MercuryReorderOrganizationTypesInput;
|
|
157934
158596
|
};
|
|
158597
|
+
export declare type MercuryOrganizationsMutationApiSetGlobalPlanAuthorityFocusAreaLevelArgs = {
|
|
158598
|
+
input: MercurySetGlobalPlanAuthorityFocusAreaLevelInput;
|
|
158599
|
+
};
|
|
157935
158600
|
export declare type MercuryOrganizationsMutationApiSetGlobalPlanAuthorityOrgLevelArgs = {
|
|
157936
158601
|
input: MercurySetGlobalPlanAuthorityOrgLevelInput;
|
|
157937
158602
|
};
|
|
@@ -158010,6 +158675,7 @@ export declare type MercuryOrganizationsQueryApi = {
|
|
|
158010
158675
|
aiOrganizationSummary?: Maybe<MercuryOrganizationSummary>;
|
|
158011
158676
|
isUserMemberOfOrganization?: Maybe<Scalars['Boolean']['output']>;
|
|
158012
158677
|
organization?: Maybe<MercuryOrganization>;
|
|
158678
|
+
organizationActivityHistoryByIds?: Maybe<Array<MercuryOrganizationActivityHistory>>;
|
|
158013
158679
|
organizationCustomFieldDefinitionsSearch?: Maybe<MercuryCustomFieldDefinitionConnection>;
|
|
158014
158680
|
organizationHierarchies?: Maybe<Array<MercuryOrganizationHierarchy>>;
|
|
158015
158681
|
organizationHierarchiesSearch?: Maybe<MercuryOrganizationHierarchyConnection>;
|
|
@@ -158027,6 +158693,7 @@ export declare type MercuryOrganizationsQueryApi = {
|
|
|
158027
158693
|
organizationsForUser?: Maybe<MercuryOrganizationConnection>;
|
|
158028
158694
|
organizationsSearch?: Maybe<MercuryOrganizationConnection>;
|
|
158029
158695
|
planAuthoritySettings?: Maybe<MercuryPlanAuthoritySetting>;
|
|
158696
|
+
searchOrganizationActivityHistory?: Maybe<MercuryOrganizationActivityHistoryConnection>;
|
|
158030
158697
|
};
|
|
158031
158698
|
export declare type MercuryOrganizationsQueryApiAiOrganizationListSummaryArgs = {
|
|
158032
158699
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -158049,6 +158716,9 @@ export declare type MercuryOrganizationsQueryApiIsUserMemberOfOrganizationArgs =
|
|
|
158049
158716
|
export declare type MercuryOrganizationsQueryApiOrganizationArgs = {
|
|
158050
158717
|
id: Scalars['ID']['input'];
|
|
158051
158718
|
};
|
|
158719
|
+
export declare type MercuryOrganizationsQueryApiOrganizationActivityHistoryByIdsArgs = {
|
|
158720
|
+
ids: Array<Scalars['ID']['input']>;
|
|
158721
|
+
};
|
|
158052
158722
|
export declare type MercuryOrganizationsQueryApiOrganizationCustomFieldDefinitionsSearchArgs = {
|
|
158053
158723
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
158054
158724
|
cloudId: Scalars['ID']['input'];
|
|
@@ -158120,6 +158790,13 @@ export declare type MercuryOrganizationsQueryApiOrganizationsSearchArgs = {
|
|
|
158120
158790
|
export declare type MercuryOrganizationsQueryApiPlanAuthoritySettingsArgs = {
|
|
158121
158791
|
cloudId: Scalars['ID']['input'];
|
|
158122
158792
|
};
|
|
158793
|
+
export declare type MercuryOrganizationsQueryApiSearchOrganizationActivityHistoryArgs = {
|
|
158794
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
158795
|
+
cloudId: Scalars['ID']['input'];
|
|
158796
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
158797
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
158798
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryOrganizationActivitySort>>>;
|
|
158799
|
+
};
|
|
158123
158800
|
export declare type MercuryOriginalProjectStatus = {
|
|
158124
158801
|
mercuryOriginalStatusName?: Maybe<Scalars['String']['output']>;
|
|
158125
158802
|
};
|
|
@@ -158180,10 +158857,92 @@ export declare enum MercuryPermission {
|
|
|
158180
158857
|
ViewStrategicEvent = "VIEW_STRATEGIC_EVENT",
|
|
158181
158858
|
Write = "WRITE"
|
|
158182
158859
|
}
|
|
158860
|
+
export declare type MercuryPlan = Node & {
|
|
158861
|
+
__typename?: 'MercuryPlan';
|
|
158862
|
+
createdDate: Scalars['DateTime']['output'];
|
|
158863
|
+
endDate: Scalars['Date']['output'];
|
|
158864
|
+
focusAreaLinks: MercuryPlanFocusAreaLinks;
|
|
158865
|
+
id: Scalars['ID']['output'];
|
|
158866
|
+
isSystemManaged: Scalars['Boolean']['output'];
|
|
158867
|
+
organizationId: Scalars['ID']['output'];
|
|
158868
|
+
startDate: Scalars['Date']['output'];
|
|
158869
|
+
type: MercuryPlanType;
|
|
158870
|
+
};
|
|
158871
|
+
export declare type MercuryPlanFocusAreaLinksArgs = {
|
|
158872
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
158873
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
158874
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
158875
|
+
};
|
|
158183
158876
|
export declare type MercuryPlanAuthoritySetting = {
|
|
158184
158877
|
__typename?: 'MercuryPlanAuthoritySetting';
|
|
158878
|
+
focusAreaType?: Maybe<MercuryFocusAreaType>;
|
|
158879
|
+
focusAreaTypeId?: Maybe<Scalars['ID']['output']>;
|
|
158185
158880
|
globalOrganizationType?: Maybe<MercuryOrganizationType>;
|
|
158186
158881
|
};
|
|
158882
|
+
export declare type MercuryPlanConnection = {
|
|
158883
|
+
__typename?: 'MercuryPlanConnection';
|
|
158884
|
+
edges?: Maybe<Array<MercuryPlanEdge>>;
|
|
158885
|
+
pageInfo: PageInfo;
|
|
158886
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
158887
|
+
};
|
|
158888
|
+
export declare type MercuryPlanEdge = {
|
|
158889
|
+
__typename?: 'MercuryPlanEdge';
|
|
158890
|
+
cursor: Scalars['String']['output'];
|
|
158891
|
+
node?: Maybe<MercuryPlan>;
|
|
158892
|
+
};
|
|
158893
|
+
export declare type MercuryPlanFocusAreaLink = {
|
|
158894
|
+
__typename?: 'MercuryPlanFocusAreaLink';
|
|
158895
|
+
focusArea?: Maybe<MercuryFocusArea>;
|
|
158896
|
+
id: Scalars['ID']['output'];
|
|
158897
|
+
};
|
|
158898
|
+
export declare type MercuryPlanFocusAreaLinkConnection = {
|
|
158899
|
+
__typename?: 'MercuryPlanFocusAreaLinkConnection';
|
|
158900
|
+
edges?: Maybe<Array<MercuryPlanFocusAreaLinkEdge>>;
|
|
158901
|
+
pageInfo: PageInfo;
|
|
158902
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
158903
|
+
};
|
|
158904
|
+
export declare type MercuryPlanFocusAreaLinkEdge = {
|
|
158905
|
+
__typename?: 'MercuryPlanFocusAreaLinkEdge';
|
|
158906
|
+
cursor: Scalars['String']['output'];
|
|
158907
|
+
node?: Maybe<MercuryPlanFocusAreaLink>;
|
|
158908
|
+
};
|
|
158909
|
+
export declare type MercuryPlanFocusAreaLinks = {
|
|
158910
|
+
__typename?: 'MercuryPlanFocusAreaLinks';
|
|
158911
|
+
focusAreaLinks: MercuryPlanFocusAreaLinkConnection;
|
|
158912
|
+
};
|
|
158913
|
+
export declare enum MercuryPlanType {
|
|
158914
|
+
Baseline = "BASELINE",
|
|
158915
|
+
Draft = "DRAFT"
|
|
158916
|
+
}
|
|
158917
|
+
export declare type MercuryPlansMutationApi = {
|
|
158918
|
+
__typename?: 'MercuryPlansMutationApi';
|
|
158919
|
+
createDraftPlan?: Maybe<MercuryCreateDraftPlanPayload>;
|
|
158920
|
+
linkFocusAreasToPlan?: Maybe<MercuryLinkFocusAreasToPlanPayload>;
|
|
158921
|
+
unlinkFocusAreasFromPlan?: Maybe<MercuryUnlinkFocusAreasFromPlanPayload>;
|
|
158922
|
+
};
|
|
158923
|
+
export declare type MercuryPlansMutationApiCreateDraftPlanArgs = {
|
|
158924
|
+
input: MercuryCreateDraftPlanInput;
|
|
158925
|
+
};
|
|
158926
|
+
export declare type MercuryPlansMutationApiLinkFocusAreasToPlanArgs = {
|
|
158927
|
+
input: MercuryLinkFocusAreasToPlanInput;
|
|
158928
|
+
};
|
|
158929
|
+
export declare type MercuryPlansMutationApiUnlinkFocusAreasFromPlanArgs = {
|
|
158930
|
+
input: MercuryUnlinkFocusAreasFromPlanInput;
|
|
158931
|
+
};
|
|
158932
|
+
export declare type MercuryPlansQueryApi = {
|
|
158933
|
+
__typename?: 'MercuryPlansQueryApi';
|
|
158934
|
+
plans?: Maybe<Array<MercuryPlan>>;
|
|
158935
|
+
plansSearch?: Maybe<MercuryPlanConnection>;
|
|
158936
|
+
};
|
|
158937
|
+
export declare type MercuryPlansQueryApiPlansArgs = {
|
|
158938
|
+
ids: Array<Scalars['ID']['input']>;
|
|
158939
|
+
};
|
|
158940
|
+
export declare type MercuryPlansQueryApiPlansSearchArgs = {
|
|
158941
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
158942
|
+
cloudId: Scalars['ID']['input'];
|
|
158943
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
158944
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
158945
|
+
};
|
|
158187
158946
|
export declare type MercuryPortfolio = {
|
|
158188
158947
|
__typename?: 'MercuryPortfolio';
|
|
158189
158948
|
aggregatedFocusAreaStatusCount?: Maybe<MercuryAggregatedPortfolioStatusCount>;
|
|
@@ -158678,6 +159437,7 @@ export declare type MercuryQueryApi = {
|
|
|
158678
159437
|
focusAreaHierarchies?: Maybe<Array<MercuryFocusAreaHierarchy>>;
|
|
158679
159438
|
focusAreaHierarchiesSearch?: Maybe<MercuryFocusAreaHierarchyConnection>;
|
|
158680
159439
|
focusAreaHierarchy?: Maybe<MercuryFocusAreaHierarchy>;
|
|
159440
|
+
focusAreaRankingCount?: Maybe<Scalars['Int']['output']>;
|
|
158681
159441
|
focusAreaStatusTransitions?: Maybe<Array<MercuryFocusAreaStatusTransition>>;
|
|
158682
159442
|
focusAreaStatusUpdatesByAris?: Maybe<Array<MercuryFocusAreaStatusUpdate>>;
|
|
158683
159443
|
focusAreaTypes?: Maybe<Array<MercuryFocusAreaType>>;
|
|
@@ -158774,6 +159534,11 @@ export declare type MercuryQueryApiFocusAreaHierarchiesSearchArgs = {
|
|
|
158774
159534
|
export declare type MercuryQueryApiFocusAreaHierarchyArgs = {
|
|
158775
159535
|
id: Scalars['ID']['input'];
|
|
158776
159536
|
};
|
|
159537
|
+
export declare type MercuryQueryApiFocusAreaRankingCountArgs = {
|
|
159538
|
+
containerId: Scalars['ID']['input'];
|
|
159539
|
+
containerType: MercuryRankingContainerType;
|
|
159540
|
+
groupType: MercuryRankingGroupType;
|
|
159541
|
+
};
|
|
158777
159542
|
export declare type MercuryQueryApiFocusAreaStatusTransitionsArgs = {
|
|
158778
159543
|
cloudId: Scalars['ID']['input'];
|
|
158779
159544
|
};
|
|
@@ -158857,6 +159622,10 @@ export declare type MercuryRecreatePortfolioFocusAreasInput = {
|
|
|
158857
159622
|
id: Scalars['ID']['input'];
|
|
158858
159623
|
rankVersion?: InputMaybe<Scalars['String']['input']>;
|
|
158859
159624
|
};
|
|
159625
|
+
export declare type MercuryRemainingEstimateBenefitAtCompletion = {
|
|
159626
|
+
__typename?: 'MercuryRemainingEstimateBenefitAtCompletion';
|
|
159627
|
+
total?: Maybe<MercuryMoney>;
|
|
159628
|
+
};
|
|
158860
159629
|
export declare type MercuryRemainingEstimateCostAtCompletion = {
|
|
158861
159630
|
__typename?: 'MercuryRemainingEstimateCostAtCompletion';
|
|
158862
159631
|
total?: Maybe<MercuryMoney>;
|
|
@@ -159032,6 +159801,18 @@ export declare type MercuryRequestPositionsChangeInput = {
|
|
|
159032
159801
|
positionsAmount?: InputMaybe<Scalars['Int']['input']>;
|
|
159033
159802
|
targetFocusAreaId: Scalars['ID']['input'];
|
|
159034
159803
|
};
|
|
159804
|
+
export declare type MercuryRerankFocusAreaAbsoluteInput = {
|
|
159805
|
+
containerId: Scalars['ID']['input'];
|
|
159806
|
+
containerType: MercuryRankingContainerType;
|
|
159807
|
+
focusAreaId: Scalars['ID']['input'];
|
|
159808
|
+
newRank?: InputMaybe<Scalars['Int']['input']>;
|
|
159809
|
+
};
|
|
159810
|
+
export declare type MercuryRerankFocusAreaAbsolutePayload = Payload & {
|
|
159811
|
+
__typename?: 'MercuryRerankFocusAreaAbsolutePayload';
|
|
159812
|
+
errors?: Maybe<Array<MutationError>>;
|
|
159813
|
+
focusArea?: Maybe<MercuryFocusArea>;
|
|
159814
|
+
success: Scalars['Boolean']['output'];
|
|
159815
|
+
};
|
|
159035
159816
|
export declare type MercuryRerankFocusAreasInput = {
|
|
159036
159817
|
afterFocusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
159037
159818
|
containerId: Scalars['ID']['input'];
|
|
@@ -159453,6 +160234,15 @@ export declare type MercurySetFocusAreaCustomFieldsPayload = Payload & {
|
|
|
159453
160234
|
errors?: Maybe<Array<MutationError>>;
|
|
159454
160235
|
success: Scalars['Boolean']['output'];
|
|
159455
160236
|
};
|
|
160237
|
+
export declare type MercurySetGlobalPlanAuthorityFocusAreaLevelInput = {
|
|
160238
|
+
focusAreaTypeId: Scalars['ID']['input'];
|
|
160239
|
+
};
|
|
160240
|
+
export declare type MercurySetGlobalPlanAuthorityFocusAreaLevelPayload = Payload & {
|
|
160241
|
+
__typename?: 'MercurySetGlobalPlanAuthorityFocusAreaLevelPayload';
|
|
160242
|
+
errors?: Maybe<Array<MutationError>>;
|
|
160243
|
+
planAuthoritySettings?: Maybe<MercuryPlanAuthoritySetting>;
|
|
160244
|
+
success: Scalars['Boolean']['output'];
|
|
160245
|
+
};
|
|
159456
160246
|
export declare type MercurySetGlobalPlanAuthorityOrgLevelInput = {
|
|
159457
160247
|
cloudId: Scalars['ID']['input'];
|
|
159458
160248
|
organizationTypeId: Scalars['ID']['input'];
|
|
@@ -160244,6 +161034,16 @@ export declare type MercuryUndoDismissInsightPayload = Payload & {
|
|
|
160244
161034
|
errors?: Maybe<Array<MutationError>>;
|
|
160245
161035
|
success: Scalars['Boolean']['output'];
|
|
160246
161036
|
};
|
|
161037
|
+
export declare type MercuryUnlinkFocusAreasFromPlanInput = {
|
|
161038
|
+
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
161039
|
+
planId: Scalars['ID']['input'];
|
|
161040
|
+
};
|
|
161041
|
+
export declare type MercuryUnlinkFocusAreasFromPlanPayload = Payload & {
|
|
161042
|
+
__typename?: 'MercuryUnlinkFocusAreasFromPlanPayload';
|
|
161043
|
+
errors?: Maybe<Array<MutationError>>;
|
|
161044
|
+
plan?: Maybe<MercuryPlan>;
|
|
161045
|
+
success: Scalars['Boolean']['output'];
|
|
161046
|
+
};
|
|
160247
161047
|
export declare type MercuryUnlinkGoalsFromChangeProposalInput = {
|
|
160248
161048
|
changeProposalAri: Scalars['ID']['input'];
|
|
160249
161049
|
goalAris: Array<Scalars['ID']['input']>;
|
|
@@ -161258,6 +162058,105 @@ export declare type MissionControlOverview = {
|
|
|
161258
162058
|
metricOrder: Array<InputMaybe<Scalars['String']['input']>>;
|
|
161259
162059
|
spaceId?: InputMaybe<Scalars['Long']['input']>;
|
|
161260
162060
|
};
|
|
162061
|
+
export declare type Mitigation = {
|
|
162062
|
+
__typename?: 'Mitigation';
|
|
162063
|
+
createdAt: Scalars['DateTime']['output'];
|
|
162064
|
+
indicators: Array<MitigationIndicator>;
|
|
162065
|
+
latestRequestId?: Maybe<Scalars['ID']['output']>;
|
|
162066
|
+
mitigationId: Scalars['ID']['output'];
|
|
162067
|
+
progressSteps: Array<MitigationProgressStep>;
|
|
162068
|
+
scopeId: Scalars['ID']['output'];
|
|
162069
|
+
scopeType: MitigationScopeType;
|
|
162070
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
162071
|
+
version: Scalars['Int']['output'];
|
|
162072
|
+
};
|
|
162073
|
+
export declare type MitigationIndicatorsArgs = {
|
|
162074
|
+
includeRejected?: InputMaybe<Scalars['Boolean']['input']>;
|
|
162075
|
+
};
|
|
162076
|
+
export declare enum MitigationDocumentType {
|
|
162077
|
+
Confluence = "CONFLUENCE",
|
|
162078
|
+
GoogleDoc = "GOOGLE_DOC",
|
|
162079
|
+
Playbook = "PLAYBOOK",
|
|
162080
|
+
Sharepoint = "SHAREPOINT"
|
|
162081
|
+
}
|
|
162082
|
+
export declare enum MitigationHypothesisType {
|
|
162083
|
+
FfChange = "FF_CHANGE",
|
|
162084
|
+
PrChange = "PR_CHANGE",
|
|
162085
|
+
Unknown = "UNKNOWN"
|
|
162086
|
+
}
|
|
162087
|
+
export declare type MitigationIndicator = {
|
|
162088
|
+
__typename?: 'MitigationIndicator';
|
|
162089
|
+
advisorySignal?: Maybe<AdvisorySignalIndicator>;
|
|
162090
|
+
confidenceScore?: Maybe<Scalars['Float']['output']>;
|
|
162091
|
+
createdAt: Scalars['DateTime']['output'];
|
|
162092
|
+
hypothesis?: Maybe<HypothesisIndicator>;
|
|
162093
|
+
indicatorId: Scalars['ID']['output'];
|
|
162094
|
+
indicatorType: MitigationIndicatorType;
|
|
162095
|
+
mitigationId: Scalars['ID']['output'];
|
|
162096
|
+
plans: Array<MitigationPlan>;
|
|
162097
|
+
rejected: Scalars['Boolean']['output'];
|
|
162098
|
+
rejectedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
162099
|
+
rejectedByUserId?: Maybe<Scalars['ID']['output']>;
|
|
162100
|
+
rejectionReason?: Maybe<IndicatorRejectionReason>;
|
|
162101
|
+
rejectionSource?: Maybe<MitigationRejectionSource>;
|
|
162102
|
+
symptom?: Maybe<SymptomIndicator>;
|
|
162103
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
162104
|
+
};
|
|
162105
|
+
export declare type MitigationIndicatorPlansArgs = {
|
|
162106
|
+
includeRejected?: InputMaybe<Scalars['Boolean']['input']>;
|
|
162107
|
+
};
|
|
162108
|
+
export declare enum MitigationIndicatorType {
|
|
162109
|
+
AdvisorySignal = "ADVISORY_SIGNAL",
|
|
162110
|
+
Hypothesis = "HYPOTHESIS",
|
|
162111
|
+
Symptom = "SYMPTOM"
|
|
162112
|
+
}
|
|
162113
|
+
export declare enum MitigationPipelineStep {
|
|
162114
|
+
IndicatorDeduplication = "INDICATOR_DEDUPLICATION",
|
|
162115
|
+
IndicatorExtraction = "INDICATOR_EXTRACTION",
|
|
162116
|
+
PlanGeneration = "PLAN_GENERATION"
|
|
162117
|
+
}
|
|
162118
|
+
export declare type MitigationPlan = {
|
|
162119
|
+
__typename?: 'MitigationPlan';
|
|
162120
|
+
createdAt: Scalars['DateTime']['output'];
|
|
162121
|
+
indicatorId: Scalars['ID']['output'];
|
|
162122
|
+
mitigationId: Scalars['ID']['output'];
|
|
162123
|
+
planId: Scalars['ID']['output'];
|
|
162124
|
+
planSources: Array<PlanSource>;
|
|
162125
|
+
playbook?: Maybe<JiraPlaybook>;
|
|
162126
|
+
rejected: Scalars['Boolean']['output'];
|
|
162127
|
+
rejectedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
162128
|
+
rejectedByUserId?: Maybe<Scalars['ID']['output']>;
|
|
162129
|
+
rejectionReason?: Maybe<PlanRejectionReason>;
|
|
162130
|
+
rejectionSource?: Maybe<MitigationRejectionSource>;
|
|
162131
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
162132
|
+
title: Scalars['String']['output'];
|
|
162133
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
162134
|
+
};
|
|
162135
|
+
export declare type MitigationProgressStep = {
|
|
162136
|
+
__typename?: 'MitigationProgressStep';
|
|
162137
|
+
completedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
162138
|
+
failureReason?: Maybe<Scalars['String']['output']>;
|
|
162139
|
+
startedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
162140
|
+
step?: Maybe<MitigationPipelineStep>;
|
|
162141
|
+
stepStatus?: Maybe<MitigationStepStatus>;
|
|
162142
|
+
};
|
|
162143
|
+
export declare enum MitigationRejectionSource {
|
|
162144
|
+
Human = "HUMAN",
|
|
162145
|
+
System = "SYSTEM"
|
|
162146
|
+
}
|
|
162147
|
+
export declare type MitigationResult = Mitigation | QueryError;
|
|
162148
|
+
export declare enum MitigationScopeType {
|
|
162149
|
+
Icc = "ICC"
|
|
162150
|
+
}
|
|
162151
|
+
export declare enum MitigationStepStatus {
|
|
162152
|
+
Done = "DONE",
|
|
162153
|
+
Errored = "ERRORED",
|
|
162154
|
+
InProgress = "IN_PROGRESS"
|
|
162155
|
+
}
|
|
162156
|
+
export declare enum MitigationSymptomType {
|
|
162157
|
+
LinkedAlerts = "LINKED_ALERTS",
|
|
162158
|
+
RelatedAlerts = "RELATED_ALERTS"
|
|
162159
|
+
}
|
|
161261
162160
|
export declare enum MobilePlatform {
|
|
161262
162161
|
Android = "ANDROID",
|
|
161263
162162
|
Ios = "IOS"
|
|
@@ -162339,6 +163238,7 @@ export declare type Mutation = {
|
|
|
162339
163238
|
jira_removeCustomFieldTranslation?: Maybe<JiraRemoveCustomFieldTranslationPayload>;
|
|
162340
163239
|
jira_removeFieldsFromFieldScheme?: Maybe<JiraRemoveFieldsFromFieldSchemePayload>;
|
|
162341
163240
|
jira_removeIssueFromSprint?: Maybe<JiraRemoveIssueFromSprintPayload>;
|
|
163241
|
+
jira_removeLinkedAgentContextItem?: Maybe<JiraRemoveLinkedAgentContextItemPayload>;
|
|
162342
163242
|
jira_removeTimelineIssueLink?: Maybe<JiraTimelineIssueLinkOperationPayload>;
|
|
162343
163243
|
jira_renameBoardViewStatusColumn?: Maybe<JiraRenameBoardViewStatusColumnPayload>;
|
|
162344
163244
|
jira_renameProjectLevelSidebarMenuItem?: Maybe<JiraRenameProjectLevelSidebarMenuItemPayload>;
|
|
@@ -162423,6 +163323,7 @@ export declare type Mutation = {
|
|
|
162423
163323
|
jira_updateGlobalCustomField?: Maybe<JiraUpdateGlobalCustomFieldPayload>;
|
|
162424
163324
|
jira_updateIssueSearchFormattingRule?: Maybe<JiraUpdateIssueSearchFormattingRulePayload>;
|
|
162425
163325
|
jira_updateIssueType?: Maybe<JiraUpsertIssueTypePayload>;
|
|
163326
|
+
jira_updateParentAndRank?: Maybe<JiraUpdateParentAndRankPayload>;
|
|
162426
163327
|
jira_updateProjectBackground?: Maybe<JiraProjectUpdateBackgroundMutationPayload>;
|
|
162427
163328
|
jira_updateProjectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
162428
163329
|
jira_updateSchemeFieldPerWorkTypeCustomizations?: Maybe<JiraFieldWorkTypeConfigurationPayload>;
|
|
@@ -162524,6 +163425,7 @@ export declare type Mutation = {
|
|
|
162524
163425
|
mercury_funds?: Maybe<MercuryFundsMutationApi>;
|
|
162525
163426
|
mercury_insights?: Maybe<MercuryInsightsMutationApi>;
|
|
162526
163427
|
mercury_organizations?: Maybe<MercuryOrganizationsMutationApi>;
|
|
163428
|
+
mercury_plans?: Maybe<MercuryPlansMutationApi>;
|
|
162527
163429
|
mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationMutationApi>;
|
|
162528
163430
|
mercury_risks?: Maybe<MercuryRisksMutationApi>;
|
|
162529
163431
|
mercury_strategicEvents?: Maybe<MercuryStrategicEventsMutationApi>;
|
|
@@ -162551,12 +163453,15 @@ export declare type Mutation = {
|
|
|
162551
163453
|
playbook_createJiraPlaybookLabel?: Maybe<CreateJiraPlaybookLabelPayload>;
|
|
162552
163454
|
playbook_createJiraPlaybookStepRun?: Maybe<CreateJiraPlaybookStepRunPayload>;
|
|
162553
163455
|
playbook_deleteJiraPlaybook?: Maybe<DeleteJiraPlaybookPayload>;
|
|
163456
|
+
playbook_rejectIndicator?: Maybe<IndicatorRejectionPayload>;
|
|
163457
|
+
playbook_rejectPlan?: Maybe<PlanRejectionPayload>;
|
|
163458
|
+
playbook_triggerMitigation?: Maybe<TriggerMitigationPayload>;
|
|
162554
163459
|
playbook_unassignJiraPlaybookLabelFromJiraPlaybook?: Maybe<JiraPlaybookLabelAssignmentPayload>;
|
|
163460
|
+
playbook_unrejectIndicator?: Maybe<IndicatorRejectionPayload>;
|
|
163461
|
+
playbook_unrejectPlan?: Maybe<PlanRejectionPayload>;
|
|
162555
163462
|
playbook_updateJiraPlaybook?: Maybe<UpdateJiraPlaybookPayload>;
|
|
162556
163463
|
playbook_updateJiraPlaybookLabel?: Maybe<UpdateJiraPlaybookLabelPayload>;
|
|
162557
163464
|
playbook_updateJiraPlaybookState?: Maybe<UpdateJiraPlaybookStatePayload>;
|
|
162558
|
-
polarisAddReaction?: Maybe<PolarisAddReactionPayload>;
|
|
162559
|
-
polarisDeleteReaction?: Maybe<PolarisDeleteReactionPayload>;
|
|
162560
163465
|
projects_addGoalLink?: Maybe<TownsquareProjectsAddGoalLinkPayload>;
|
|
162561
163466
|
projects_addJiraWorkItemLink?: Maybe<TownsquareProjectsAddJiraWorkItemLinkPayload>;
|
|
162562
163467
|
projects_addMembers?: Maybe<TownsquareProjectsAddMembersPayload>;
|
|
@@ -163256,7 +164161,7 @@ export declare type MutationAgentWorkspace_CreateSkillArgs = {
|
|
|
163256
164161
|
input: AgentWorkspaceSkillCreateInput;
|
|
163257
164162
|
};
|
|
163258
164163
|
export declare type MutationAgentWorkspace_CreateWfoSummaryViewArgs = {
|
|
163259
|
-
|
|
164164
|
+
input: AgentWorkspaceCreateWfoSummaryViewInput;
|
|
163260
164165
|
};
|
|
163261
164166
|
export declare type MutationAgentWorkspace_DeleteScheduleArgs = {
|
|
163262
164167
|
input: AgentWorkspaceDeleteScheduleInput;
|
|
@@ -166470,6 +167375,10 @@ export declare type MutationJira_RemoveFieldsFromFieldSchemeArgs = {
|
|
|
166470
167375
|
export declare type MutationJira_RemoveIssueFromSprintArgs = {
|
|
166471
167376
|
input: JiraRemoveIssueFromSprintInput;
|
|
166472
167377
|
};
|
|
167378
|
+
export declare type MutationJira_RemoveLinkedAgentContextItemArgs = {
|
|
167379
|
+
cloudId: Scalars['ID']['input'];
|
|
167380
|
+
input: JiraRemoveLinkedAgentContextItemInput;
|
|
167381
|
+
};
|
|
166473
167382
|
export declare type MutationJira_RemoveTimelineIssueLinkArgs = {
|
|
166474
167383
|
cloudId: Scalars['ID']['input'];
|
|
166475
167384
|
input: JiraRemoveTimelineIssueLinkInput;
|
|
@@ -166740,6 +167649,9 @@ export declare type MutationJira_UpdateIssueSearchFormattingRuleArgs = {
|
|
|
166740
167649
|
export declare type MutationJira_UpdateIssueTypeArgs = {
|
|
166741
167650
|
input: JiraUpdateIssueTypeInput;
|
|
166742
167651
|
};
|
|
167652
|
+
export declare type MutationJira_UpdateParentAndRankArgs = {
|
|
167653
|
+
input: JiraUpdateParentAndRankInput;
|
|
167654
|
+
};
|
|
166743
167655
|
export declare type MutationJira_UpdateProjectBackgroundArgs = {
|
|
166744
167656
|
input: JiraUpdateBackgroundInput;
|
|
166745
167657
|
};
|
|
@@ -166887,6 +167799,7 @@ export declare type MutationKitsune_CreateFieldArgs = {
|
|
|
166887
167799
|
export declare type MutationKitsune_CreateInsightArgs = {
|
|
166888
167800
|
content?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
166889
167801
|
externalId?: InputMaybe<Scalars['ID']['input']>;
|
|
167802
|
+
ideaIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
166890
167803
|
snippets?: InputMaybe<Array<InputMaybe<KitsuneSnippetInput>>>;
|
|
166891
167804
|
spaceAri: Scalars['ID']['input'];
|
|
166892
167805
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -167028,6 +167941,7 @@ export declare type MutationKitsune_UpdateInsightArgs = {
|
|
|
167028
167941
|
content?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
167029
167942
|
externalId?: InputMaybe<Scalars['ID']['input']>;
|
|
167030
167943
|
id: Scalars['ID']['input'];
|
|
167944
|
+
ideaIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
167031
167945
|
summaryContent?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
167032
167946
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
167033
167947
|
};
|
|
@@ -167188,10 +168102,25 @@ export declare type MutationPlaybook_CreateJiraPlaybookStepRunArgs = {
|
|
|
167188
168102
|
export declare type MutationPlaybook_DeleteJiraPlaybookArgs = {
|
|
167189
168103
|
input: DeleteJiraPlaybookInput;
|
|
167190
168104
|
};
|
|
168105
|
+
export declare type MutationPlaybook_RejectIndicatorArgs = {
|
|
168106
|
+
input: RejectIndicatorInput;
|
|
168107
|
+
};
|
|
168108
|
+
export declare type MutationPlaybook_RejectPlanArgs = {
|
|
168109
|
+
input: RejectPlanInput;
|
|
168110
|
+
};
|
|
168111
|
+
export declare type MutationPlaybook_TriggerMitigationArgs = {
|
|
168112
|
+
input: TriggerMitigationInput;
|
|
168113
|
+
};
|
|
167191
168114
|
export declare type MutationPlaybook_UnassignJiraPlaybookLabelFromJiraPlaybookArgs = {
|
|
167192
168115
|
labelId: Scalars['ID']['input'];
|
|
167193
168116
|
playbookId: Scalars['ID']['input'];
|
|
167194
168117
|
};
|
|
168118
|
+
export declare type MutationPlaybook_UnrejectIndicatorArgs = {
|
|
168119
|
+
input: UnrejectIndicatorInput;
|
|
168120
|
+
};
|
|
168121
|
+
export declare type MutationPlaybook_UnrejectPlanArgs = {
|
|
168122
|
+
input: UnrejectPlanInput;
|
|
168123
|
+
};
|
|
167195
168124
|
export declare type MutationPlaybook_UpdateJiraPlaybookArgs = {
|
|
167196
168125
|
input: UpdateJiraPlaybookInput;
|
|
167197
168126
|
};
|
|
@@ -167201,12 +168130,6 @@ export declare type MutationPlaybook_UpdateJiraPlaybookLabelArgs = {
|
|
|
167201
168130
|
export declare type MutationPlaybook_UpdateJiraPlaybookStateArgs = {
|
|
167202
168131
|
input: UpdateJiraPlaybookStateInput;
|
|
167203
168132
|
};
|
|
167204
|
-
export declare type MutationPolarisAddReactionArgs = {
|
|
167205
|
-
input: PolarisAddReactionInput;
|
|
167206
|
-
};
|
|
167207
|
-
export declare type MutationPolarisDeleteReactionArgs = {
|
|
167208
|
-
input: PolarisDeleteReactionInput;
|
|
167209
|
-
};
|
|
167210
168133
|
export declare type MutationProjects_AddGoalLinkArgs = {
|
|
167211
168134
|
input: TownsquareProjectsAddGoalLink;
|
|
167212
168135
|
};
|
|
@@ -168398,6 +169321,7 @@ export declare type MyActivityWorkedOnArgs = {
|
|
|
168398
169321
|
};
|
|
168399
169322
|
export declare type MyActivityFilter = {
|
|
168400
169323
|
arguments?: InputMaybe<ActivityFilterArgs>;
|
|
169324
|
+
collabContextId?: InputMaybe<Scalars['ID']['input']>;
|
|
168401
169325
|
rootContainerIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
168402
169326
|
type?: InputMaybe<ActivitiesFilterType>;
|
|
168403
169327
|
};
|
|
@@ -170102,6 +171026,10 @@ export declare type PersonEdge = {
|
|
|
170102
171026
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
170103
171027
|
node?: Maybe<Person>;
|
|
170104
171028
|
};
|
|
171029
|
+
export declare enum PlanAccessFilter {
|
|
171030
|
+
Private = "PRIVATE",
|
|
171031
|
+
Public = "PUBLIC"
|
|
171032
|
+
}
|
|
170105
171033
|
export declare type PlanModeCardCreateInput = {
|
|
170106
171034
|
boardId: Scalars['ID']['input'];
|
|
170107
171035
|
destination: PlanModeDestination;
|
|
@@ -170122,6 +171050,28 @@ export declare enum PlanModeDestination {
|
|
|
170122
171050
|
Board = "BOARD",
|
|
170123
171051
|
Sprint = "SPRINT"
|
|
170124
171052
|
}
|
|
171053
|
+
export declare type PlanRejectionPayload = Payload & {
|
|
171054
|
+
__typename?: 'PlanRejectionPayload';
|
|
171055
|
+
errors?: Maybe<Array<MutationError>>;
|
|
171056
|
+
plan?: Maybe<MitigationPlan>;
|
|
171057
|
+
success: Scalars['Boolean']['output'];
|
|
171058
|
+
};
|
|
171059
|
+
export declare enum PlanRejectionReason {
|
|
171060
|
+
Incorrect = "INCORRECT",
|
|
171061
|
+
LowScore = "LOW_SCORE",
|
|
171062
|
+
NotHelpful = "NOT_HELPFUL",
|
|
171063
|
+
Other = "OTHER",
|
|
171064
|
+
Outdated = "OUTDATED"
|
|
171065
|
+
}
|
|
171066
|
+
export declare type PlanSource = {
|
|
171067
|
+
__typename?: 'PlanSource';
|
|
171068
|
+
documentType: MitigationDocumentType;
|
|
171069
|
+
rerankerScore?: Maybe<Scalars['Float']['output']>;
|
|
171070
|
+
retrievedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
171071
|
+
sourceId: Scalars['ID']['output'];
|
|
171072
|
+
title: Scalars['String']['output'];
|
|
171073
|
+
url: Scalars['String']['output'];
|
|
171074
|
+
};
|
|
170125
171075
|
export declare enum Platform {
|
|
170126
171076
|
Android = "ANDROID",
|
|
170127
171077
|
Ios = "IOS",
|
|
@@ -170212,18 +171162,6 @@ export declare type PokemonTrainersQueryGetByIdArgs = {
|
|
|
170212
171162
|
export declare type PokemonTrainersQueryGetByIdsArgs = {
|
|
170213
171163
|
ids?: InputMaybe<Array<InputMaybe<SkyBridgeIdInput>>>;
|
|
170214
171164
|
};
|
|
170215
|
-
export declare type PolarisAddReactionInput = {
|
|
170216
|
-
ari: Scalars['String']['input'];
|
|
170217
|
-
containerAri: Scalars['String']['input'];
|
|
170218
|
-
emojiId: Scalars['String']['input'];
|
|
170219
|
-
metadata?: InputMaybe<Scalars['JSON']['input']>;
|
|
170220
|
-
};
|
|
170221
|
-
export declare type PolarisAddReactionPayload = Payload & {
|
|
170222
|
-
__typename?: 'PolarisAddReactionPayload';
|
|
170223
|
-
errors?: Maybe<Array<MutationError>>;
|
|
170224
|
-
node: Array<PolarisReactionSummary>;
|
|
170225
|
-
success: Scalars['Boolean']['output'];
|
|
170226
|
-
};
|
|
170227
171165
|
export declare enum PolarisColorStyle {
|
|
170228
171166
|
Background = "BACKGROUND",
|
|
170229
171167
|
Highlight = "HIGHLIGHT"
|
|
@@ -170270,18 +171208,6 @@ export declare type PolarisDelegationToken = {
|
|
|
170270
171208
|
token: Scalars['String']['output'];
|
|
170271
171209
|
url: Scalars['String']['output'];
|
|
170272
171210
|
};
|
|
170273
|
-
export declare type PolarisDeleteReactionInput = {
|
|
170274
|
-
ari: Scalars['String']['input'];
|
|
170275
|
-
containerAri: Scalars['String']['input'];
|
|
170276
|
-
emojiId: Scalars['String']['input'];
|
|
170277
|
-
metadata?: InputMaybe<Scalars['JSON']['input']>;
|
|
170278
|
-
};
|
|
170279
|
-
export declare type PolarisDeleteReactionPayload = Payload & {
|
|
170280
|
-
__typename?: 'PolarisDeleteReactionPayload';
|
|
170281
|
-
errors?: Maybe<Array<MutationError>>;
|
|
170282
|
-
node: Array<PolarisReactionSummary>;
|
|
170283
|
-
success: Scalars['Boolean']['output'];
|
|
170284
|
-
};
|
|
170285
171211
|
export declare enum PolarisFilterEnumType {
|
|
170286
171212
|
BoardColumn = "BOARD_COLUMN",
|
|
170287
171213
|
ViewGroup = "VIEW_GROUP"
|
|
@@ -170289,15 +171215,6 @@ export declare enum PolarisFilterEnumType {
|
|
|
170289
171215
|
export declare type PolarisFilterInput = {
|
|
170290
171216
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
170291
171217
|
};
|
|
170292
|
-
export declare type PolarisGetDetailedReactionInput = {
|
|
170293
|
-
ari: Scalars['String']['input'];
|
|
170294
|
-
containerAri: Scalars['String']['input'];
|
|
170295
|
-
emojiId: Scalars['String']['input'];
|
|
170296
|
-
};
|
|
170297
|
-
export declare type PolarisGetReactionsInput = {
|
|
170298
|
-
aris?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
170299
|
-
containerAri: Scalars['String']['input'];
|
|
170300
|
-
};
|
|
170301
171218
|
export declare type PolarisGroupValue = {
|
|
170302
171219
|
__typename?: 'PolarisGroupValue';
|
|
170303
171220
|
id?: Maybe<Scalars['String']['output']>;
|
|
@@ -170466,25 +171383,6 @@ export declare type PolarisQueryNamespace = {
|
|
|
170466
171383
|
__typename?: 'PolarisQueryNamespace';
|
|
170467
171384
|
insights?: Maybe<PolarisInsightsQueryNamespace>;
|
|
170468
171385
|
};
|
|
170469
|
-
export declare type PolarisReaction = {
|
|
170470
|
-
__typename?: 'PolarisReaction';
|
|
170471
|
-
key: Scalars['String']['output'];
|
|
170472
|
-
value: Array<PolarisReactionSummary>;
|
|
170473
|
-
};
|
|
170474
|
-
export declare type PolarisReactionSummary = {
|
|
170475
|
-
__typename?: 'PolarisReactionSummary';
|
|
170476
|
-
ari: Scalars['String']['output'];
|
|
170477
|
-
containerAri: Scalars['String']['output'];
|
|
170478
|
-
count: Scalars['Int']['output'];
|
|
170479
|
-
emojiId: Scalars['String']['output'];
|
|
170480
|
-
reacted: Scalars['Boolean']['output'];
|
|
170481
|
-
users?: Maybe<Array<PolarisReactionUser>>;
|
|
170482
|
-
};
|
|
170483
|
-
export declare type PolarisReactionUser = {
|
|
170484
|
-
__typename?: 'PolarisReactionUser';
|
|
170485
|
-
displayName: Scalars['String']['output'];
|
|
170486
|
-
id: Scalars['String']['output'];
|
|
170487
|
-
};
|
|
170488
171386
|
export declare enum PolarisRefreshError {
|
|
170489
171387
|
InternalError = "INTERNAL_ERROR",
|
|
170490
171388
|
InvalidSnippet = "INVALID_SNIPPET",
|
|
@@ -172082,6 +172980,7 @@ export declare type Query = {
|
|
|
172082
172980
|
confluence_validateConvertPageToMarkdownMode?: Maybe<ConfluenceValidateConvertPageToMarkdownModeResult>;
|
|
172083
172981
|
confluence_watermarkConfig?: Maybe<ConfluenceWatermarkConfig>;
|
|
172084
172982
|
confluence_whiteboardTemplates?: Maybe<PaginatedConfluenceWhiteboardTemplateInfoList>;
|
|
172983
|
+
confluence_workflowApplicationHistory?: Maybe<ConfluenceWorkflowApplicationHistoryConnection>;
|
|
172085
172984
|
connectionManager_connectionsByJiraProject?: Maybe<ConnectionManagerConnectionsByJiraProjectResult>;
|
|
172086
172985
|
contactAdminPageConfig?: Maybe<ContactAdminPageConfig>;
|
|
172087
172986
|
content?: Maybe<PaginatedContentListWithChild>;
|
|
@@ -172317,6 +173216,7 @@ export declare type Query = {
|
|
|
172317
173216
|
goals_byIds?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
172318
173217
|
goals_byKey?: Maybe<TownsquareGoal>;
|
|
172319
173218
|
goals_capabilities?: Maybe<TownsquareGoalAppCapabilities>;
|
|
173219
|
+
goals_directoryViewById?: Maybe<TownsquareDirectoryView>;
|
|
172320
173220
|
goals_explainSearch?: Maybe<TownsquareSearchExplanation>;
|
|
172321
173221
|
goals_fullHierarchySearch?: Maybe<TownsquareGoalConnection>;
|
|
172322
173222
|
goals_goalStatuses?: Maybe<Array<TownsquareStatus>>;
|
|
@@ -172327,6 +173227,7 @@ export declare type Query = {
|
|
|
172327
173227
|
goals_metricTargetsByIds?: Maybe<Array<Maybe<TownsquareMetricTarget>>>;
|
|
172328
173228
|
goals_metricValuesByIds?: Maybe<Array<Maybe<TownsquareMetricValue>>>;
|
|
172329
173229
|
goals_metricsByIds?: Maybe<Array<Maybe<TownsquareMetric>>>;
|
|
173230
|
+
goals_msTeamsTenants?: Maybe<Array<Maybe<TownsquareMsTeamsTenant>>>;
|
|
172330
173231
|
goals_search?: Maybe<TownsquareGoalConnection>;
|
|
172331
173232
|
goals_slackChannels?: Maybe<TownsquareSlackChannelConnection>;
|
|
172332
173233
|
goals_slackTeams?: Maybe<Array<Maybe<TownsquareSlackTeam>>>;
|
|
@@ -173601,6 +174502,8 @@ export declare type Query = {
|
|
|
173601
174502
|
graphStore_focusAreaHasWatcherBatch?: Maybe<GraphStoreBatchFocusAreaHasWatcherConnection>;
|
|
173602
174503
|
graphStore_focusAreaHasWatcherInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasWatcherInverseConnection>;
|
|
173603
174504
|
graphStore_focusAreaHasWatcherInverseBatch?: Maybe<GraphStoreBatchFocusAreaHasWatcherConnection>;
|
|
174505
|
+
graphStore_getDynamicNodeTypes?: Maybe<GraphStoreDynamicNodeTypeConnection>;
|
|
174506
|
+
graphStore_getDynamicRelationshipTypes?: Maybe<GraphStoreDynamicRelationshipTypeConnection>;
|
|
173604
174507
|
graphStore_graphDocument3pDocumentInverse?: Maybe<GraphStoreSimplifiedGraphDocument3pDocumentInverseConnection>;
|
|
173605
174508
|
graphStore_graphDocumentReplicates3pDocumentGoogleDriveDocumentInverse?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveDocumentInverseConnection>;
|
|
173606
174509
|
graphStore_graphDocumentReplicates3pDocumentGoogleDriveOtherInverse?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveOtherInverseConnection>;
|
|
@@ -174466,6 +175369,7 @@ export declare type Query = {
|
|
|
174466
175369
|
jiraServers?: Maybe<JiraServersResult>;
|
|
174467
175370
|
jira_agentContextSources?: Maybe<JiraAgentContextItemConnection>;
|
|
174468
175371
|
jira_agentSessionsIsPlanModeEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
175372
|
+
jira_availableStatuses?: Maybe<JiraStatusConnection>;
|
|
174469
175373
|
jira_backlog?: Maybe<JiraBacklog>;
|
|
174470
175374
|
jira_backlogView?: Maybe<JiraBacklogView>;
|
|
174471
175375
|
jira_backlogViewCardListsByIds?: Maybe<Array<JiraBacklogViewCardList>>;
|
|
@@ -174652,6 +175556,7 @@ export declare type Query = {
|
|
|
174652
175556
|
mercury_jiraProvider?: Maybe<MercuryJiraProviderQueryApi>;
|
|
174653
175557
|
mercury_normalizedWork?: Maybe<MercuryWorkNormalizationQueryApi>;
|
|
174654
175558
|
mercury_organizations?: Maybe<MercuryOrganizationsQueryApi>;
|
|
175559
|
+
mercury_plans?: Maybe<MercuryPlansQueryApi>;
|
|
174655
175560
|
mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationQueryApi>;
|
|
174656
175561
|
mercury_risks?: Maybe<MercuryRisksQueryApi>;
|
|
174657
175562
|
mercury_strategicEvents?: Maybe<MercuryStrategicEventsQueryApi>;
|
|
@@ -174700,14 +175605,14 @@ export declare type Query = {
|
|
|
174700
175605
|
playbook_jiraPlaybookTemplate?: Maybe<JiraPlaybookTemplateQueryPayload>;
|
|
174701
175606
|
playbook_jiraPlaybookTemplateCategories?: Maybe<JiraPlaybookTemplateCategoryQueryPayload>;
|
|
174702
175607
|
playbook_jiraPlaybooksForProject?: Maybe<JiraPlaybookConnection>;
|
|
175608
|
+
playbook_mitigationById?: Maybe<MitigationResult>;
|
|
175609
|
+
playbook_mitigationByScope?: Maybe<MitigationResult>;
|
|
174703
175610
|
pokemon?: Maybe<PokemonQuery>;
|
|
174704
175611
|
pokemonTrainers?: Maybe<PokemonTrainersQuery>;
|
|
174705
175612
|
polaris?: Maybe<PolarisQueryNamespace>;
|
|
174706
175613
|
polarisCollabToken?: Maybe<PolarisDelegationToken>;
|
|
174707
175614
|
polarisCommentByCommentARI?: Maybe<PolarisComment>;
|
|
174708
|
-
polarisGetDetailedReaction?: Maybe<PolarisReactionSummary>;
|
|
174709
175615
|
polarisGetEarliestOnboardedProjectForCloudId?: Maybe<EarliestOnboardedProjectForCloudId>;
|
|
174710
|
-
polarisGetReactions?: Maybe<Array<Maybe<PolarisReaction>>>;
|
|
174711
175616
|
polarisIdeaTemplates?: Maybe<Array<PolarisIdeaTemplate>>;
|
|
174712
175617
|
polarisInsight?: Maybe<PolarisInsight>;
|
|
174713
175618
|
polarisInsights?: Maybe<Array<PolarisInsight>>;
|
|
@@ -174738,8 +175643,10 @@ export declare type Query = {
|
|
|
174738
175643
|
projects_canCreateProjectFusion?: Maybe<TownsquareProjectsCanCreateProjectFusionPayload>;
|
|
174739
175644
|
projects_capabilities?: Maybe<TownsquareProjectAppCapabilities>;
|
|
174740
175645
|
projects_customFieldDefinitionSearch?: Maybe<TownsquareCustomFieldDefinitionConnection>;
|
|
175646
|
+
projects_directoryViewById?: Maybe<TownsquareDirectoryView>;
|
|
174741
175647
|
projects_explainSearch?: Maybe<TownsquareSearchExplanation>;
|
|
174742
175648
|
projects_linksByIds?: Maybe<Array<Maybe<TownsquareLink>>>;
|
|
175649
|
+
projects_msTeamsTenants?: Maybe<Array<Maybe<TownsquareMsTeamsTenant>>>;
|
|
174743
175650
|
projects_search?: Maybe<TownsquareProjectConnection>;
|
|
174744
175651
|
projects_searchJiraWorkItemsToLink?: Maybe<TownsquareJiraWorkItemConnection>;
|
|
174745
175652
|
projects_slackChannels?: Maybe<TownsquareSlackChannelConnection>;
|
|
@@ -175892,7 +176799,7 @@ export declare type QueryAgentWorkspace_UtilizationForPendingChangesArgs = {
|
|
|
175892
176799
|
input: AgentWorkspaceUtilizationForPendingChangesInput;
|
|
175893
176800
|
};
|
|
175894
176801
|
export declare type QueryAgentWorkspace_WfoSummaryViewArgs = {
|
|
175895
|
-
|
|
176802
|
+
input: AgentWorkspaceWfoSummaryViewQueryInput;
|
|
175896
176803
|
};
|
|
175897
176804
|
export declare type QueryAgentWorkspace_WorkloadJqlConfigArgs = {
|
|
175898
176805
|
projectAri: Scalars['ID']['input'];
|
|
@@ -175993,6 +176900,7 @@ export declare type QueryAiops_LatestInvestigationByEntityTypeIdArgs = {
|
|
|
175993
176900
|
export declare type QueryAiops_ServiceActivityTimelineArgs = {
|
|
175994
176901
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
175995
176902
|
cloudId: Scalars['ID']['input'];
|
|
176903
|
+
entityTypes?: InputMaybe<Array<AiOpsActivityEntityType>>;
|
|
175996
176904
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
175997
176905
|
serviceName: Scalars['String']['input'];
|
|
175998
176906
|
windowEnd: Scalars['DateTime']['input'];
|
|
@@ -178001,6 +178909,13 @@ export declare type QueryConfluence_WatermarkConfigArgs = {
|
|
|
178001
178909
|
export declare type QueryConfluence_WhiteboardTemplatesArgs = {
|
|
178002
178910
|
cloudId: Scalars['ID']['input'];
|
|
178003
178911
|
};
|
|
178912
|
+
export declare type QueryConfluence_WorkflowApplicationHistoryArgs = {
|
|
178913
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
178914
|
+
cloudId: Scalars['ID']['input'];
|
|
178915
|
+
contentId: Scalars['ID']['input'];
|
|
178916
|
+
contentStatuses: Array<InputMaybe<GraphQlContentStatus>>;
|
|
178917
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
178918
|
+
};
|
|
178004
178919
|
export declare type QueryConnectionManager_ConnectionsByJiraProjectArgs = {
|
|
178005
178920
|
filter?: InputMaybe<ConnectionManagerConnectionsFilter>;
|
|
178006
178921
|
jiraProjectARI?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -179060,6 +179975,10 @@ export declare type QueryGoals_ByKeyArgs = {
|
|
|
179060
179975
|
export declare type QueryGoals_CapabilitiesArgs = {
|
|
179061
179976
|
containerId: Scalars['ID']['input'];
|
|
179062
179977
|
};
|
|
179978
|
+
export declare type QueryGoals_DirectoryViewByIdArgs = {
|
|
179979
|
+
containerId: Scalars['ID']['input'];
|
|
179980
|
+
directoryId: Scalars['ID']['input'];
|
|
179981
|
+
};
|
|
179063
179982
|
export declare type QueryGoals_ExplainSearchArgs = {
|
|
179064
179983
|
containerId: Scalars['ID']['input'];
|
|
179065
179984
|
directoryViewId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -179105,6 +180024,9 @@ export declare type QueryGoals_MetricValuesByIdsArgs = {
|
|
|
179105
180024
|
export declare type QueryGoals_MetricsByIdsArgs = {
|
|
179106
180025
|
metricIds: Array<Scalars['ID']['input']>;
|
|
179107
180026
|
};
|
|
180027
|
+
export declare type QueryGoals_MsTeamsTenantsArgs = {
|
|
180028
|
+
goalId: Scalars['ID']['input'];
|
|
180029
|
+
};
|
|
179108
180030
|
export declare type QueryGoals_SearchArgs = {
|
|
179109
180031
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
179110
180032
|
containerId: Scalars['ID']['input'];
|
|
@@ -188318,6 +189240,16 @@ export declare type QueryGraphStore_FocusAreaHasWatcherInverseBatchArgs = {
|
|
|
188318
189240
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
188319
189241
|
sort?: InputMaybe<GraphStoreFocusAreaHasWatcherSortInput>;
|
|
188320
189242
|
};
|
|
189243
|
+
export declare type QueryGraphStore_GetDynamicNodeTypesArgs = {
|
|
189244
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
189245
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
189246
|
+
workspaceAri: Scalars['ID']['input'];
|
|
189247
|
+
};
|
|
189248
|
+
export declare type QueryGraphStore_GetDynamicRelationshipTypesArgs = {
|
|
189249
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
189250
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
189251
|
+
workspaceAri: Scalars['ID']['input'];
|
|
189252
|
+
};
|
|
188321
189253
|
export declare type QueryGraphStore_GraphDocument3pDocumentInverseArgs = {
|
|
188322
189254
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
188323
189255
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -194707,6 +195639,14 @@ export declare type QueryJira_AgentContextSourcesArgs = {
|
|
|
194707
195639
|
export declare type QueryJira_AgentSessionsIsPlanModeEnabledArgs = {
|
|
194708
195640
|
cloudId: Scalars['ID']['input'];
|
|
194709
195641
|
};
|
|
195642
|
+
export declare type QueryJira_AvailableStatusesArgs = {
|
|
195643
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
195644
|
+
category?: InputMaybe<JiraStatusCategoryFilter>;
|
|
195645
|
+
cloudId: Scalars['ID']['input'];
|
|
195646
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
195647
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
195648
|
+
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
195649
|
+
};
|
|
194710
195650
|
export declare type QueryJira_BacklogArgs = {
|
|
194711
195651
|
activeQuickFilters?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
194712
195652
|
boardId: Scalars['ID']['input'];
|
|
@@ -195055,6 +195995,7 @@ export declare type QueryKitsune_InsightsByIdeaArgs = {
|
|
|
195055
195995
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
195056
195996
|
ideaAri: Scalars['ID']['input'];
|
|
195057
195997
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
195998
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
195058
195999
|
};
|
|
195059
196000
|
export declare type QueryKitsune_JobsArgs = {
|
|
195060
196001
|
ids: Array<Scalars['ID']['input']>;
|
|
@@ -195536,21 +196477,24 @@ export declare type QueryPlaybook_JiraPlaybooksForProjectArgs = {
|
|
|
195536
196477
|
projectKey: Scalars['String']['input'];
|
|
195537
196478
|
sort?: InputMaybe<Array<JiraPlaybooksSortInput>>;
|
|
195538
196479
|
};
|
|
196480
|
+
export declare type QueryPlaybook_MitigationByIdArgs = {
|
|
196481
|
+
cloudId: Scalars['ID']['input'];
|
|
196482
|
+
mitigationId: Scalars['ID']['input'];
|
|
196483
|
+
};
|
|
196484
|
+
export declare type QueryPlaybook_MitigationByScopeArgs = {
|
|
196485
|
+
cloudId: Scalars['ID']['input'];
|
|
196486
|
+
scopeId: Scalars['ID']['input'];
|
|
196487
|
+
scopeType: MitigationScopeType;
|
|
196488
|
+
};
|
|
195539
196489
|
export declare type QueryPolarisCollabTokenArgs = {
|
|
195540
196490
|
viewID: Scalars['ID']['input'];
|
|
195541
196491
|
};
|
|
195542
196492
|
export declare type QueryPolarisCommentByCommentAriArgs = {
|
|
195543
196493
|
commentAri: Scalars['ID']['input'];
|
|
195544
196494
|
};
|
|
195545
|
-
export declare type QueryPolarisGetDetailedReactionArgs = {
|
|
195546
|
-
input: PolarisGetDetailedReactionInput;
|
|
195547
|
-
};
|
|
195548
196495
|
export declare type QueryPolarisGetEarliestOnboardedProjectForCloudIdArgs = {
|
|
195549
196496
|
id: Scalars['ID']['input'];
|
|
195550
196497
|
};
|
|
195551
|
-
export declare type QueryPolarisGetReactionsArgs = {
|
|
195552
|
-
input: PolarisGetReactionsInput;
|
|
195553
|
-
};
|
|
195554
196498
|
export declare type QueryPolarisIdeaTemplatesArgs = {
|
|
195555
196499
|
project: Scalars['ID']['input'];
|
|
195556
196500
|
};
|
|
@@ -195675,6 +196619,10 @@ export declare type QueryProjects_CustomFieldDefinitionSearchArgs = {
|
|
|
195675
196619
|
sort?: InputMaybe<Array<InputMaybe<TownsquareCustomFieldSortEnum>>>;
|
|
195676
196620
|
workspaceUuid?: InputMaybe<Scalars['UUID']['input']>;
|
|
195677
196621
|
};
|
|
196622
|
+
export declare type QueryProjects_DirectoryViewByIdArgs = {
|
|
196623
|
+
containerId: Scalars['ID']['input'];
|
|
196624
|
+
directoryId: Scalars['ID']['input'];
|
|
196625
|
+
};
|
|
195678
196626
|
export declare type QueryProjects_ExplainSearchArgs = {
|
|
195679
196627
|
containerId: Scalars['ID']['input'];
|
|
195680
196628
|
directoryViewId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -195683,6 +196631,9 @@ export declare type QueryProjects_ExplainSearchArgs = {
|
|
|
195683
196631
|
export declare type QueryProjects_LinksByIdsArgs = {
|
|
195684
196632
|
linkIds: Array<Scalars['ID']['input']>;
|
|
195685
196633
|
};
|
|
196634
|
+
export declare type QueryProjects_MsTeamsTenantsArgs = {
|
|
196635
|
+
projectId: Scalars['ID']['input'];
|
|
196636
|
+
};
|
|
195686
196637
|
export declare type QueryProjects_SearchArgs = {
|
|
195687
196638
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
195688
196639
|
containerId: Scalars['String']['input'];
|
|
@@ -196976,6 +197927,7 @@ export declare type RadarConnector = {
|
|
|
196976
197927
|
type?: Maybe<RadarConnectorType>;
|
|
196977
197928
|
};
|
|
196978
197929
|
export declare enum RadarConnectorType {
|
|
197930
|
+
Ai = "AI",
|
|
196979
197931
|
Csv = "CSV",
|
|
196980
197932
|
HrisS3 = "HRIS_S3",
|
|
196981
197933
|
Workday = "WORKDAY"
|
|
@@ -197302,6 +198254,11 @@ export declare type RadarLongFieldValue = {
|
|
|
197302
198254
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
197303
198255
|
value?: Maybe<Scalars['Long']['output']>;
|
|
197304
198256
|
};
|
|
198257
|
+
export declare enum RadarMetricScopeType {
|
|
198258
|
+
All = "ALL",
|
|
198259
|
+
FocusArea = "FOCUS_AREA",
|
|
198260
|
+
ReportingLine = "REPORTING_LINE"
|
|
198261
|
+
}
|
|
197305
198262
|
export declare type RadarMetricSettings = {
|
|
197306
198263
|
__typename?: 'RadarMetricSettings';
|
|
197307
198264
|
id: Scalars['ID']['output'];
|
|
@@ -197312,7 +198269,6 @@ export declare type RadarMetricSettings = {
|
|
|
197312
198269
|
export declare type RadarMetricSettingsInput = {
|
|
197313
198270
|
metricKey: RadarOrgMetric;
|
|
197314
198271
|
metricType: RadarMetricType;
|
|
197315
|
-
orgId: Scalars['ID']['input'];
|
|
197316
198272
|
values?: InputMaybe<Array<RadarMetricValueInput>>;
|
|
197317
198273
|
};
|
|
197318
198274
|
export declare enum RadarMetricType {
|
|
@@ -197324,11 +198280,15 @@ export declare type RadarMetricValue = {
|
|
|
197324
198280
|
__typename?: 'RadarMetricValue';
|
|
197325
198281
|
dimensionName: Scalars['String']['output'];
|
|
197326
198282
|
id: Scalars['ID']['output'];
|
|
198283
|
+
scopeId: Scalars['String']['output'];
|
|
198284
|
+
scopeType: RadarMetricScopeType;
|
|
197327
198285
|
target: Scalars['Float']['output'];
|
|
197328
198286
|
tolerance?: Maybe<Scalars['Float']['output']>;
|
|
197329
198287
|
};
|
|
197330
198288
|
export declare type RadarMetricValueInput = {
|
|
197331
198289
|
dimensionName: Scalars['String']['input'];
|
|
198290
|
+
scopeId: Scalars['String']['input'];
|
|
198291
|
+
scopeType: RadarMetricScopeType;
|
|
197332
198292
|
target: Scalars['Float']['input'];
|
|
197333
198293
|
tolerance?: InputMaybe<Scalars['Float']['input']>;
|
|
197334
198294
|
};
|
|
@@ -197816,6 +198776,12 @@ export declare type RateLimitPolicyProperty = {
|
|
|
197816
198776
|
argumentPath: Scalars['String']['input'];
|
|
197817
198777
|
useCloudIdFromARI?: Scalars['Boolean']['input'];
|
|
197818
198778
|
};
|
|
198779
|
+
export declare type RateLimitProperties = {
|
|
198780
|
+
__typename?: 'RateLimitProperties';
|
|
198781
|
+
rateLimitRemaining?: Maybe<Scalars['Int']['output']>;
|
|
198782
|
+
rateLimitReset?: Maybe<Scalars['Int']['output']>;
|
|
198783
|
+
rateLimitValue?: Maybe<Scalars['Int']['output']>;
|
|
198784
|
+
};
|
|
197819
198785
|
export declare enum RateLimitingCurrency {
|
|
197820
198786
|
CannedResponseMutationCurrency = "CANNED_RESPONSE_MUTATION_CURRENCY",
|
|
197821
198787
|
CannedResponseQueryCurrency = "CANNED_RESPONSE_QUERY_CURRENCY",
|
|
@@ -198048,6 +199014,16 @@ export declare type RegisterTunnelResponse = Payload & {
|
|
|
198048
199014
|
tunnelToken?: Maybe<Scalars['String']['output']>;
|
|
198049
199015
|
tunnelUrl?: Maybe<Scalars['String']['output']>;
|
|
198050
199016
|
};
|
|
199017
|
+
export declare type RejectIndicatorInput = {
|
|
199018
|
+
cloudId: Scalars['ID']['input'];
|
|
199019
|
+
indicatorId: Scalars['ID']['input'];
|
|
199020
|
+
reason: IndicatorRejectionReason;
|
|
199021
|
+
};
|
|
199022
|
+
export declare type RejectPlanInput = {
|
|
199023
|
+
cloudId: Scalars['ID']['input'];
|
|
199024
|
+
planId: Scalars['ID']['input'];
|
|
199025
|
+
reason: PlanRejectionReason;
|
|
199026
|
+
};
|
|
198051
199027
|
export declare enum RelationSourceType {
|
|
198052
199028
|
User = "user"
|
|
198053
199029
|
}
|
|
@@ -200191,6 +201167,7 @@ export declare type SearchQueryApiAsyncSearchArgs = {
|
|
|
200191
201167
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
200192
201168
|
matchingLayerExperimentsMetadata?: InputMaybe<SearchMatchingLayerExperimentsMetadata>;
|
|
200193
201169
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
201170
|
+
searchToolContext?: InputMaybe<SearchToolContext>;
|
|
200194
201171
|
sort?: InputMaybe<Array<InputMaybe<SearchSortInput>>>;
|
|
200195
201172
|
};
|
|
200196
201173
|
export declare type SearchQueryApiConfigurationArgs = {
|
|
@@ -200222,6 +201199,7 @@ export declare type SearchQueryApiSearchArgs = {
|
|
|
200222
201199
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
200223
201200
|
matchingLayerExperimentsMetadata?: InputMaybe<SearchMatchingLayerExperimentsMetadata>;
|
|
200224
201201
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
201202
|
+
searchToolContext?: InputMaybe<SearchToolContext>;
|
|
200225
201203
|
sort?: InputMaybe<Array<InputMaybe<SearchSortInput>>>;
|
|
200226
201204
|
};
|
|
200227
201205
|
export declare type SearchQueryInfo = {
|
|
@@ -200815,6 +201793,7 @@ export declare type SearchResultMercuryRisk = SearchResult & {
|
|
|
200815
201793
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
200816
201794
|
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
200817
201795
|
ownerAri: Scalars['ID']['output'];
|
|
201796
|
+
risk?: Maybe<MercuryRisk>;
|
|
200818
201797
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
200819
201798
|
status: Scalars['String']['output'];
|
|
200820
201799
|
submitterAri: Scalars['ID']['output'];
|
|
@@ -201112,6 +202091,9 @@ export declare type SearchTimeseriesCount = {
|
|
|
201112
202091
|
__typename?: 'SearchTimeseriesCount';
|
|
201113
202092
|
nodes: Array<TimeseriesCountItem>;
|
|
201114
202093
|
};
|
|
202094
|
+
export declare type SearchToolContext = {
|
|
202095
|
+
isSynthetic?: InputMaybe<Scalars['Boolean']['input']>;
|
|
202096
|
+
};
|
|
201115
202097
|
export declare type SearchTrelloFilter = {
|
|
201116
202098
|
isRecentBias?: InputMaybe<Scalars['Boolean']['input']>;
|
|
201117
202099
|
};
|
|
@@ -220413,6 +221395,10 @@ export declare type SmartUserFeatures = {
|
|
|
220413
221395
|
recommendedPeople?: Maybe<Array<Maybe<RecommendedPeopleItem>>>;
|
|
220414
221396
|
recommendedSpaces?: Maybe<Array<Maybe<RecommendedSpaceItem>>>;
|
|
220415
221397
|
};
|
|
221398
|
+
export declare type SmartsCollaborator = {
|
|
221399
|
+
__typename?: 'SmartsCollaborator';
|
|
221400
|
+
userId: Scalars['ID']['output'];
|
|
221401
|
+
};
|
|
220416
221402
|
export declare type SmartsConfluenceContext = {
|
|
220417
221403
|
__typename?: 'SmartsConfluenceContext';
|
|
220418
221404
|
id: Scalars['ID']['output'];
|
|
@@ -220421,6 +221407,7 @@ export declare type SmartsConfluenceContext = {
|
|
|
220421
221407
|
export declare type SmartsContext = {
|
|
220422
221408
|
additionalContextList?: InputMaybe<Array<SmartsKeyValue>>;
|
|
220423
221409
|
containerId?: InputMaybe<Scalars['String']['input']>;
|
|
221410
|
+
excludeCollaboratorRecommendations?: InputMaybe<Scalars['Boolean']['input']>;
|
|
220424
221411
|
objectId?: InputMaybe<Scalars['String']['input']>;
|
|
220425
221412
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
220426
221413
|
tenantId: Scalars['String']['input'];
|
|
@@ -220430,7 +221417,9 @@ export declare type SmartsContextServiceCollaboratorRecommendation = {
|
|
|
220430
221417
|
__typename?: 'SmartsContextServiceCollaboratorRecommendation';
|
|
220431
221418
|
context?: Maybe<Scalars['String']['output']>;
|
|
220432
221419
|
id: Scalars['ID']['output'];
|
|
221420
|
+
kwShare?: Maybe<Scalars['Float']['output']>;
|
|
220433
221421
|
score?: Maybe<Scalars['Float']['output']>;
|
|
221422
|
+
topKw?: Maybe<Scalars['String']['output']>;
|
|
220434
221423
|
user?: Maybe<User>;
|
|
220435
221424
|
};
|
|
220436
221425
|
export declare type SmartsContextServiceOrbitObjectRecommendation = {
|
|
@@ -220537,6 +221526,8 @@ export declare type SmartsRecommendedContainer = {
|
|
|
220537
221526
|
export declare type SmartsRecommendedContainerData = ConfluenceSpace | JiraProject;
|
|
220538
221527
|
export declare type SmartsRecommendedContainerV2 = {
|
|
220539
221528
|
__typename?: 'SmartsRecommendedContainerV2';
|
|
221529
|
+
collaboratorScore?: Maybe<Scalars['Float']['output']>;
|
|
221530
|
+
collaborators?: Maybe<Array<SmartsCollaborator>>;
|
|
220540
221531
|
container?: Maybe<SmartsRecommendedContainerData>;
|
|
220541
221532
|
id: Scalars['ID']['output'];
|
|
220542
221533
|
score?: Maybe<Scalars['Float']['output']>;
|
|
@@ -223338,6 +224329,7 @@ export declare type StakeholderCommsNestedComponent = {
|
|
|
223338
224329
|
name?: Maybe<Scalars['String']['output']>;
|
|
223339
224330
|
pageId?: Maybe<Scalars['String']['output']>;
|
|
223340
224331
|
position?: Maybe<Scalars['Int']['output']>;
|
|
224332
|
+
service?: Maybe<DevOpsService>;
|
|
223341
224333
|
serviceId?: Maybe<Scalars['String']['output']>;
|
|
223342
224334
|
status?: Maybe<StakeholderCommsComponentStatus>;
|
|
223343
224335
|
type?: Maybe<StakeholderCommsComponentType>;
|
|
@@ -225117,6 +226109,13 @@ export declare enum SwimlaneStrategy {
|
|
|
225117
226109
|
None = "NONE",
|
|
225118
226110
|
Townsquareproject = "TOWNSQUAREPROJECT"
|
|
225119
226111
|
}
|
|
226112
|
+
export declare type SymptomIndicator = {
|
|
226113
|
+
__typename?: 'SymptomIndicator';
|
|
226114
|
+
provenance: Array<IndicatorProvenance>;
|
|
226115
|
+
summary: Scalars['String']['output'];
|
|
226116
|
+
symptomId: Scalars['String']['output'];
|
|
226117
|
+
symptomType: MitigationSymptomType;
|
|
226118
|
+
};
|
|
225120
226119
|
export declare type SystemSpaceHomepageInput = {
|
|
225121
226120
|
systemSpaceHomepageTemplate: SystemSpaceHomepageTemplate;
|
|
225122
226121
|
};
|
|
@@ -225319,6 +226318,7 @@ export declare type TeamCreateCustomFieldPayload = {
|
|
|
225319
226318
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
225320
226319
|
name: Scalars['String']['input'];
|
|
225321
226320
|
options?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
226321
|
+
scope?: InputMaybe<TeamCustomFieldScopeInput>;
|
|
225322
226322
|
type: TeamCustomFieldType;
|
|
225323
226323
|
};
|
|
225324
226324
|
export declare type TeamCreateCustomFieldValuePayload = {
|
|
@@ -225355,6 +226355,7 @@ export declare type TeamCustomFieldInfo = {
|
|
|
225355
226355
|
description?: Maybe<Scalars['String']['output']>;
|
|
225356
226356
|
id: Scalars['ID']['output'];
|
|
225357
226357
|
name: Scalars['String']['output'];
|
|
226358
|
+
teamType?: Maybe<TeamType>;
|
|
225358
226359
|
type: TeamCustomFieldType;
|
|
225359
226360
|
};
|
|
225360
226361
|
export declare type TeamCustomFieldKeyValues = {
|
|
@@ -225366,6 +226367,10 @@ export declare type TeamCustomFieldKeyValues = {
|
|
|
225366
226367
|
type: TeamCustomFieldType;
|
|
225367
226368
|
values?: Maybe<Array<TeamCustomFieldValue>>;
|
|
225368
226369
|
};
|
|
226370
|
+
export declare type TeamCustomFieldScopeInput = {
|
|
226371
|
+
teamTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
226372
|
+
userbase?: InputMaybe<Scalars['Boolean']['input']>;
|
|
226373
|
+
};
|
|
225369
226374
|
export declare enum TeamCustomFieldType {
|
|
225370
226375
|
Number = "NUMBER",
|
|
225371
226376
|
Selector = "SELECTOR",
|
|
@@ -225398,6 +226403,7 @@ export declare type TeamDetailedCustomFieldInfo = {
|
|
|
225398
226403
|
id: Scalars['ID']['output'];
|
|
225399
226404
|
name: Scalars['String']['output'];
|
|
225400
226405
|
options?: Maybe<Array<TeamCustomFieldValue>>;
|
|
226406
|
+
teamType?: Maybe<TeamType>;
|
|
225401
226407
|
type: TeamCustomFieldType;
|
|
225402
226408
|
};
|
|
225403
226409
|
export declare type TeamDisplayNameChange = {
|
|
@@ -225835,6 +226841,7 @@ export declare type TeamQuery = {
|
|
|
225835
226841
|
customField?: Maybe<TeamDetailedCustomFieldInfo>;
|
|
225836
226842
|
customFieldsWithinScope?: Maybe<Array<TeamCustomFieldInfo>>;
|
|
225837
226843
|
customFieldsWithinTeam?: Maybe<Array<TeamCustomFieldKeyValues>>;
|
|
226844
|
+
explainTeamsTql?: Maybe<TeamsTqlExplanation>;
|
|
225838
226845
|
getTeamExternalSourceDiff?: Maybe<TeamExternalSourceDiffPayload>;
|
|
225839
226846
|
notificationConfigurations?: Maybe<Array<TeamNotificationConfiguration>>;
|
|
225840
226847
|
roleAssignments?: Maybe<TeamRoleAssignmentsConnection>;
|
|
@@ -225860,6 +226867,9 @@ export declare type TeamQueryCustomFieldsWithinTeamArgs = {
|
|
|
225860
226867
|
scopeId: Scalars['ID']['input'];
|
|
225861
226868
|
teamId: Scalars['ID']['input'];
|
|
225862
226869
|
};
|
|
226870
|
+
export declare type TeamQueryExplainTeamsTqlArgs = {
|
|
226871
|
+
searchString: Scalars['String']['input'];
|
|
226872
|
+
};
|
|
225863
226873
|
export declare type TeamQueryGetTeamExternalSourceDiffArgs = {
|
|
225864
226874
|
input: TeamExternalSourceDiffInput;
|
|
225865
226875
|
};
|
|
@@ -226276,6 +227286,10 @@ export declare type TeamWithMembershipSyncPayload = Payload & {
|
|
|
226276
227286
|
success: Scalars['Boolean']['output'];
|
|
226277
227287
|
team?: Maybe<TeamV2>;
|
|
226278
227288
|
};
|
|
227289
|
+
export declare type TeamsTqlExplanation = {
|
|
227290
|
+
__typename?: 'TeamsTQLExplanation';
|
|
227291
|
+
explanation: Scalars['String']['output'];
|
|
227292
|
+
};
|
|
226279
227293
|
export declare enum TeamworkGraphUserViewedEntityType {
|
|
226280
227294
|
ConfluenceBlogpost = "ConfluenceBlogpost",
|
|
226281
227295
|
ConfluencePage = "ConfluencePage",
|
|
@@ -227266,6 +228280,17 @@ export declare type TownsquareDeleteRelationshipsPayload = {
|
|
|
227266
228280
|
relationships?: Maybe<Array<TownsquareRelationship>>;
|
|
227267
228281
|
success: Scalars['Boolean']['output'];
|
|
227268
228282
|
};
|
|
228283
|
+
export declare type TownsquareDirectoryView = {
|
|
228284
|
+
__typename?: 'TownsquareDirectoryView';
|
|
228285
|
+
entityType?: Maybe<TownsquareDirectoryViewEntityType>;
|
|
228286
|
+
id: Scalars['ID']['output'];
|
|
228287
|
+
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
228288
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
228289
|
+
};
|
|
228290
|
+
export declare enum TownsquareDirectoryViewEntityType {
|
|
228291
|
+
Goal = "GOAL",
|
|
228292
|
+
Project = "PROJECT"
|
|
228293
|
+
}
|
|
227269
228294
|
export declare type TownsquareDraftUpdate = {
|
|
227270
228295
|
__typename?: 'TownsquareDraftUpdate';
|
|
227271
228296
|
author?: Maybe<User>;
|
|
@@ -228017,8 +229042,14 @@ export declare type TownsquareGoalsAppSettings = {
|
|
|
228017
229042
|
__typename?: 'TownsquareGoalsAppSettings';
|
|
228018
229043
|
aiEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
228019
229044
|
defaultGoalAccessLevel?: Maybe<TownsquareGoalAccessLevel>;
|
|
229045
|
+
goalTypes?: Maybe<TownsquareGoalTypeConnection>;
|
|
228020
229046
|
scoringMode?: Maybe<TownsquareGoalScoringMode>;
|
|
228021
229047
|
};
|
|
229048
|
+
export declare type TownsquareGoalsAppSettingsGoalTypesArgs = {
|
|
229049
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
229050
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
229051
|
+
includeDisabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
229052
|
+
};
|
|
228022
229053
|
export declare type TownsquareGoalsArchiveMetricInput = {
|
|
228023
229054
|
metricId: Scalars['ID']['input'];
|
|
228024
229055
|
};
|
|
@@ -228757,6 +229788,12 @@ export declare type TownsquareLocalizationField = {
|
|
|
228757
229788
|
defaultValue?: Maybe<Scalars['String']['output']>;
|
|
228758
229789
|
messageId?: Maybe<Scalars['String']['output']>;
|
|
228759
229790
|
};
|
|
229791
|
+
export declare type TownsquareMsTeamsTenant = {
|
|
229792
|
+
__typename?: 'TownsquareMSTeamsTenant';
|
|
229793
|
+
azureId?: Maybe<Scalars['String']['output']>;
|
|
229794
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
229795
|
+
tenantId?: Maybe<Scalars['String']['output']>;
|
|
229796
|
+
};
|
|
228760
229797
|
export declare type TownsquareMercuryOriginalProjectStatusDto = MercuryOriginalProjectStatus & {
|
|
228761
229798
|
__typename?: 'TownsquareMercuryOriginalProjectStatusDto';
|
|
228762
229799
|
mercuryOriginalStatusName?: Maybe<Scalars['String']['output']>;
|
|
@@ -229405,6 +230442,8 @@ export declare type TownsquareProjectManageAccessPayload = {
|
|
|
229405
230442
|
__typename?: 'TownsquareProjectManageAccessPayload';
|
|
229406
230443
|
addedPrincipalEdges?: Maybe<Array<Maybe<TownsquareProjectAccessEdge>>>;
|
|
229407
230444
|
addedWatchers?: Maybe<Array<User>>;
|
|
230445
|
+
disconnectedMsteamsChannelIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
230446
|
+
disconnectedSlackChannelIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
229408
230447
|
errors?: Maybe<Array<MutationError>>;
|
|
229409
230448
|
project?: Maybe<TownsquareProject>;
|
|
229410
230449
|
removedWatcherIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
@@ -230835,6 +231874,7 @@ export declare type TrelloAcceptProposedEventsPayload = Payload & {
|
|
|
230835
231874
|
success: Scalars['Boolean']['output'];
|
|
230836
231875
|
};
|
|
230837
231876
|
export declare type TrelloAction = {
|
|
231877
|
+
agenticIdentity?: Maybe<TrelloAgenticIdentity>;
|
|
230838
231878
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
230839
231879
|
creator?: Maybe<TrelloMember>;
|
|
230840
231880
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -230961,6 +232001,7 @@ export declare type TrelloActionTranslatableEntity = {
|
|
|
230961
232001
|
};
|
|
230962
232002
|
export declare type TrelloAddAttachmentToCardAction = TrelloAction & TrelloCardActionData & {
|
|
230963
232003
|
__typename?: 'TrelloAddAttachmentToCardAction';
|
|
232004
|
+
agenticIdentity?: Maybe<TrelloAgenticIdentity>;
|
|
230964
232005
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
230965
232006
|
attachment?: Maybe<TrelloAttachment>;
|
|
230966
232007
|
board?: Maybe<TrelloBaseBoard>;
|
|
@@ -231006,6 +232047,7 @@ export declare type TrelloAddCampaignPayload = Payload & {
|
|
|
231006
232047
|
};
|
|
231007
232048
|
export declare type TrelloAddChecklistToCardAction = TrelloAction & TrelloCardActionData & {
|
|
231008
232049
|
__typename?: 'TrelloAddChecklistToCardAction';
|
|
232050
|
+
agenticIdentity?: Maybe<TrelloAgenticIdentity>;
|
|
231009
232051
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
231010
232052
|
board?: Maybe<TrelloBaseBoard>;
|
|
231011
232053
|
card?: Maybe<TrelloBaseCard>;
|
|
@@ -231042,6 +232084,7 @@ export declare type TrelloAddMemberInput = {
|
|
|
231042
232084
|
};
|
|
231043
232085
|
export declare type TrelloAddMemberToCardAction = TrelloAction & TrelloCardActionData & {
|
|
231044
232086
|
__typename?: 'TrelloAddMemberToCardAction';
|
|
232087
|
+
agenticIdentity?: Maybe<TrelloAgenticIdentity>;
|
|
231045
232088
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
231046
232089
|
board?: Maybe<TrelloBaseBoard>;
|
|
231047
232090
|
card?: Maybe<TrelloBaseCard>;
|
|
@@ -231106,6 +232149,86 @@ export declare type TrelloAdministeredPaidWorkspacesUpdated = {
|
|
|
231106
232149
|
__typename?: 'TrelloAdministeredPaidWorkspacesUpdated';
|
|
231107
232150
|
id: Scalars['ID']['output'];
|
|
231108
232151
|
};
|
|
232152
|
+
export declare type TrelloAgenticActivity = {
|
|
232153
|
+
__typename?: 'TrelloAgenticActivity';
|
|
232154
|
+
agenticIdentity?: Maybe<TrelloAgenticIdentity>;
|
|
232155
|
+
id: Scalars['ID']['output'];
|
|
232156
|
+
lastUpdatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
232157
|
+
startedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
232158
|
+
status?: Maybe<TrelloAgenticActivityStatus>;
|
|
232159
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
232160
|
+
targetId?: Maybe<Scalars['ID']['output']>;
|
|
232161
|
+
targetType?: Maybe<TrelloAgenticActivityTargetType>;
|
|
232162
|
+
};
|
|
232163
|
+
export declare type TrelloAgenticActivityConnection = {
|
|
232164
|
+
__typename?: 'TrelloAgenticActivityConnection';
|
|
232165
|
+
edges?: Maybe<Array<TrelloAgenticActivityEdge>>;
|
|
232166
|
+
nodes?: Maybe<Array<TrelloAgenticActivity>>;
|
|
232167
|
+
pageInfo: PageInfo;
|
|
232168
|
+
};
|
|
232169
|
+
export declare type TrelloAgenticActivityConnectionUpdated = {
|
|
232170
|
+
__typename?: 'TrelloAgenticActivityConnectionUpdated';
|
|
232171
|
+
edges?: Maybe<Array<TrelloAgenticActivityEdgeUpdated>>;
|
|
232172
|
+
};
|
|
232173
|
+
export declare type TrelloAgenticActivityEdge = {
|
|
232174
|
+
__typename?: 'TrelloAgenticActivityEdge';
|
|
232175
|
+
cursor: Scalars['String']['output'];
|
|
232176
|
+
node: TrelloAgenticActivity;
|
|
232177
|
+
};
|
|
232178
|
+
export declare type TrelloAgenticActivityEdgeUpdated = {
|
|
232179
|
+
__typename?: 'TrelloAgenticActivityEdgeUpdated';
|
|
232180
|
+
node: TrelloAgenticActivityUpdated;
|
|
232181
|
+
};
|
|
232182
|
+
export declare enum TrelloAgenticActivityStatus {
|
|
232183
|
+
Abandoned = "ABANDONED",
|
|
232184
|
+
Errored = "ERRORED",
|
|
232185
|
+
Succeeded = "SUCCEEDED",
|
|
232186
|
+
Working = "WORKING"
|
|
232187
|
+
}
|
|
232188
|
+
export declare enum TrelloAgenticActivityTargetType {
|
|
232189
|
+
Board = "BOARD",
|
|
232190
|
+
Card = "CARD",
|
|
232191
|
+
List = "LIST"
|
|
232192
|
+
}
|
|
232193
|
+
export declare type TrelloAgenticActivityUpdated = {
|
|
232194
|
+
__typename?: 'TrelloAgenticActivityUpdated';
|
|
232195
|
+
agenticIdentity?: Maybe<TrelloAgenticIdentityUpdated>;
|
|
232196
|
+
id: Scalars['ID']['output'];
|
|
232197
|
+
lastUpdatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
232198
|
+
startedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
232199
|
+
status?: Maybe<TrelloAgenticActivityStatus>;
|
|
232200
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
232201
|
+
targetId?: Maybe<Scalars['ID']['output']>;
|
|
232202
|
+
targetType?: Maybe<TrelloAgenticActivityTargetType>;
|
|
232203
|
+
};
|
|
232204
|
+
export declare type TrelloAgenticIdentity = {
|
|
232205
|
+
__typename?: 'TrelloAgenticIdentity';
|
|
232206
|
+
avatar?: Maybe<TrelloAgenticIdentityAvatar>;
|
|
232207
|
+
id: Scalars['ID']['output'];
|
|
232208
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
232209
|
+
status?: Maybe<TrelloAgenticIdentityStatus>;
|
|
232210
|
+
};
|
|
232211
|
+
export declare type TrelloAgenticIdentityAvatar = {
|
|
232212
|
+
__typename?: 'TrelloAgenticIdentityAvatar';
|
|
232213
|
+
imageScaled?: Maybe<Array<TrelloImagePreview>>;
|
|
232214
|
+
source?: Maybe<Scalars['String']['output']>;
|
|
232215
|
+
};
|
|
232216
|
+
export declare type TrelloAgenticIdentityAvatarUpdated = {
|
|
232217
|
+
__typename?: 'TrelloAgenticIdentityAvatarUpdated';
|
|
232218
|
+
imageScaled?: Maybe<Array<TrelloImagePreview>>;
|
|
232219
|
+
source?: Maybe<Scalars['String']['output']>;
|
|
232220
|
+
};
|
|
232221
|
+
export declare enum TrelloAgenticIdentityStatus {
|
|
232222
|
+
Active = "ACTIVE",
|
|
232223
|
+
Deactivated = "DEACTIVATED"
|
|
232224
|
+
}
|
|
232225
|
+
export declare type TrelloAgenticIdentityUpdated = {
|
|
232226
|
+
__typename?: 'TrelloAgenticIdentityUpdated';
|
|
232227
|
+
avatar?: Maybe<TrelloAgenticIdentityAvatarUpdated>;
|
|
232228
|
+
id: Scalars['ID']['output'];
|
|
232229
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
232230
|
+
status?: Maybe<TrelloAgenticIdentityStatus>;
|
|
232231
|
+
};
|
|
231109
232232
|
export declare type TrelloAiBoardGenericBoardInput = {
|
|
231110
232233
|
prompt: Scalars['String']['input'];
|
|
231111
232234
|
};
|
|
@@ -231387,6 +232510,7 @@ export declare type TrelloBaseBoardUpdatedEdge = {
|
|
|
231387
232510
|
};
|
|
231388
232511
|
export declare type TrelloBaseCard = {
|
|
231389
232512
|
actions?: Maybe<TrelloCardActionConnection>;
|
|
232513
|
+
agenticActivities?: Maybe<TrelloAgenticActivityConnection>;
|
|
231390
232514
|
aiMetadata?: Maybe<TrelloObjectAiMetadata>;
|
|
231391
232515
|
attachments?: Maybe<TrelloAttachmentConnection>;
|
|
231392
232516
|
badges?: Maybe<TrelloCardBadges>;
|
|
@@ -231424,6 +232548,10 @@ export declare type TrelloBaseCardActionsArgs = {
|
|
|
231424
232548
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
231425
232549
|
type?: InputMaybe<Array<TrelloCardActionType>>;
|
|
231426
232550
|
};
|
|
232551
|
+
export declare type TrelloBaseCardAgenticActivitiesArgs = {
|
|
232552
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
232553
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
232554
|
+
};
|
|
231427
232555
|
export declare type TrelloBaseCardAttachmentsArgs = {
|
|
231428
232556
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
231429
232557
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -231452,6 +232580,7 @@ export declare type TrelloBaseCardMoved = {
|
|
|
231452
232580
|
};
|
|
231453
232581
|
export declare type TrelloBaseCardUpdated = {
|
|
231454
232582
|
actions?: Maybe<TrelloCardActionConnectionUpdated>;
|
|
232583
|
+
agenticActivities?: Maybe<TrelloAgenticActivityConnectionUpdated>;
|
|
231455
232584
|
aiMetadata?: Maybe<TrelloObjectAiMetadataUpdated>;
|
|
231456
232585
|
attachments?: Maybe<TrelloAttachmentConnectionUpdated>;
|
|
231457
232586
|
badges?: Maybe<TrelloCardBadges>;
|
|
@@ -231959,6 +233088,7 @@ export declare type TrelloCard = Node & TrelloBaseCard & {
|
|
|
231959
233088
|
__typename?: 'TrelloCard';
|
|
231960
233089
|
actions?: Maybe<TrelloCardActionConnection>;
|
|
231961
233090
|
agent?: Maybe<TrelloCardAgent>;
|
|
233091
|
+
agenticActivities?: Maybe<TrelloAgenticActivityConnection>;
|
|
231962
233092
|
aiMetadata?: Maybe<TrelloObjectAiMetadata>;
|
|
231963
233093
|
attachments?: Maybe<TrelloAttachmentConnection>;
|
|
231964
233094
|
badges?: Maybe<TrelloCardBadges>;
|
|
@@ -232011,6 +233141,10 @@ export declare type TrelloCardActionsArgs = {
|
|
|
232011
233141
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
232012
233142
|
type?: InputMaybe<Array<TrelloCardActionType>>;
|
|
232013
233143
|
};
|
|
233144
|
+
export declare type TrelloCardAgenticActivitiesArgs = {
|
|
233145
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
233146
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
233147
|
+
};
|
|
232014
233148
|
export declare type TrelloCardAttachmentsArgs = {
|
|
232015
233149
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
232016
233150
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -232427,6 +233561,7 @@ export declare type TrelloCardUpdated = TrelloBaseCardUpdated & {
|
|
|
232427
233561
|
__typename?: 'TrelloCardUpdated';
|
|
232428
233562
|
actions?: Maybe<TrelloCardActionConnectionUpdated>;
|
|
232429
233563
|
agent?: Maybe<TrelloCardAgentUpdated>;
|
|
233564
|
+
agenticActivities?: Maybe<TrelloAgenticActivityConnectionUpdated>;
|
|
232430
233565
|
aiMetadata?: Maybe<TrelloObjectAiMetadataUpdated>;
|
|
232431
233566
|
attachments?: Maybe<TrelloAttachmentConnectionUpdated>;
|
|
232432
233567
|
badges?: Maybe<TrelloCardBadges>;
|
|
@@ -232624,6 +233759,7 @@ export declare type TrelloCloseListPayload = Payload & {
|
|
|
232624
233759
|
};
|
|
232625
233760
|
export declare type TrelloCommentCardAction = TrelloAction & TrelloCardActionData & {
|
|
232626
233761
|
__typename?: 'TrelloCommentCardAction';
|
|
233762
|
+
agenticIdentity?: Maybe<TrelloAgenticIdentity>;
|
|
232627
233763
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
232628
233764
|
board?: Maybe<TrelloBaseBoard>;
|
|
232629
233765
|
card?: Maybe<TrelloBaseCard>;
|
|
@@ -232698,6 +233834,7 @@ export declare type TrelloCopiedCardSource = {
|
|
|
232698
233834
|
};
|
|
232699
233835
|
export declare type TrelloCopyCardAction = TrelloAction & TrelloCardActionData & {
|
|
232700
233836
|
__typename?: 'TrelloCopyCardAction';
|
|
233837
|
+
agenticIdentity?: Maybe<TrelloAgenticIdentity>;
|
|
232701
233838
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
232702
233839
|
board?: Maybe<TrelloBaseBoard>;
|
|
232703
233840
|
card?: Maybe<TrelloBaseCard>;
|
|
@@ -232722,6 +233859,7 @@ export declare type TrelloCopyCardActionDisplayEntities = {
|
|
|
232722
233859
|
};
|
|
232723
233860
|
export declare type TrelloCopyCommentCardAction = TrelloAction & TrelloCardActionData & {
|
|
232724
233861
|
__typename?: 'TrelloCopyCommentCardAction';
|
|
233862
|
+
agenticIdentity?: Maybe<TrelloAgenticIdentity>;
|
|
232725
233863
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
232726
233864
|
board?: Maybe<TrelloBaseBoard>;
|
|
232727
233865
|
card?: Maybe<TrelloBaseCard>;
|
|
@@ -232745,6 +233883,7 @@ export declare type TrelloCopyCommentCardActionDisplayEntities = {
|
|
|
232745
233883
|
};
|
|
232746
233884
|
export declare type TrelloCopyInboxCardAction = TrelloAction & TrelloCardActionData & {
|
|
232747
233885
|
__typename?: 'TrelloCopyInboxCardAction';
|
|
233886
|
+
agenticIdentity?: Maybe<TrelloAgenticIdentity>;
|
|
232748
233887
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
232749
233888
|
board?: Maybe<TrelloBaseBoard>;
|
|
232750
233889
|
card?: Maybe<TrelloBaseCard>;
|
|
@@ -232813,6 +233952,7 @@ export declare type TrelloCreateBoardWithAiPayload = Payload & {
|
|
|
232813
233952
|
};
|
|
232814
233953
|
export declare type TrelloCreateCardAction = TrelloAction & TrelloCardActionData & {
|
|
232815
233954
|
__typename?: 'TrelloCreateCardAction';
|
|
233955
|
+
agenticIdentity?: Maybe<TrelloAgenticIdentity>;
|
|
232816
233956
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
232817
233957
|
board?: Maybe<TrelloBaseBoard>;
|
|
232818
233958
|
card?: Maybe<TrelloBaseCard>;
|
|
@@ -232834,6 +233974,7 @@ export declare type TrelloCreateCardActionDisplayEntities = {
|
|
|
232834
233974
|
};
|
|
232835
233975
|
export declare type TrelloCreateCardFromCheckItemAction = TrelloAction & TrelloCardActionData & {
|
|
232836
233976
|
__typename?: 'TrelloCreateCardFromCheckItemAction';
|
|
233977
|
+
agenticIdentity?: Maybe<TrelloAgenticIdentity>;
|
|
232837
233978
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
232838
233979
|
board?: Maybe<TrelloBaseBoard>;
|
|
232839
233980
|
card?: Maybe<TrelloBaseCard>;
|
|
@@ -232858,6 +233999,7 @@ export declare type TrelloCreateCardFromCheckItemActionDisplayEntities = {
|
|
|
232858
233999
|
};
|
|
232859
234000
|
export declare type TrelloCreateCardFromEmailAction = TrelloAction & TrelloCardActionData & {
|
|
232860
234001
|
__typename?: 'TrelloCreateCardFromEmailAction';
|
|
234002
|
+
agenticIdentity?: Maybe<TrelloAgenticIdentity>;
|
|
232861
234003
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
232862
234004
|
board?: Maybe<TrelloBaseBoard>;
|
|
232863
234005
|
card?: Maybe<TrelloBaseCard>;
|
|
@@ -232953,6 +234095,7 @@ export declare type TrelloCreateCustomFieldPayload = Payload & {
|
|
|
232953
234095
|
};
|
|
232954
234096
|
export declare type TrelloCreateInboxCardAction = TrelloAction & TrelloCardActionData & {
|
|
232955
234097
|
__typename?: 'TrelloCreateInboxCardAction';
|
|
234098
|
+
agenticIdentity?: Maybe<TrelloAgenticIdentity>;
|
|
232956
234099
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
232957
234100
|
board?: Maybe<TrelloBaseBoard>;
|
|
232958
234101
|
card?: Maybe<TrelloBaseCard>;
|
|
@@ -233183,6 +234326,7 @@ export declare type TrelloDeleteAiRulePayload = Payload & {
|
|
|
233183
234326
|
};
|
|
233184
234327
|
export declare type TrelloDeleteAttachmentFromCardAction = TrelloAction & TrelloCardActionData & {
|
|
233185
234328
|
__typename?: 'TrelloDeleteAttachmentFromCardAction';
|
|
234329
|
+
agenticIdentity?: Maybe<TrelloAgenticIdentity>;
|
|
233186
234330
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
233187
234331
|
attachment?: Maybe<TrelloAttachment>;
|
|
233188
234332
|
board?: Maybe<TrelloBaseBoard>;
|
|
@@ -233534,6 +234678,7 @@ export declare type TrelloInboxPlannerEventCardsArgs = {
|
|
|
233534
234678
|
export declare type TrelloInboxCard = TrelloBaseCard & {
|
|
233535
234679
|
__typename?: 'TrelloInboxCard';
|
|
233536
234680
|
actions?: Maybe<TrelloCardActionConnection>;
|
|
234681
|
+
agenticActivities?: Maybe<TrelloAgenticActivityConnection>;
|
|
233537
234682
|
aiMetadata?: Maybe<TrelloObjectAiMetadata>;
|
|
233538
234683
|
attachments?: Maybe<TrelloAttachmentConnection>;
|
|
233539
234684
|
badges?: Maybe<TrelloCardBadges>;
|
|
@@ -233571,6 +234716,10 @@ export declare type TrelloInboxCardActionsArgs = {
|
|
|
233571
234716
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
233572
234717
|
type?: InputMaybe<Array<TrelloCardActionType>>;
|
|
233573
234718
|
};
|
|
234719
|
+
export declare type TrelloInboxCardAgenticActivitiesArgs = {
|
|
234720
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
234721
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
234722
|
+
};
|
|
233574
234723
|
export declare type TrelloInboxCardAttachmentsArgs = {
|
|
233575
234724
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
233576
234725
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -233602,6 +234751,7 @@ export declare type TrelloInboxCardMoved = TrelloBaseCardMoved & {
|
|
|
233602
234751
|
export declare type TrelloInboxCardUpdated = TrelloBaseCardUpdated & {
|
|
233603
234752
|
__typename?: 'TrelloInboxCardUpdated';
|
|
233604
234753
|
actions?: Maybe<TrelloCardActionConnectionUpdated>;
|
|
234754
|
+
agenticActivities?: Maybe<TrelloAgenticActivityConnectionUpdated>;
|
|
233605
234755
|
aiMetadata?: Maybe<TrelloObjectAiMetadataUpdated>;
|
|
233606
234756
|
attachments?: Maybe<TrelloAttachmentConnectionUpdated>;
|
|
233607
234757
|
badges?: Maybe<TrelloCardBadges>;
|
|
@@ -233932,6 +235082,7 @@ export declare type TrelloMember = Node & {
|
|
|
233932
235082
|
avatarUrl?: Maybe<Scalars['URL']['output']>;
|
|
233933
235083
|
bio?: Maybe<Scalars['String']['output']>;
|
|
233934
235084
|
bioData?: Maybe<Scalars['JSON']['output']>;
|
|
235085
|
+
boardBackgrounds?: Maybe<TrelloMemberBoardBackgroundConnection>;
|
|
233935
235086
|
boardStars?: Maybe<TrelloMemberBoardStarConnection>;
|
|
233936
235087
|
boards?: Maybe<TrelloMemberBoardConnection>;
|
|
233937
235088
|
boardsV2?: Maybe<TrelloMemberBaseBoardConnection>;
|
|
@@ -233965,6 +235116,10 @@ export declare type TrelloMemberAtlassianSitesArgs = {
|
|
|
233965
235116
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
233966
235117
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
233967
235118
|
};
|
|
235119
|
+
export declare type TrelloMemberBoardBackgroundsArgs = {
|
|
235120
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
235121
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
235122
|
+
};
|
|
233968
235123
|
export declare type TrelloMemberBoardStarsArgs = {
|
|
233969
235124
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
233970
235125
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -234029,6 +235184,17 @@ export declare type TrelloMemberBaseBoardEdge = {
|
|
|
234029
235184
|
cursor: Scalars['String']['output'];
|
|
234030
235185
|
node?: Maybe<TrelloBaseBoard>;
|
|
234031
235186
|
};
|
|
235187
|
+
export declare type TrelloMemberBoardBackgroundConnection = {
|
|
235188
|
+
__typename?: 'TrelloMemberBoardBackgroundConnection';
|
|
235189
|
+
edges?: Maybe<Array<TrelloMemberBoardBackgroundEdge>>;
|
|
235190
|
+
nodes?: Maybe<Array<TrelloBoardBackground>>;
|
|
235191
|
+
pageInfo: PageInfo;
|
|
235192
|
+
};
|
|
235193
|
+
export declare type TrelloMemberBoardBackgroundEdge = {
|
|
235194
|
+
__typename?: 'TrelloMemberBoardBackgroundEdge';
|
|
235195
|
+
cursor: Scalars['String']['output'];
|
|
235196
|
+
node?: Maybe<TrelloBoardBackground>;
|
|
235197
|
+
};
|
|
234032
235198
|
export declare type TrelloMemberBoardConnection = {
|
|
234033
235199
|
__typename?: 'TrelloMemberBoardConnection';
|
|
234034
235200
|
edges?: Maybe<Array<TrelloMemberBoardEdge>>;
|
|
@@ -234243,6 +235409,7 @@ export declare type TrelloModelMetadata = {
|
|
|
234243
235409
|
};
|
|
234244
235410
|
export declare type TrelloMoveCardAction = TrelloAction & TrelloCardActionData & {
|
|
234245
235411
|
__typename?: 'TrelloMoveCardAction';
|
|
235412
|
+
agenticIdentity?: Maybe<TrelloAgenticIdentity>;
|
|
234246
235413
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
234247
235414
|
board?: Maybe<TrelloBaseBoard>;
|
|
234248
235415
|
card?: Maybe<TrelloBaseCard>;
|
|
@@ -234275,6 +235442,7 @@ export declare type TrelloMoveCardInput = {
|
|
|
234275
235442
|
boardId?: InputMaybe<Scalars['ID']['input']>;
|
|
234276
235443
|
cardId: Scalars['ID']['input'];
|
|
234277
235444
|
listId: Scalars['ID']['input'];
|
|
235445
|
+
position?: InputMaybe<TrelloPosition>;
|
|
234278
235446
|
};
|
|
234279
235447
|
export declare type TrelloMoveCardPayload = Payload & {
|
|
234280
235448
|
__typename?: 'TrelloMoveCardPayload';
|
|
@@ -234284,6 +235452,7 @@ export declare type TrelloMoveCardPayload = Payload & {
|
|
|
234284
235452
|
};
|
|
234285
235453
|
export declare type TrelloMoveCardToBoardAction = TrelloAction & TrelloCardActionData & {
|
|
234286
235454
|
__typename?: 'TrelloMoveCardToBoardAction';
|
|
235455
|
+
agenticIdentity?: Maybe<TrelloAgenticIdentity>;
|
|
234287
235456
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
234288
235457
|
board?: Maybe<TrelloBaseBoard>;
|
|
234289
235458
|
card?: Maybe<TrelloBaseCard>;
|
|
@@ -234299,6 +235468,7 @@ export declare type TrelloMoveCardToBoardAction = TrelloAction & TrelloCardActio
|
|
|
234299
235468
|
};
|
|
234300
235469
|
export declare type TrelloMoveInboxCardToBoardAction = TrelloAction & TrelloCardActionData & {
|
|
234301
235470
|
__typename?: 'TrelloMoveInboxCardToBoardAction';
|
|
235471
|
+
agenticIdentity?: Maybe<TrelloAgenticIdentity>;
|
|
234302
235472
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
234303
235473
|
board?: Maybe<TrelloBaseBoard>;
|
|
234304
235474
|
card?: Maybe<TrelloBaseCard>;
|
|
@@ -236064,6 +237234,7 @@ export declare type TrelloRemoveCardFromPlannerCalendarEventPayload = Payload &
|
|
|
236064
237234
|
};
|
|
236065
237235
|
export declare type TrelloRemoveChecklistFromCardAction = TrelloAction & TrelloCardActionData & {
|
|
236066
237236
|
__typename?: 'TrelloRemoveChecklistFromCardAction';
|
|
237237
|
+
agenticIdentity?: Maybe<TrelloAgenticIdentity>;
|
|
236067
237238
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
236068
237239
|
board?: Maybe<TrelloBaseBoard>;
|
|
236069
237240
|
card?: Maybe<TrelloBaseCard>;
|
|
@@ -236096,6 +237267,7 @@ export declare type TrelloRemoveLabelsFromCardPayload = Payload & {
|
|
|
236096
237267
|
};
|
|
236097
237268
|
export declare type TrelloRemoveMemberFromCardAction = TrelloAction & TrelloCardActionData & {
|
|
236098
237269
|
__typename?: 'TrelloRemoveMemberFromCardAction';
|
|
237270
|
+
agenticIdentity?: Maybe<TrelloAgenticIdentity>;
|
|
236099
237271
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
236100
237272
|
board?: Maybe<TrelloBaseBoard>;
|
|
236101
237273
|
card?: Maybe<TrelloBaseCard>;
|
|
@@ -236695,6 +237867,7 @@ export declare type TrelloUpdateBoardVotingPermissionsPayload = Payload & {
|
|
|
236695
237867
|
};
|
|
236696
237868
|
export declare type TrelloUpdateCardClosedAction = TrelloAction & TrelloCardActionData & {
|
|
236697
237869
|
__typename?: 'TrelloUpdateCardClosedAction';
|
|
237870
|
+
agenticIdentity?: Maybe<TrelloAgenticIdentity>;
|
|
236698
237871
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
236699
237872
|
board?: Maybe<TrelloBaseBoard>;
|
|
236700
237873
|
card?: Maybe<TrelloBaseCard>;
|
|
@@ -236715,6 +237888,7 @@ export declare type TrelloUpdateCardClosedActionDisplayEntities = {
|
|
|
236715
237888
|
};
|
|
236716
237889
|
export declare type TrelloUpdateCardCompleteAction = TrelloAction & TrelloCardActionData & {
|
|
236717
237890
|
__typename?: 'TrelloUpdateCardCompleteAction';
|
|
237891
|
+
agenticIdentity?: Maybe<TrelloAgenticIdentity>;
|
|
236718
237892
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
236719
237893
|
board?: Maybe<TrelloBaseBoard>;
|
|
236720
237894
|
card?: Maybe<TrelloBaseCard>;
|
|
@@ -236764,6 +237938,7 @@ export declare type TrelloUpdateCardDescriptionPayload = Payload & {
|
|
|
236764
237938
|
};
|
|
236765
237939
|
export declare type TrelloUpdateCardDueAction = TrelloAction & TrelloCardActionData & {
|
|
236766
237940
|
__typename?: 'TrelloUpdateCardDueAction';
|
|
237941
|
+
agenticIdentity?: Maybe<TrelloAgenticIdentity>;
|
|
236767
237942
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
236768
237943
|
board?: Maybe<TrelloBaseBoard>;
|
|
236769
237944
|
card?: Maybe<TrelloBaseCard>;
|
|
@@ -236815,6 +237990,7 @@ export declare type TrelloUpdateCardPositionOnPlannerCalendarEventPayload = Payl
|
|
|
236815
237990
|
};
|
|
236816
237991
|
export declare type TrelloUpdateCardRecurrenceRuleAction = TrelloAction & TrelloCardActionData & {
|
|
236817
237992
|
__typename?: 'TrelloUpdateCardRecurrenceRuleAction';
|
|
237993
|
+
agenticIdentity?: Maybe<TrelloAgenticIdentity>;
|
|
236818
237994
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
236819
237995
|
board?: Maybe<TrelloBaseBoard>;
|
|
236820
237996
|
card?: Maybe<TrelloBaseCard>;
|
|
@@ -236861,6 +238037,7 @@ export declare type TrelloUpdateCheckItemPayload = Payload & {
|
|
|
236861
238037
|
};
|
|
236862
238038
|
export declare type TrelloUpdateCheckItemStateOnCardAction = TrelloAction & TrelloCardActionData & {
|
|
236863
238039
|
__typename?: 'TrelloUpdateCheckItemStateOnCardAction';
|
|
238040
|
+
agenticIdentity?: Maybe<TrelloAgenticIdentity>;
|
|
236864
238041
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
236865
238042
|
board?: Maybe<TrelloBaseBoard>;
|
|
236866
238043
|
card?: Maybe<TrelloBaseCard>;
|
|
@@ -236904,6 +238081,7 @@ export declare type TrelloUpdateCustomFieldInput = {
|
|
|
236904
238081
|
};
|
|
236905
238082
|
export declare type TrelloUpdateCustomFieldItemAction = TrelloAction & TrelloCardActionData & {
|
|
236906
238083
|
__typename?: 'TrelloUpdateCustomFieldItemAction';
|
|
238084
|
+
agenticIdentity?: Maybe<TrelloAgenticIdentity>;
|
|
236907
238085
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
236908
238086
|
board?: Maybe<TrelloBaseBoard>;
|
|
236909
238087
|
card?: Maybe<TrelloBaseCard>;
|
|
@@ -237273,6 +238451,17 @@ export declare type TrelloWorkspaceUpdated = {
|
|
|
237273
238451
|
planner?: Maybe<TrelloPlannerUpdated>;
|
|
237274
238452
|
powerUpData?: Maybe<TrelloPowerUpDataConnectionUpdated>;
|
|
237275
238453
|
};
|
|
238454
|
+
export declare type TriggerMitigationInput = {
|
|
238455
|
+
cloudId: Scalars['ID']['input'];
|
|
238456
|
+
scopeId: Scalars['ID']['input'];
|
|
238457
|
+
scopeType: MitigationScopeType;
|
|
238458
|
+
};
|
|
238459
|
+
export declare type TriggerMitigationPayload = Payload & {
|
|
238460
|
+
__typename?: 'TriggerMitigationPayload';
|
|
238461
|
+
errors?: Maybe<Array<MutationError>>;
|
|
238462
|
+
mitigation?: Maybe<Mitigation>;
|
|
238463
|
+
success: Scalars['Boolean']['output'];
|
|
238464
|
+
};
|
|
237276
238465
|
export declare type TrustSignal = {
|
|
237277
238466
|
__typename?: 'TrustSignal';
|
|
237278
238467
|
key: Scalars['ID']['output'];
|
|
@@ -238836,6 +240025,14 @@ export declare type UnlinkExternalSourcePayload = Payload & {
|
|
|
238836
240025
|
errors?: Maybe<Array<MutationError>>;
|
|
238837
240026
|
success: Scalars['Boolean']['output'];
|
|
238838
240027
|
};
|
|
240028
|
+
export declare type UnrejectIndicatorInput = {
|
|
240029
|
+
cloudId: Scalars['ID']['input'];
|
|
240030
|
+
indicatorId: Scalars['ID']['input'];
|
|
240031
|
+
};
|
|
240032
|
+
export declare type UnrejectPlanInput = {
|
|
240033
|
+
cloudId: Scalars['ID']['input'];
|
|
240034
|
+
planId: Scalars['ID']['input'];
|
|
240035
|
+
};
|
|
238839
240036
|
export declare type UnwatchMarketplaceAppPayload = Payload & {
|
|
238840
240037
|
__typename?: 'UnwatchMarketplaceAppPayload';
|
|
238841
240038
|
errors?: Maybe<Array<MutationError>>;
|