@forge/cli-shared 8.8.1-next.2 → 8.8.1-next.4
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 +16 -0
- package/out/graphql/graphql-types.d.ts +597 -94
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +19 -22
- package/out/ui/text.d.ts +6 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +7 -1
- package/package.json +2 -2
|
@@ -434,6 +434,16 @@ export declare type AvpCreateDashboardPayload = Payload & {
|
|
|
434
434
|
errors?: Maybe<Array<MutationError>>;
|
|
435
435
|
success: Scalars['Boolean']['output'];
|
|
436
436
|
};
|
|
437
|
+
export declare type AvpCreateVariableInput = {
|
|
438
|
+
dashboardAri: Scalars['ID']['input'];
|
|
439
|
+
variable: AvpVariableInput;
|
|
440
|
+
};
|
|
441
|
+
export declare type AvpCreateVariablePayload = Payload & {
|
|
442
|
+
__typename?: 'AVPCreateVariablePayload';
|
|
443
|
+
envVar?: Maybe<AvpEnvVarWithChart>;
|
|
444
|
+
errors?: Maybe<Array<MutationError>>;
|
|
445
|
+
success: Scalars['Boolean']['output'];
|
|
446
|
+
};
|
|
437
447
|
export declare type AvpDashboard = {
|
|
438
448
|
__typename?: 'AVPDashboard';
|
|
439
449
|
access?: Maybe<Scalars['Int']['output']>;
|
|
@@ -604,7 +614,7 @@ export declare enum AvpEnvVarDataType {
|
|
|
604
614
|
export declare type AvpEnvVarWithChart = {
|
|
605
615
|
__typename?: 'AVPEnvVarWithChart';
|
|
606
616
|
chart?: Maybe<AvpChart>;
|
|
607
|
-
chartType?: Maybe<
|
|
617
|
+
chartType?: Maybe<Scalars['String']['output']>;
|
|
608
618
|
dataType?: Maybe<AvpEnvVarDataType>;
|
|
609
619
|
defaultValues?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
610
620
|
hotTierFilterConfig?: Maybe<Array<Maybe<AvpHotTierFilterConfig>>>;
|
|
@@ -822,6 +832,13 @@ export declare type AvpUpdateDashboardStatusPayload = Payload & {
|
|
|
822
832
|
errors?: Maybe<Array<MutationError>>;
|
|
823
833
|
success: Scalars['Boolean']['output'];
|
|
824
834
|
};
|
|
835
|
+
export declare type AvpVariableInput = {
|
|
836
|
+
chartType?: InputMaybe<AvpEnvVarChartType>;
|
|
837
|
+
dataType?: InputMaybe<AvpEnvVarDataType>;
|
|
838
|
+
defaultValues?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
839
|
+
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
840
|
+
name: Scalars['String']['input'];
|
|
841
|
+
};
|
|
825
842
|
export declare enum AcceptableResponse {
|
|
826
843
|
False = "FALSE",
|
|
827
844
|
NotApplicable = "NOT_APPLICABLE",
|
|
@@ -2523,6 +2540,11 @@ export declare type AgentStudioBatchEvaluationJob = {
|
|
|
2523
2540
|
productType: AgentStudioProductType;
|
|
2524
2541
|
projectId: Scalars['String']['output'];
|
|
2525
2542
|
};
|
|
2543
|
+
export declare type AgentStudioBatchEvaluationJobEdge = {
|
|
2544
|
+
__typename?: 'AgentStudioBatchEvaluationJobEdge';
|
|
2545
|
+
cursor: Scalars['String']['output'];
|
|
2546
|
+
node: AgentStudioBatchEvaluationJob;
|
|
2547
|
+
};
|
|
2526
2548
|
export declare type AgentStudioBatchEvaluationJobRun = {
|
|
2527
2549
|
__typename?: 'AgentStudioBatchEvaluationJobRun';
|
|
2528
2550
|
completedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -2533,6 +2555,11 @@ export declare type AgentStudioBatchEvaluationJobRun = {
|
|
|
2533
2555
|
status: AgentStudioJobRunStatus;
|
|
2534
2556
|
totalItems: Scalars['Int']['output'];
|
|
2535
2557
|
};
|
|
2558
|
+
export declare type AgentStudioBatchEvaluationJobsResult = {
|
|
2559
|
+
__typename?: 'AgentStudioBatchEvaluationJobsResult';
|
|
2560
|
+
edges: Array<AgentStudioBatchEvaluationJobEdge>;
|
|
2561
|
+
pageInfo: PageInfo;
|
|
2562
|
+
};
|
|
2536
2563
|
export declare type AgentStudioBatchEvaluationProject = {
|
|
2537
2564
|
__typename?: 'AgentStudioBatchEvaluationProject';
|
|
2538
2565
|
id: Scalars['String']['output'];
|
|
@@ -2646,6 +2673,11 @@ export declare type AgentStudioDataset = {
|
|
|
2646
2673
|
name: Scalars['String']['output'];
|
|
2647
2674
|
projectId: Scalars['String']['output'];
|
|
2648
2675
|
};
|
|
2676
|
+
export declare type AgentStudioDatasetEdge = {
|
|
2677
|
+
__typename?: 'AgentStudioDatasetEdge';
|
|
2678
|
+
cursor: Scalars['String']['output'];
|
|
2679
|
+
node: AgentStudioDataset;
|
|
2680
|
+
};
|
|
2649
2681
|
export declare type AgentStudioDatasetItem = {
|
|
2650
2682
|
__typename?: 'AgentStudioDatasetItem';
|
|
2651
2683
|
createdAt: Scalars['String']['output'];
|
|
@@ -2654,12 +2686,27 @@ export declare type AgentStudioDatasetItem = {
|
|
|
2654
2686
|
inputQuestion: Scalars['String']['output'];
|
|
2655
2687
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
2656
2688
|
};
|
|
2689
|
+
export declare type AgentStudioDatasetItemEdge = {
|
|
2690
|
+
__typename?: 'AgentStudioDatasetItemEdge';
|
|
2691
|
+
cursor: Scalars['String']['output'];
|
|
2692
|
+
node: AgentStudioDatasetItem;
|
|
2693
|
+
};
|
|
2694
|
+
export declare type AgentStudioDatasetItemsResult = {
|
|
2695
|
+
__typename?: 'AgentStudioDatasetItemsResult';
|
|
2696
|
+
edges: Array<AgentStudioDatasetItemEdge>;
|
|
2697
|
+
pageInfo: PageInfo;
|
|
2698
|
+
};
|
|
2657
2699
|
export declare enum AgentStudioDatasetResolution {
|
|
2658
2700
|
Failed = "FAILED",
|
|
2659
2701
|
Mixed = "MIXED",
|
|
2660
2702
|
Resolved = "RESOLVED",
|
|
2661
2703
|
Unresolved = "UNRESOLVED"
|
|
2662
2704
|
}
|
|
2705
|
+
export declare type AgentStudioDatasetsResult = {
|
|
2706
|
+
__typename?: 'AgentStudioDatasetsResult';
|
|
2707
|
+
edges: Array<AgentStudioDatasetEdge>;
|
|
2708
|
+
pageInfo: PageInfo;
|
|
2709
|
+
};
|
|
2663
2710
|
export declare type AgentStudioDeleteAgentPayload = Payload & {
|
|
2664
2711
|
__typename?: 'AgentStudioDeleteAgentPayload';
|
|
2665
2712
|
agent?: Maybe<AgentStudioAgent>;
|
|
@@ -2706,6 +2753,16 @@ export declare type AgentStudioEvaluationResult = {
|
|
|
2706
2753
|
runId: Scalars['ID']['output'];
|
|
2707
2754
|
success: Scalars['Boolean']['output'];
|
|
2708
2755
|
};
|
|
2756
|
+
export declare type AgentStudioEvaluationResultEdge = {
|
|
2757
|
+
__typename?: 'AgentStudioEvaluationResultEdge';
|
|
2758
|
+
cursor: Scalars['String']['output'];
|
|
2759
|
+
node: AgentStudioEvaluationResult;
|
|
2760
|
+
};
|
|
2761
|
+
export declare type AgentStudioEvaluationResultsResult = {
|
|
2762
|
+
__typename?: 'AgentStudioEvaluationResultsResult';
|
|
2763
|
+
edges: Array<AgentStudioEvaluationResultEdge>;
|
|
2764
|
+
pageInfo: PageInfo;
|
|
2765
|
+
};
|
|
2709
2766
|
export declare type AgentStudioEvaluationSummary = {
|
|
2710
2767
|
__typename?: 'AgentStudioEvaluationSummary';
|
|
2711
2768
|
avgResponseTimeMs?: Maybe<Scalars['Int']['output']>;
|
|
@@ -4862,6 +4919,7 @@ export declare type AssetsDmDataSource = {
|
|
|
4862
4919
|
__typename?: 'AssetsDMDataSource';
|
|
4863
4920
|
dataSourceId?: Maybe<Scalars['String']['output']>;
|
|
4864
4921
|
dataSourceName?: Maybe<Scalars['String']['output']>;
|
|
4922
|
+
dataSourceTypeId?: Maybe<Scalars['Int']['output']>;
|
|
4865
4923
|
isJobExecutionFailed?: Maybe<Scalars['Boolean']['output']>;
|
|
4866
4924
|
jobId?: Maybe<Scalars['String']['output']>;
|
|
4867
4925
|
lastExecutionDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -10822,23 +10880,6 @@ export declare type CompassComponentPackageVersionsBySource = {
|
|
|
10822
10880
|
};
|
|
10823
10881
|
export declare type CompassComponentQueryResult = CompassSearchComponentConnection | QueryError;
|
|
10824
10882
|
export declare type CompassComponentResult = CompassComponent | QueryError;
|
|
10825
|
-
export declare type CompassComponentScorecardJiraIssueConnection = {
|
|
10826
|
-
__typename?: 'CompassComponentScorecardJiraIssueConnection';
|
|
10827
|
-
edges?: Maybe<Array<Maybe<CompassComponentScorecardJiraIssueEdge>>>;
|
|
10828
|
-
nodes?: Maybe<Array<Maybe<CompassJiraIssue>>>;
|
|
10829
|
-
pageInfo: PageInfo;
|
|
10830
|
-
};
|
|
10831
|
-
export declare type CompassComponentScorecardJiraIssueEdge = CompassJiraIssueEdge & {
|
|
10832
|
-
__typename?: 'CompassComponentScorecardJiraIssueEdge';
|
|
10833
|
-
cursor: Scalars['String']['output'];
|
|
10834
|
-
isActive?: Maybe<Scalars['Boolean']['output']>;
|
|
10835
|
-
node?: Maybe<CompassJiraIssue>;
|
|
10836
|
-
};
|
|
10837
|
-
export declare type CompassComponentScorecardJiraIssuesQuery = {
|
|
10838
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
10839
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
10840
|
-
};
|
|
10841
|
-
export declare type CompassComponentScorecardJiraIssuesQueryResult = CompassComponentScorecardJiraIssueConnection | QueryError;
|
|
10842
10883
|
export declare type CompassComponentScorecardRelationship = {
|
|
10843
10884
|
__typename?: 'CompassComponentScorecardRelationship';
|
|
10844
10885
|
activeWorkItems?: Maybe<CompassComponentScorecardWorkItemsQueryResult>;
|
|
@@ -11045,17 +11086,6 @@ export declare type CompassCreateCampaignPayload = Payload & {
|
|
|
11045
11086
|
errors?: Maybe<Array<MutationError>>;
|
|
11046
11087
|
success: Scalars['Boolean']['output'];
|
|
11047
11088
|
};
|
|
11048
|
-
export declare type CompassCreateComponentScorecardJiraIssueInput = {
|
|
11049
|
-
componentId: Scalars['ID']['input'];
|
|
11050
|
-
issueId: Scalars['ID']['input'];
|
|
11051
|
-
scorecardId: Scalars['ID']['input'];
|
|
11052
|
-
url: Scalars['URL']['input'];
|
|
11053
|
-
};
|
|
11054
|
-
export declare type CompassCreateComponentScorecardJiraIssuePayload = Payload & {
|
|
11055
|
-
__typename?: 'CompassCreateComponentScorecardJiraIssuePayload';
|
|
11056
|
-
errors?: Maybe<Array<MutationError>>;
|
|
11057
|
-
success: Scalars['Boolean']['output'];
|
|
11058
|
-
};
|
|
11059
11089
|
export declare type CompassCreateComponentScorecardWorkItemInput = {
|
|
11060
11090
|
componentId: Scalars['ID']['input'];
|
|
11061
11091
|
scorecardId: Scalars['ID']['input'];
|
|
@@ -12701,18 +12731,6 @@ export declare type CompassJqlMetricSourceInstancePermissions = {
|
|
|
12701
12731
|
revokePollingUser?: Maybe<CompassPermissionResult>;
|
|
12702
12732
|
updatePollingUser?: Maybe<CompassPermissionResult>;
|
|
12703
12733
|
};
|
|
12704
|
-
export declare type CompassJiraIssue = Node & {
|
|
12705
|
-
__typename?: 'CompassJiraIssue';
|
|
12706
|
-
changeMetadata: CompassChangeMetadata;
|
|
12707
|
-
id: Scalars['ID']['output'];
|
|
12708
|
-
issueId?: Maybe<Scalars['ID']['output']>;
|
|
12709
|
-
url: Scalars['URL']['output'];
|
|
12710
|
-
};
|
|
12711
|
-
export declare type CompassJiraIssueEdge = {
|
|
12712
|
-
cursor: Scalars['String']['output'];
|
|
12713
|
-
isActive?: Maybe<Scalars['Boolean']['output']>;
|
|
12714
|
-
node?: Maybe<CompassJiraIssue>;
|
|
12715
|
-
};
|
|
12716
12734
|
export declare type CompassLibraryScorecard = Node & {
|
|
12717
12735
|
__typename?: 'CompassLibraryScorecard';
|
|
12718
12736
|
applicationModel?: Maybe<CompassScorecardApplicationModel>;
|
|
@@ -14332,17 +14350,6 @@ export declare type CompassUpdateCampaignPayload = Payload & {
|
|
|
14332
14350
|
errors?: Maybe<Array<MutationError>>;
|
|
14333
14351
|
success: Scalars['Boolean']['output'];
|
|
14334
14352
|
};
|
|
14335
|
-
export declare type CompassUpdateComponentScorecardJiraIssueInput = {
|
|
14336
|
-
componentId: Scalars['ID']['input'];
|
|
14337
|
-
isActive: Scalars['Boolean']['input'];
|
|
14338
|
-
issueId: Scalars['ID']['input'];
|
|
14339
|
-
scorecardId: Scalars['ID']['input'];
|
|
14340
|
-
};
|
|
14341
|
-
export declare type CompassUpdateComponentScorecardJiraIssuePayload = Payload & {
|
|
14342
|
-
__typename?: 'CompassUpdateComponentScorecardJiraIssuePayload';
|
|
14343
|
-
errors?: Maybe<Array<MutationError>>;
|
|
14344
|
-
success: Scalars['Boolean']['output'];
|
|
14345
|
-
};
|
|
14346
14353
|
export declare type CompassUpdateComponentScorecardWorkItemInput = {
|
|
14347
14354
|
componentId: Scalars['ID']['input'];
|
|
14348
14355
|
isActive: Scalars['Boolean']['input'];
|
|
@@ -15392,6 +15399,7 @@ export declare type ConfluenceComment = {
|
|
|
15392
15399
|
latestVersion?: Maybe<ConfluenceContentVersion>;
|
|
15393
15400
|
links?: Maybe<ConfluenceCommentLinks>;
|
|
15394
15401
|
name?: Maybe<Scalars['String']['output']>;
|
|
15402
|
+
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
15395
15403
|
status?: Maybe<ConfluenceCommentStatus>;
|
|
15396
15404
|
};
|
|
15397
15405
|
export declare type ConfluenceCommentConnection = {
|
|
@@ -16544,6 +16552,7 @@ export declare type ConfluenceFooterComment = ConfluenceComment & Node & {
|
|
|
16544
16552
|
latestVersion?: Maybe<ConfluenceContentVersion>;
|
|
16545
16553
|
links?: Maybe<ConfluenceCommentLinks>;
|
|
16546
16554
|
name?: Maybe<Scalars['String']['output']>;
|
|
16555
|
+
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
16547
16556
|
status?: Maybe<ConfluenceCommentStatus>;
|
|
16548
16557
|
};
|
|
16549
16558
|
export declare type ConfluenceForgeContextToken = {
|
|
@@ -16665,6 +16674,7 @@ export declare type ConfluenceGlobalPageTemplate = {
|
|
|
16665
16674
|
name?: Maybe<Scalars['String']['output']>;
|
|
16666
16675
|
};
|
|
16667
16676
|
export declare enum ConfluenceGraphQlContentMode {
|
|
16677
|
+
Compact = "COMPACT",
|
|
16668
16678
|
Dense = "DENSE",
|
|
16669
16679
|
Standard = "STANDARD"
|
|
16670
16680
|
}
|
|
@@ -16757,6 +16767,7 @@ export declare type ConfluenceInlineComment = ConfluenceComment & Node & {
|
|
|
16757
16767
|
latestVersion?: Maybe<ConfluenceContentVersion>;
|
|
16758
16768
|
links?: Maybe<ConfluenceCommentLinks>;
|
|
16759
16769
|
name?: Maybe<Scalars['String']['output']>;
|
|
16770
|
+
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
16760
16771
|
resolutionStatus?: Maybe<ConfluenceInlineCommentResolutionStatus>;
|
|
16761
16772
|
status?: Maybe<ConfluenceCommentStatus>;
|
|
16762
16773
|
};
|
|
@@ -18677,7 +18688,8 @@ export declare type ConfluenceSpaceSettingsEditorVersions = {
|
|
|
18677
18688
|
};
|
|
18678
18689
|
export declare enum ConfluenceSpaceStatus {
|
|
18679
18690
|
Archived = "ARCHIVED",
|
|
18680
|
-
Current = "CURRENT"
|
|
18691
|
+
Current = "CURRENT",
|
|
18692
|
+
Trashed = "TRASHED"
|
|
18681
18693
|
}
|
|
18682
18694
|
export declare enum ConfluenceSpaceType {
|
|
18683
18695
|
Global = "GLOBAL",
|
|
@@ -35867,6 +35879,10 @@ export declare type GraphStore = {
|
|
|
35867
35879
|
focusAreaHasProjectBatch?: Maybe<GraphStoreBatchFocusAreaHasProjectConnection>;
|
|
35868
35880
|
focusAreaHasProjectInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectInverseConnection>;
|
|
35869
35881
|
focusAreaHasProjectInverseBatch?: Maybe<GraphStoreBatchFocusAreaHasProjectConnection>;
|
|
35882
|
+
focusAreaHasStatusUpdate?: Maybe<GraphStoreSimplifiedFocusAreaHasStatusUpdateConnection>;
|
|
35883
|
+
focusAreaHasStatusUpdateBatch?: Maybe<GraphStoreBatchFocusAreaHasStatusUpdateConnection>;
|
|
35884
|
+
focusAreaHasStatusUpdateInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasStatusUpdateInverseConnection>;
|
|
35885
|
+
focusAreaHasStatusUpdateInverseBatch?: Maybe<GraphStoreBatchFocusAreaHasStatusUpdateConnection>;
|
|
35870
35886
|
focusAreaHasWatcher?: Maybe<GraphStoreSimplifiedFocusAreaHasWatcherConnection>;
|
|
35871
35887
|
focusAreaHasWatcherBatch?: Maybe<GraphStoreBatchFocusAreaHasWatcherConnection>;
|
|
35872
35888
|
focusAreaHasWatcherInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasWatcherInverseConnection>;
|
|
@@ -37633,6 +37649,32 @@ export declare type GraphStoreFocusAreaHasProjectInverseBatchArgs = {
|
|
|
37633
37649
|
ids: Array<Scalars['ID']['input']>;
|
|
37634
37650
|
sort?: InputMaybe<GraphStoreFocusAreaHasProjectSortInput>;
|
|
37635
37651
|
};
|
|
37652
|
+
export declare type GraphStoreFocusAreaHasStatusUpdateArgs = {
|
|
37653
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
37654
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37655
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37656
|
+
id: Scalars['ID']['input'];
|
|
37657
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasStatusUpdateSortInput>;
|
|
37658
|
+
};
|
|
37659
|
+
export declare type GraphStoreFocusAreaHasStatusUpdateBatchArgs = {
|
|
37660
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
37661
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37662
|
+
ids: Array<Scalars['ID']['input']>;
|
|
37663
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasStatusUpdateSortInput>;
|
|
37664
|
+
};
|
|
37665
|
+
export declare type GraphStoreFocusAreaHasStatusUpdateInverseArgs = {
|
|
37666
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
37667
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37668
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37669
|
+
id: Scalars['ID']['input'];
|
|
37670
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasStatusUpdateSortInput>;
|
|
37671
|
+
};
|
|
37672
|
+
export declare type GraphStoreFocusAreaHasStatusUpdateInverseBatchArgs = {
|
|
37673
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
37674
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37675
|
+
ids: Array<Scalars['ID']['input']>;
|
|
37676
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasStatusUpdateSortInput>;
|
|
37677
|
+
};
|
|
37636
37678
|
export declare type GraphStoreFocusAreaHasWatcherArgs = {
|
|
37637
37679
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
37638
37680
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -42403,6 +42445,47 @@ export declare type GraphStoreBatchFocusAreaHasProjectStartNode = {
|
|
|
42403
42445
|
id: Scalars['ID']['output'];
|
|
42404
42446
|
};
|
|
42405
42447
|
export declare type GraphStoreBatchFocusAreaHasProjectStartUnion = MercuryFocusArea;
|
|
42448
|
+
export declare type GraphStoreBatchFocusAreaHasStatusUpdateConnection = HasPageInfo & {
|
|
42449
|
+
__typename?: 'GraphStoreBatchFocusAreaHasStatusUpdateConnection';
|
|
42450
|
+
edges: Array<Maybe<GraphStoreBatchFocusAreaHasStatusUpdateEdge>>;
|
|
42451
|
+
nodes: Array<Maybe<GraphStoreBatchFocusAreaHasStatusUpdateNode>>;
|
|
42452
|
+
pageInfo: PageInfo;
|
|
42453
|
+
};
|
|
42454
|
+
export declare type GraphStoreBatchFocusAreaHasStatusUpdateEdge = {
|
|
42455
|
+
__typename?: 'GraphStoreBatchFocusAreaHasStatusUpdateEdge';
|
|
42456
|
+
node: GraphStoreBatchFocusAreaHasStatusUpdateInnerConnection;
|
|
42457
|
+
};
|
|
42458
|
+
export declare type GraphStoreBatchFocusAreaHasStatusUpdateEndNode = {
|
|
42459
|
+
__typename?: 'GraphStoreBatchFocusAreaHasStatusUpdateEndNode';
|
|
42460
|
+
data?: Maybe<GraphStoreBatchFocusAreaHasStatusUpdateEndUnion>;
|
|
42461
|
+
id: Scalars['ID']['output'];
|
|
42462
|
+
};
|
|
42463
|
+
export declare type GraphStoreBatchFocusAreaHasStatusUpdateEndUnion = MercuryFocusAreaStatusUpdate;
|
|
42464
|
+
export declare type GraphStoreBatchFocusAreaHasStatusUpdateInnerConnection = {
|
|
42465
|
+
__typename?: 'GraphStoreBatchFocusAreaHasStatusUpdateInnerConnection';
|
|
42466
|
+
edges: Array<Maybe<GraphStoreBatchFocusAreaHasStatusUpdateInnerEdge>>;
|
|
42467
|
+
nodes: Array<Maybe<GraphStoreBatchFocusAreaHasStatusUpdateNode>>;
|
|
42468
|
+
requestedId: Scalars['ID']['output'];
|
|
42469
|
+
};
|
|
42470
|
+
export declare type GraphStoreBatchFocusAreaHasStatusUpdateInnerEdge = {
|
|
42471
|
+
__typename?: 'GraphStoreBatchFocusAreaHasStatusUpdateInnerEdge';
|
|
42472
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42473
|
+
node: GraphStoreBatchFocusAreaHasStatusUpdateNode;
|
|
42474
|
+
};
|
|
42475
|
+
export declare type GraphStoreBatchFocusAreaHasStatusUpdateNode = Node & {
|
|
42476
|
+
__typename?: 'GraphStoreBatchFocusAreaHasStatusUpdateNode';
|
|
42477
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42478
|
+
from: GraphStoreBatchFocusAreaHasStatusUpdateStartNode;
|
|
42479
|
+
id: Scalars['ID']['output'];
|
|
42480
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42481
|
+
to: GraphStoreBatchFocusAreaHasStatusUpdateEndNode;
|
|
42482
|
+
};
|
|
42483
|
+
export declare type GraphStoreBatchFocusAreaHasStatusUpdateStartNode = {
|
|
42484
|
+
__typename?: 'GraphStoreBatchFocusAreaHasStatusUpdateStartNode';
|
|
42485
|
+
data?: Maybe<GraphStoreBatchFocusAreaHasStatusUpdateStartUnion>;
|
|
42486
|
+
id: Scalars['ID']['output'];
|
|
42487
|
+
};
|
|
42488
|
+
export declare type GraphStoreBatchFocusAreaHasStatusUpdateStartUnion = MercuryFocusArea;
|
|
42406
42489
|
export declare type GraphStoreBatchFocusAreaHasWatcherConnection = HasPageInfo & {
|
|
42407
42490
|
__typename?: 'GraphStoreBatchFocusAreaHasWatcherConnection';
|
|
42408
42491
|
edges: Array<Maybe<GraphStoreBatchFocusAreaHasWatcherEdge>>;
|
|
@@ -44390,6 +44473,9 @@ export declare type GraphStoreFocusAreaHasPageSortInput = {
|
|
|
44390
44473
|
export declare type GraphStoreFocusAreaHasProjectSortInput = {
|
|
44391
44474
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44392
44475
|
};
|
|
44476
|
+
export declare type GraphStoreFocusAreaHasStatusUpdateSortInput = {
|
|
44477
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44478
|
+
};
|
|
44393
44479
|
export declare type GraphStoreFocusAreaHasWatcherSortInput = {
|
|
44394
44480
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44395
44481
|
};
|
|
@@ -50949,6 +51035,34 @@ export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseEdge = {
|
|
|
50949
51035
|
};
|
|
50950
51036
|
export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseUnion = MercuryFocusArea;
|
|
50951
51037
|
export declare type GraphStoreSimplifiedFocusAreaHasProjectUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
51038
|
+
export declare type GraphStoreSimplifiedFocusAreaHasStatusUpdateConnection = HasPageInfo & {
|
|
51039
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasStatusUpdateConnection';
|
|
51040
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasStatusUpdateEdge>>>;
|
|
51041
|
+
pageInfo: PageInfo;
|
|
51042
|
+
};
|
|
51043
|
+
export declare type GraphStoreSimplifiedFocusAreaHasStatusUpdateEdge = {
|
|
51044
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasStatusUpdateEdge';
|
|
51045
|
+
createdAt: Scalars['DateTime']['output'];
|
|
51046
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
51047
|
+
id: Scalars['ID']['output'];
|
|
51048
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
51049
|
+
node?: Maybe<GraphStoreSimplifiedFocusAreaHasStatusUpdateUnion>;
|
|
51050
|
+
};
|
|
51051
|
+
export declare type GraphStoreSimplifiedFocusAreaHasStatusUpdateInverseConnection = HasPageInfo & {
|
|
51052
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasStatusUpdateInverseConnection';
|
|
51053
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasStatusUpdateInverseEdge>>>;
|
|
51054
|
+
pageInfo: PageInfo;
|
|
51055
|
+
};
|
|
51056
|
+
export declare type GraphStoreSimplifiedFocusAreaHasStatusUpdateInverseEdge = {
|
|
51057
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasStatusUpdateInverseEdge';
|
|
51058
|
+
createdAt: Scalars['DateTime']['output'];
|
|
51059
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
51060
|
+
id: Scalars['ID']['output'];
|
|
51061
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
51062
|
+
node?: Maybe<GraphStoreSimplifiedFocusAreaHasStatusUpdateInverseUnion>;
|
|
51063
|
+
};
|
|
51064
|
+
export declare type GraphStoreSimplifiedFocusAreaHasStatusUpdateInverseUnion = MercuryFocusArea;
|
|
51065
|
+
export declare type GraphStoreSimplifiedFocusAreaHasStatusUpdateUnion = MercuryFocusAreaStatusUpdate;
|
|
50952
51066
|
export declare type GraphStoreSimplifiedFocusAreaHasWatcherConnection = HasPageInfo & {
|
|
50953
51067
|
__typename?: 'GraphStoreSimplifiedFocusAreaHasWatcherConnection';
|
|
50954
51068
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasWatcherEdge>>>;
|
|
@@ -62594,6 +62708,29 @@ export declare type JiraAffectedServicesFieldPayload = Payload & {
|
|
|
62594
62708
|
export declare type JiraAffectedServicesInput = {
|
|
62595
62709
|
serviceId: Scalars['ID']['input'];
|
|
62596
62710
|
};
|
|
62711
|
+
export declare type JiraAggregatedDate = JiraDatePickerField | JiraDateTimePickerField;
|
|
62712
|
+
export declare type JiraAggregatedTimelineField = JiraIssueField & JiraTimelineVirtualField & Node & {
|
|
62713
|
+
__typename?: 'JiraAggregatedTimelineField';
|
|
62714
|
+
aggregatedEndDateViewField?: Maybe<JiraAggregatedDate>;
|
|
62715
|
+
aggregatedStartDateViewField?: Maybe<JiraAggregatedDate>;
|
|
62716
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
62717
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
62718
|
+
fieldId: Scalars['String']['output'];
|
|
62719
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
62720
|
+
id: Scalars['ID']['output'];
|
|
62721
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
62722
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
62723
|
+
isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
|
|
62724
|
+
issue?: Maybe<JiraIssue>;
|
|
62725
|
+
name: Scalars['String']['output'];
|
|
62726
|
+
type: Scalars['String']['output'];
|
|
62727
|
+
};
|
|
62728
|
+
export declare type JiraAggregatedTimelineFieldAggregatedEndDateViewFieldArgs = {
|
|
62729
|
+
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
62730
|
+
};
|
|
62731
|
+
export declare type JiraAggregatedTimelineFieldAggregatedStartDateViewFieldArgs = {
|
|
62732
|
+
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
62733
|
+
};
|
|
62597
62734
|
export declare type JiraAiAgentSession = {
|
|
62598
62735
|
__typename?: 'JiraAiAgentSession';
|
|
62599
62736
|
agent?: Maybe<User>;
|
|
@@ -63615,11 +63752,6 @@ export declare type JiraBacklogData = {
|
|
|
63615
63752
|
supportsPages?: Maybe<Scalars['Boolean']['output']>;
|
|
63616
63753
|
versionData?: Maybe<JiraBacklogVersionData>;
|
|
63617
63754
|
};
|
|
63618
|
-
export declare enum JiraBacklogDestination {
|
|
63619
|
-
Backlog = "BACKLOG",
|
|
63620
|
-
Board = "BOARD",
|
|
63621
|
-
Sprint = "SPRINT"
|
|
63622
|
-
}
|
|
63623
63755
|
export declare type JiraBacklogEpicConfig = {
|
|
63624
63756
|
__typename?: 'JiraBacklogEpicConfig';
|
|
63625
63757
|
colorFieldId?: Maybe<Scalars['String']['output']>;
|
|
@@ -64232,6 +64364,7 @@ export declare type JiraBoardViewColumnLayout = Node & {
|
|
|
64232
64364
|
export declare type JiraBoardViewColumnLayoutCellsArgs = {
|
|
64233
64365
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
64234
64366
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
64367
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
64235
64368
|
};
|
|
64236
64369
|
export declare type JiraBoardViewFieldCardOption = JiraBoardViewCardOption & {
|
|
64237
64370
|
__typename?: 'JiraBoardViewFieldCardOption';
|
|
@@ -65168,6 +65301,18 @@ export declare enum JiraClassificationLevelType {
|
|
|
65168
65301
|
System = "SYSTEM",
|
|
65169
65302
|
User = "USER"
|
|
65170
65303
|
}
|
|
65304
|
+
export declare type JiraClearBoardIssueCardCoverInput = {
|
|
65305
|
+
issueId: Scalars['ID']['input'];
|
|
65306
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
65307
|
+
viewId: Scalars['ID']['input'];
|
|
65308
|
+
};
|
|
65309
|
+
export declare type JiraClearBoardIssueCardCoverPayload = Payload & {
|
|
65310
|
+
__typename?: 'JiraClearBoardIssueCardCoverPayload';
|
|
65311
|
+
boardView?: Maybe<JiraBoardView>;
|
|
65312
|
+
errors?: Maybe<Array<MutationError>>;
|
|
65313
|
+
issue?: Maybe<JiraIssue>;
|
|
65314
|
+
success: Scalars['Boolean']['output'];
|
|
65315
|
+
};
|
|
65171
65316
|
export declare type JiraClearableDateFieldInput = {
|
|
65172
65317
|
date?: InputMaybe<JiraDateInput>;
|
|
65173
65318
|
fieldId: Scalars['ID']['input'];
|
|
@@ -66207,8 +66352,7 @@ export declare type JiraCreateEmptyActivityConfigurationInput = {
|
|
|
66207
66352
|
export declare type JiraCreateFieldSchemeInput = {
|
|
66208
66353
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
66209
66354
|
name: Scalars['String']['input'];
|
|
66210
|
-
|
|
66211
|
-
sourceFieldSchemeId?: InputMaybe<Scalars['ID']['input']>;
|
|
66355
|
+
sourceOfItems?: InputMaybe<JiraFieldSchemeSourceInput>;
|
|
66212
66356
|
};
|
|
66213
66357
|
export declare type JiraCreateFormattingRuleInput = {
|
|
66214
66358
|
afterRuleId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -67827,6 +67971,11 @@ export declare type JiraFieldSchemePayload = Payload & {
|
|
|
67827
67971
|
fieldScheme?: Maybe<JiraFieldScheme>;
|
|
67828
67972
|
success: Scalars['Boolean']['output'];
|
|
67829
67973
|
};
|
|
67974
|
+
export declare type JiraFieldSchemeSourceInput = {
|
|
67975
|
+
sourceFieldConfigurationSchemeId?: InputMaybe<Scalars['ID']['input']>;
|
|
67976
|
+
sourceFieldSchemeId?: InputMaybe<Scalars['ID']['input']>;
|
|
67977
|
+
useDefaultFieldConfigScheme?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67978
|
+
};
|
|
67830
67979
|
export declare type JiraFieldSchemesConnection = {
|
|
67831
67980
|
__typename?: 'JiraFieldSchemesConnection';
|
|
67832
67981
|
edges?: Maybe<Array<Maybe<JiraFieldSchemesEdge>>>;
|
|
@@ -69080,6 +69229,7 @@ export declare type JiraHydrateJqlInput = {
|
|
|
69080
69229
|
filterId?: InputMaybe<Scalars['ID']['input']>;
|
|
69081
69230
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
69082
69231
|
lastUsedJqlForIssueNavigator?: InputMaybe<JiraJqlScopeInput>;
|
|
69232
|
+
viewQueryInput?: InputMaybe<JiraIssueSearchViewQueryInput>;
|
|
69083
69233
|
};
|
|
69084
69234
|
export declare enum JiraIncidentPriority {
|
|
69085
69235
|
P1 = "P1",
|
|
@@ -69097,28 +69247,6 @@ export declare type JiraInitializeProjectNotificationPreferencesPayload = Payloa
|
|
|
69097
69247
|
projectPreferences?: Maybe<JiraNotificationProjectPreferences>;
|
|
69098
69248
|
success: Scalars['Boolean']['output'];
|
|
69099
69249
|
};
|
|
69100
|
-
export declare type JiraInlineIssueCreateInput = {
|
|
69101
|
-
boardId?: InputMaybe<Scalars['ID']['input']>;
|
|
69102
|
-
destination?: InputMaybe<JiraBacklogDestination>;
|
|
69103
|
-
fields: JiraIssueFieldsInput;
|
|
69104
|
-
issueTypeId: Scalars['ID']['input'];
|
|
69105
|
-
projectId: Scalars['ID']['input'];
|
|
69106
|
-
rank?: InputMaybe<JiraIssueCreateRankInput>;
|
|
69107
|
-
};
|
|
69108
|
-
export declare type JiraInlineIssueCreatePayload = Payload & {
|
|
69109
|
-
__typename?: 'JiraInlineIssueCreatePayload';
|
|
69110
|
-
appliedFields?: Maybe<Array<JiraField>>;
|
|
69111
|
-
errors?: Maybe<Array<MutationError>>;
|
|
69112
|
-
issue?: Maybe<JiraIssue>;
|
|
69113
|
-
skippedFields?: Maybe<Array<JiraField>>;
|
|
69114
|
-
success: Scalars['Boolean']['output'];
|
|
69115
|
-
};
|
|
69116
|
-
export declare type JiraInlineIssuesCreatePayload = Payload & {
|
|
69117
|
-
__typename?: 'JiraInlineIssuesCreatePayload';
|
|
69118
|
-
errors?: Maybe<Array<MutationError>>;
|
|
69119
|
-
issues?: Maybe<Array<JiraInlineIssueCreatePayload>>;
|
|
69120
|
-
success: Scalars['Boolean']['output'];
|
|
69121
|
-
};
|
|
69122
69250
|
export declare enum JiraInstallDeploymentsBannerPrecondition {
|
|
69123
69251
|
DeploymentsEmptyState = "DEPLOYMENTS_EMPTY_STATE",
|
|
69124
69252
|
FeatureNotEnabled = "FEATURE_NOT_ENABLED",
|
|
@@ -69160,6 +69288,8 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
69160
69288
|
configurationUrl?: Maybe<Scalars['URL']['output']>;
|
|
69161
69289
|
confluenceLinks?: Maybe<JiraConfluenceRemoteIssueLinkConnection>;
|
|
69162
69290
|
confluenceMentionedLinks?: Maybe<JiraConfluenceRemoteIssueLinkConnection>;
|
|
69291
|
+
connectActivityPanels?: Maybe<JiraIssueConnectActivityPanelConnection>;
|
|
69292
|
+
connectBackgroundScripts?: Maybe<JiraIssueConnectBackgroundScriptConnection>;
|
|
69163
69293
|
connectOperations?: Maybe<JiraIssueConnectOperationConnection>;
|
|
69164
69294
|
contentPanels?: Maybe<JiraIssueContentPanelConnection>;
|
|
69165
69295
|
coverMedia?: Maybe<JiraWorkManagementBackground>;
|
|
@@ -69331,6 +69461,18 @@ export declare type JiraIssueConfluenceMentionedLinksArgs = {
|
|
|
69331
69461
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69332
69462
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
69333
69463
|
};
|
|
69464
|
+
export declare type JiraIssueConnectActivityPanelsArgs = {
|
|
69465
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69466
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
69467
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69468
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
69469
|
+
};
|
|
69470
|
+
export declare type JiraIssueConnectBackgroundScriptsArgs = {
|
|
69471
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69472
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
69473
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69474
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
69475
|
+
};
|
|
69334
69476
|
export declare type JiraIssueConnectOperationsArgs = {
|
|
69335
69477
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69336
69478
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -69700,6 +69842,40 @@ export declare type JiraIssueCommits = {
|
|
|
69700
69842
|
export declare type JiraIssueCommitsInput = {
|
|
69701
69843
|
filterLegacy?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69702
69844
|
};
|
|
69845
|
+
export declare type JiraIssueConnectActivityPanel = {
|
|
69846
|
+
__typename?: 'JiraIssueConnectActivityPanel';
|
|
69847
|
+
addonKey?: Maybe<Scalars['String']['output']>;
|
|
69848
|
+
moduleKey?: Maybe<Scalars['String']['output']>;
|
|
69849
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
69850
|
+
options?: Maybe<Scalars['String']['output']>;
|
|
69851
|
+
};
|
|
69852
|
+
export declare type JiraIssueConnectActivityPanelConnection = {
|
|
69853
|
+
__typename?: 'JiraIssueConnectActivityPanelConnection';
|
|
69854
|
+
edges?: Maybe<Array<Maybe<JiraIssueConnectActivityPanelEdge>>>;
|
|
69855
|
+
pageInfo: PageInfo;
|
|
69856
|
+
};
|
|
69857
|
+
export declare type JiraIssueConnectActivityPanelEdge = {
|
|
69858
|
+
__typename?: 'JiraIssueConnectActivityPanelEdge';
|
|
69859
|
+
cursor: Scalars['String']['output'];
|
|
69860
|
+
node?: Maybe<JiraIssueConnectActivityPanel>;
|
|
69861
|
+
};
|
|
69862
|
+
export declare type JiraIssueConnectBackgroundScript = {
|
|
69863
|
+
__typename?: 'JiraIssueConnectBackgroundScript';
|
|
69864
|
+
addonKey?: Maybe<Scalars['String']['output']>;
|
|
69865
|
+
moduleKey?: Maybe<Scalars['String']['output']>;
|
|
69866
|
+
options?: Maybe<Scalars['String']['output']>;
|
|
69867
|
+
shouldReloadOnRefresh?: Maybe<Scalars['Boolean']['output']>;
|
|
69868
|
+
};
|
|
69869
|
+
export declare type JiraIssueConnectBackgroundScriptConnection = {
|
|
69870
|
+
__typename?: 'JiraIssueConnectBackgroundScriptConnection';
|
|
69871
|
+
edges?: Maybe<Array<Maybe<JiraIssueConnectBackgroundScriptEdge>>>;
|
|
69872
|
+
pageInfo: PageInfo;
|
|
69873
|
+
};
|
|
69874
|
+
export declare type JiraIssueConnectBackgroundScriptEdge = {
|
|
69875
|
+
__typename?: 'JiraIssueConnectBackgroundScriptEdge';
|
|
69876
|
+
cursor: Scalars['String']['output'];
|
|
69877
|
+
node?: Maybe<JiraIssueConnectBackgroundScript>;
|
|
69878
|
+
};
|
|
69703
69879
|
export declare type JiraIssueConnectOperation = {
|
|
69704
69880
|
__typename?: 'JiraIssueConnectOperation';
|
|
69705
69881
|
href?: Maybe<Scalars['String']['output']>;
|
|
@@ -71114,6 +71290,10 @@ export declare type JiraIssueSection = {
|
|
|
71114
71290
|
msg?: Maybe<Scalars['String']['output']>;
|
|
71115
71291
|
sub?: Maybe<Scalars['String']['output']>;
|
|
71116
71292
|
};
|
|
71293
|
+
export declare type JiraIssueStreamHubEventPayloadComment = {
|
|
71294
|
+
__typename?: 'JiraIssueStreamHubEventPayloadComment';
|
|
71295
|
+
id: Scalars['Int']['output'];
|
|
71296
|
+
};
|
|
71117
71297
|
export declare type JiraIssueStreamHubEventPayloadProject = {
|
|
71118
71298
|
__typename?: 'JiraIssueStreamHubEventPayloadProject';
|
|
71119
71299
|
id: Scalars['Int']['output'];
|
|
@@ -75403,6 +75583,7 @@ export declare type JiraPriorityInput = {
|
|
|
75403
75583
|
export declare type JiraProductDiscoveryIssueEventPayload = {
|
|
75404
75584
|
__typename?: 'JiraProductDiscoveryIssueEventPayload';
|
|
75405
75585
|
actionerAccountId?: Maybe<Scalars['String']['output']>;
|
|
75586
|
+
comment?: Maybe<JiraIssueStreamHubEventPayloadComment>;
|
|
75406
75587
|
project: JiraIssueStreamHubEventPayloadProject;
|
|
75407
75588
|
resource: Scalars['String']['output'];
|
|
75408
75589
|
type: Scalars['String']['output'];
|
|
@@ -78394,6 +78575,7 @@ export declare type JiraResourcesResult = {
|
|
|
78394
78575
|
__typename?: 'JiraResourcesResult';
|
|
78395
78576
|
deletableCount?: Maybe<Scalars['Long']['output']>;
|
|
78396
78577
|
edges?: Maybe<Array<Maybe<JiraResourceNode>>>;
|
|
78578
|
+
next?: Maybe<Scalars['String']['output']>;
|
|
78397
78579
|
totalCount?: Maybe<Scalars['Long']['output']>;
|
|
78398
78580
|
};
|
|
78399
78581
|
export declare enum JiraResourcesSortDirection {
|
|
@@ -81521,7 +81703,7 @@ export declare enum JiraTimeUnit {
|
|
|
81521
81703
|
Minute = "MINUTE",
|
|
81522
81704
|
Week = "WEEK"
|
|
81523
81705
|
}
|
|
81524
|
-
export declare type JiraTimelineField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
|
|
81706
|
+
export declare type JiraTimelineField = JiraIssueField & JiraIssueFieldConfiguration & JiraTimelineVirtualField & Node & {
|
|
81525
81707
|
__typename?: 'JiraTimelineField';
|
|
81526
81708
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
81527
81709
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -81604,6 +81786,9 @@ export declare type JiraTimelineViewViewSettingsArgs = {
|
|
|
81604
81786
|
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
81605
81787
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
81606
81788
|
};
|
|
81789
|
+
export declare type JiraTimelineVirtualField = {
|
|
81790
|
+
issue?: Maybe<JiraIssue>;
|
|
81791
|
+
};
|
|
81607
81792
|
export declare type JiraToolchain = {
|
|
81608
81793
|
__typename?: 'JiraToolchain';
|
|
81609
81794
|
hasViewDevToolsPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -82605,6 +82790,13 @@ export declare type JiraUserPreferencesMutationSetShowRedactionChangeBoardingOnI
|
|
|
82605
82790
|
export declare type JiraUserPreferencesMutationSetShowRedactionChangeBoardingOnIssueViewAsViewerArgs = {
|
|
82606
82791
|
show: Scalars['Boolean']['input'];
|
|
82607
82792
|
};
|
|
82793
|
+
export declare type JiraUserSegRedirectAdvice = {
|
|
82794
|
+
__typename?: 'JiraUserSegRedirectAdvice';
|
|
82795
|
+
firstActiveDate?: Maybe<Scalars['String']['output']>;
|
|
82796
|
+
lastUserSegmentedDate?: Maybe<Scalars['String']['output']>;
|
|
82797
|
+
redirect?: Maybe<Scalars['Boolean']['output']>;
|
|
82798
|
+
teamType?: Maybe<Scalars['String']['output']>;
|
|
82799
|
+
};
|
|
82608
82800
|
export declare type JiraUserSegmentation = {
|
|
82609
82801
|
__typename?: 'JiraUserSegmentation';
|
|
82610
82802
|
role?: Maybe<Scalars['String']['output']>;
|
|
@@ -89744,6 +89936,10 @@ export declare enum MercuryCostType {
|
|
|
89744
89936
|
Labor = "LABOR",
|
|
89745
89937
|
NonLabor = "NON_LABOR"
|
|
89746
89938
|
}
|
|
89939
|
+
export declare type MercuryCreateBaseCustomFieldDefinitionInput = {
|
|
89940
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
89941
|
+
name: Scalars['String']['input'];
|
|
89942
|
+
};
|
|
89747
89943
|
export declare type MercuryCreateChangeProposalCommentInput = {
|
|
89748
89944
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
89749
89945
|
content: Scalars['String']['input'];
|
|
@@ -89794,6 +89990,11 @@ export declare type MercuryCreateCommentPayload = Payload & {
|
|
|
89794
89990
|
errors?: Maybe<Array<MutationError>>;
|
|
89795
89991
|
success: Scalars['Boolean']['output'];
|
|
89796
89992
|
};
|
|
89993
|
+
export declare type MercuryCreateCoreCustomFieldDefinitionInput = {
|
|
89994
|
+
numberField?: InputMaybe<MercuryCreateNumberCustomFieldDefinitionInput>;
|
|
89995
|
+
singleSelectField?: InputMaybe<MercuryCreateSingleSelectCustomFieldDefinitionInput>;
|
|
89996
|
+
textField?: InputMaybe<MercuryCreateTextCustomFieldDefinitionInput>;
|
|
89997
|
+
};
|
|
89797
89998
|
export declare type MercuryCreateCostSubtypeInput = {
|
|
89798
89999
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
89799
90000
|
costType: MercuryCostType;
|
|
@@ -89807,6 +90008,12 @@ export declare type MercuryCreateCostSubtypePayload = Payload & {
|
|
|
89807
90008
|
errors?: Maybe<Array<MutationError>>;
|
|
89808
90009
|
success: Scalars['Boolean']['output'];
|
|
89809
90010
|
};
|
|
90011
|
+
export declare type MercuryCreateCustomFieldDefinitionPayload = {
|
|
90012
|
+
__typename?: 'MercuryCreateCustomFieldDefinitionPayload';
|
|
90013
|
+
customFieldDefinition?: Maybe<MercuryCustomFieldDefinition>;
|
|
90014
|
+
errors?: Maybe<Array<MutationError>>;
|
|
90015
|
+
success: Scalars['Boolean']['output'];
|
|
90016
|
+
};
|
|
89810
90017
|
export declare type MercuryCreateFiscalCalendarConfigurationInput = {
|
|
89811
90018
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
89812
90019
|
startMonthNumber: Scalars['Int']['input'];
|
|
@@ -89836,6 +90043,10 @@ export declare type MercuryCreateFocusAreaChangeInput = {
|
|
|
89836
90043
|
focusAreaTypeId: Scalars['ID']['input'];
|
|
89837
90044
|
targetFocusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
89838
90045
|
};
|
|
90046
|
+
export declare type MercuryCreateFocusAreaCustomFieldDefinitionInput = {
|
|
90047
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
90048
|
+
coreCustomFieldDefinition?: InputMaybe<MercuryCreateCoreCustomFieldDefinitionInput>;
|
|
90049
|
+
};
|
|
89839
90050
|
export declare type MercuryCreateFocusAreaInput = {
|
|
89840
90051
|
cloudId: Scalars['ID']['input'];
|
|
89841
90052
|
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -89885,6 +90096,9 @@ export declare type MercuryCreateInvestmentCategorySetPayload = Payload & {
|
|
|
89885
90096
|
errors?: Maybe<Array<MutationError>>;
|
|
89886
90097
|
success: Scalars['Boolean']['output'];
|
|
89887
90098
|
};
|
|
90099
|
+
export declare type MercuryCreateNumberCustomFieldDefinitionInput = {
|
|
90100
|
+
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
90101
|
+
};
|
|
89888
90102
|
export declare type MercuryCreatePortfolioFocusAreasInput = {
|
|
89889
90103
|
cloudId: Scalars['ID']['input'];
|
|
89890
90104
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
@@ -89897,6 +90111,9 @@ export declare type MercuryCreatePortfolioPayload = Payload & {
|
|
|
89897
90111
|
errors?: Maybe<Array<MutationError>>;
|
|
89898
90112
|
success: Scalars['Boolean']['output'];
|
|
89899
90113
|
};
|
|
90114
|
+
export declare type MercuryCreateSingleSelectCustomFieldDefinitionInput = {
|
|
90115
|
+
options: Array<Scalars['String']['input']>;
|
|
90116
|
+
};
|
|
89900
90117
|
export declare type MercuryCreateStrategicEventCommentInput = {
|
|
89901
90118
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
89902
90119
|
content: Scalars['String']['input'];
|
|
@@ -89921,6 +90138,50 @@ export declare type MercuryCreateStrategicEventPayload = Payload & {
|
|
|
89921
90138
|
errors?: Maybe<Array<MutationError>>;
|
|
89922
90139
|
success: Scalars['Boolean']['output'];
|
|
89923
90140
|
};
|
|
90141
|
+
export declare type MercuryCreateTextCustomFieldDefinitionInput = {
|
|
90142
|
+
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
90143
|
+
};
|
|
90144
|
+
export declare type MercuryCustomField = {
|
|
90145
|
+
createdBy?: Maybe<User>;
|
|
90146
|
+
createdDate: Scalars['DateTime']['output'];
|
|
90147
|
+
definition?: Maybe<MercuryCustomFieldDefinition>;
|
|
90148
|
+
updatedBy?: Maybe<User>;
|
|
90149
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
90150
|
+
};
|
|
90151
|
+
export declare type MercuryCustomFieldDefinition = {
|
|
90152
|
+
createdBy?: Maybe<User>;
|
|
90153
|
+
createdDate: Scalars['DateTime']['output'];
|
|
90154
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
90155
|
+
id: Scalars['ID']['output'];
|
|
90156
|
+
name: Scalars['String']['output'];
|
|
90157
|
+
scope: MercuryCustomFieldDefinitionScope;
|
|
90158
|
+
updatedBy?: Maybe<User>;
|
|
90159
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
90160
|
+
};
|
|
90161
|
+
export declare type MercuryCustomFieldDefinitionConnection = {
|
|
90162
|
+
__typename?: 'MercuryCustomFieldDefinitionConnection';
|
|
90163
|
+
edges?: Maybe<Array<MercuryCustomFieldDefinitionEdge>>;
|
|
90164
|
+
pageInfo: PageInfo;
|
|
90165
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
90166
|
+
};
|
|
90167
|
+
export declare type MercuryCustomFieldDefinitionEdge = {
|
|
90168
|
+
__typename?: 'MercuryCustomFieldDefinitionEdge';
|
|
90169
|
+
cursor: Scalars['String']['output'];
|
|
90170
|
+
node?: Maybe<MercuryCustomFieldDefinition>;
|
|
90171
|
+
};
|
|
90172
|
+
export declare type MercuryCustomFieldDefinitionScope = {
|
|
90173
|
+
entityType: Scalars['String']['output'];
|
|
90174
|
+
};
|
|
90175
|
+
export declare type MercuryCustomFieldInput = {
|
|
90176
|
+
numberField?: InputMaybe<MercuryNumberCustomFieldInput>;
|
|
90177
|
+
singleSelectField?: InputMaybe<MercurySingleSelectCustomFieldInput>;
|
|
90178
|
+
textField?: InputMaybe<MercuryTextCustomFieldInput>;
|
|
90179
|
+
};
|
|
90180
|
+
export declare type MercuryCustomSelectFieldOption = {
|
|
90181
|
+
__typename?: 'MercuryCustomSelectFieldOption';
|
|
90182
|
+
id: Scalars['ID']['output'];
|
|
90183
|
+
value: Scalars['String']['output'];
|
|
90184
|
+
};
|
|
89924
90185
|
export declare type MercuryDeleteAllPreferenceInput = {
|
|
89925
90186
|
cloudId: Scalars['ID']['input'];
|
|
89926
90187
|
};
|
|
@@ -89979,6 +90240,14 @@ export declare type MercuryDeleteCostSubtypePayload = Payload & {
|
|
|
89979
90240
|
errors?: Maybe<Array<MutationError>>;
|
|
89980
90241
|
success: Scalars['Boolean']['output'];
|
|
89981
90242
|
};
|
|
90243
|
+
export declare type MercuryDeleteCustomFieldDefinitionInput = {
|
|
90244
|
+
id: Scalars['ID']['input'];
|
|
90245
|
+
};
|
|
90246
|
+
export declare type MercuryDeleteCustomFieldDefinitionPayload = {
|
|
90247
|
+
__typename?: 'MercuryDeleteCustomFieldDefinitionPayload';
|
|
90248
|
+
errors?: Maybe<Array<MutationError>>;
|
|
90249
|
+
success: Scalars['Boolean']['output'];
|
|
90250
|
+
};
|
|
89982
90251
|
export declare type MercuryDeleteFocusAreaGoalLinkInput = {
|
|
89983
90252
|
cloudId: Scalars['ID']['input'];
|
|
89984
90253
|
id: Scalars['ID']['input'];
|
|
@@ -90042,6 +90311,14 @@ export declare type MercuryDeleteFocusAreaWorkLinksPayload = Payload & {
|
|
|
90042
90311
|
errors?: Maybe<Array<MutationError>>;
|
|
90043
90312
|
success: Scalars['Boolean']['output'];
|
|
90044
90313
|
};
|
|
90314
|
+
export declare type MercuryDeleteInvestmentCategorySetInput = {
|
|
90315
|
+
id: Scalars['ID']['input'];
|
|
90316
|
+
};
|
|
90317
|
+
export declare type MercuryDeleteInvestmentCategorySetPayload = Payload & {
|
|
90318
|
+
__typename?: 'MercuryDeleteInvestmentCategorySetPayload';
|
|
90319
|
+
errors?: Maybe<Array<MutationError>>;
|
|
90320
|
+
success: Scalars['Boolean']['output'];
|
|
90321
|
+
};
|
|
90045
90322
|
export declare type MercuryDeletePortfolioFocusAreaLinkInput = {
|
|
90046
90323
|
cloudId: Scalars['ID']['input'];
|
|
90047
90324
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
@@ -90134,7 +90411,7 @@ export declare type MercuryFiscalCalendarConfigurationSort = {
|
|
|
90134
90411
|
order: SortOrder;
|
|
90135
90412
|
};
|
|
90136
90413
|
export declare enum MercuryFiscalCalendarConfigurationSortField {
|
|
90137
|
-
|
|
90414
|
+
CreatedDate = "CREATED_DATE"
|
|
90138
90415
|
}
|
|
90139
90416
|
export declare type MercuryFocusArea = Node & {
|
|
90140
90417
|
__typename?: 'MercuryFocusArea';
|
|
@@ -90144,6 +90421,7 @@ export declare type MercuryFocusArea = Node & {
|
|
|
90144
90421
|
ari: Scalars['String']['output'];
|
|
90145
90422
|
changeSummary?: Maybe<MercuryChangeSummary>;
|
|
90146
90423
|
createdDate: Scalars['String']['output'];
|
|
90424
|
+
customFields?: Maybe<Array<MercuryCustomField>>;
|
|
90147
90425
|
draft: Scalars['Boolean']['output'];
|
|
90148
90426
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
90149
90427
|
focusAreaLinks?: Maybe<MercuryFocusAreaLinks>;
|
|
@@ -90234,6 +90512,10 @@ export declare type MercuryFocusAreaConnection = {
|
|
|
90234
90512
|
pageInfo: PageInfo;
|
|
90235
90513
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
90236
90514
|
};
|
|
90515
|
+
export declare type MercuryFocusAreaCustomFieldDefinitionScope = MercuryCustomFieldDefinitionScope & {
|
|
90516
|
+
__typename?: 'MercuryFocusAreaCustomFieldDefinitionScope';
|
|
90517
|
+
entityType: Scalars['String']['output'];
|
|
90518
|
+
};
|
|
90237
90519
|
export declare type MercuryFocusAreaEdge = {
|
|
90238
90520
|
__typename?: 'MercuryFocusAreaEdge';
|
|
90239
90521
|
cursor: Scalars['String']['output'];
|
|
@@ -90501,6 +90783,7 @@ export declare type MercuryFundsMutationApi = {
|
|
|
90501
90783
|
createInvestmentCategory?: Maybe<MercuryCreateInvestmentCategoryPayload>;
|
|
90502
90784
|
createInvestmentCategorySet?: Maybe<MercuryCreateInvestmentCategorySetPayload>;
|
|
90503
90785
|
deleteCostSubtype?: Maybe<MercuryDeleteCostSubtypePayload>;
|
|
90786
|
+
deleteInvestmentCategorySet?: Maybe<MercuryDeleteInvestmentCategorySetPayload>;
|
|
90504
90787
|
};
|
|
90505
90788
|
export declare type MercuryFundsMutationApiCreateCostSubtypeArgs = {
|
|
90506
90789
|
input: MercuryCreateCostSubtypeInput;
|
|
@@ -90517,6 +90800,9 @@ export declare type MercuryFundsMutationApiCreateInvestmentCategorySetArgs = {
|
|
|
90517
90800
|
export declare type MercuryFundsMutationApiDeleteCostSubtypeArgs = {
|
|
90518
90801
|
input: MercuryDeleteCostSubtypeInput;
|
|
90519
90802
|
};
|
|
90803
|
+
export declare type MercuryFundsMutationApiDeleteInvestmentCategorySetArgs = {
|
|
90804
|
+
input: MercuryDeleteInvestmentCategorySetInput;
|
|
90805
|
+
};
|
|
90520
90806
|
export declare type MercuryFundsQueryApi = {
|
|
90521
90807
|
__typename?: 'MercuryFundsQueryApi';
|
|
90522
90808
|
costSubtypes?: Maybe<Array<Maybe<MercuryCostSubtype>>>;
|
|
@@ -90590,17 +90876,25 @@ export declare type MercuryImpactedPositionSummaryByChangeProposalStatus = {
|
|
|
90590
90876
|
};
|
|
90591
90877
|
export declare type MercuryInvestmentCategory = Node & {
|
|
90592
90878
|
__typename?: 'MercuryInvestmentCategory';
|
|
90879
|
+
createdBy?: Maybe<User>;
|
|
90880
|
+
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
90593
90881
|
description?: Maybe<Scalars['String']['output']>;
|
|
90594
90882
|
id: Scalars['ID']['output'];
|
|
90595
90883
|
investmentCategorySetId: Scalars['ID']['output'];
|
|
90596
90884
|
key: Scalars['String']['output'];
|
|
90597
90885
|
name: Scalars['String']['output'];
|
|
90886
|
+
updatedBy?: Maybe<User>;
|
|
90887
|
+
updatedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
90598
90888
|
};
|
|
90599
90889
|
export declare type MercuryInvestmentCategorySet = Node & {
|
|
90600
90890
|
__typename?: 'MercuryInvestmentCategorySet';
|
|
90891
|
+
createdBy?: Maybe<User>;
|
|
90892
|
+
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
90601
90893
|
id: Scalars['ID']['output'];
|
|
90602
90894
|
investmentCategories?: Maybe<Array<MercuryInvestmentCategory>>;
|
|
90603
90895
|
name: Scalars['String']['output'];
|
|
90896
|
+
updatedBy?: Maybe<User>;
|
|
90897
|
+
updatedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
90604
90898
|
};
|
|
90605
90899
|
export declare type MercuryInvestmentCategorySetConnection = {
|
|
90606
90900
|
__typename?: 'MercuryInvestmentCategorySetConnection';
|
|
@@ -90778,11 +91072,13 @@ export declare type MercuryMutationApi = {
|
|
|
90778
91072
|
archiveFocusArea?: Maybe<MercuryArchiveFocusAreaPayload>;
|
|
90779
91073
|
createComment?: Maybe<MercuryCreateCommentPayload>;
|
|
90780
91074
|
createFocusArea?: Maybe<MercuryCreateFocusAreaPayload>;
|
|
91075
|
+
createFocusAreaCustomFieldDefinition?: Maybe<MercuryCreateCustomFieldDefinitionPayload>;
|
|
90781
91076
|
createFocusAreaStatusUpdate?: Maybe<MercuryCreateFocusAreaStatusUpdatePayload>;
|
|
90782
91077
|
createPortfolioWithFocusAreas?: Maybe<MercuryCreatePortfolioPayload>;
|
|
90783
91078
|
deleteAllPreferencesByUser?: Maybe<MercuryDeleteAllPreferencesByUserPayload>;
|
|
90784
91079
|
deleteComment?: Maybe<MercuryDeleteCommentPayload>;
|
|
90785
91080
|
deleteFocusArea?: Maybe<MercuryDeleteFocusAreaPayload>;
|
|
91081
|
+
deleteFocusAreaCustomFieldDefinition?: Maybe<MercuryDeleteCustomFieldDefinitionPayload>;
|
|
90786
91082
|
deleteFocusAreaGoalLink?: Maybe<MercuryDeleteFocusAreaGoalLinkPayload>;
|
|
90787
91083
|
deleteFocusAreaGoalLinks?: Maybe<MercuryDeleteFocusAreaGoalLinksPayload>;
|
|
90788
91084
|
deleteFocusAreaLink?: Maybe<MercuryDeleteFocusAreaLinkPayload>;
|
|
@@ -90796,11 +91092,13 @@ export declare type MercuryMutationApi = {
|
|
|
90796
91092
|
publishFocusArea?: Maybe<MercuryPublishFocusAreaPayload>;
|
|
90797
91093
|
recreatePortfolioFocusAreas?: Maybe<MercuryUpdatePortfolioPayload>;
|
|
90798
91094
|
removeWatcherFromFocusArea?: Maybe<MercuryRemoveWatcherFromFocusAreaPayload>;
|
|
91095
|
+
setFocusAreaCustomFieldValue?: Maybe<MercurySetFocusAreaCustomFieldPayload>;
|
|
90799
91096
|
setPreference?: Maybe<MercurySetPreferencePayload>;
|
|
90800
91097
|
transitionFocusAreaStatus?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
90801
91098
|
unarchiveFocusArea?: Maybe<MercuryUnarchiveFocusAreaPayload>;
|
|
90802
91099
|
updateComment?: Maybe<MercuryUpdateCommentPayload>;
|
|
90803
91100
|
updateFocusAreaAboutContent?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
91101
|
+
updateFocusAreaCustomFieldDefinitionName?: Maybe<MercuryUpdateCustomFieldDefinitionNamePayload>;
|
|
90804
91102
|
updateFocusAreaName?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
90805
91103
|
updateFocusAreaOwner?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
90806
91104
|
updateFocusAreaStatusUpdate?: Maybe<MercuryUpdateFocusAreaStatusUpdatePayload>;
|
|
@@ -90821,6 +91119,9 @@ export declare type MercuryMutationApiCreateCommentArgs = {
|
|
|
90821
91119
|
export declare type MercuryMutationApiCreateFocusAreaArgs = {
|
|
90822
91120
|
input: MercuryCreateFocusAreaInput;
|
|
90823
91121
|
};
|
|
91122
|
+
export declare type MercuryMutationApiCreateFocusAreaCustomFieldDefinitionArgs = {
|
|
91123
|
+
input: MercuryCreateFocusAreaCustomFieldDefinitionInput;
|
|
91124
|
+
};
|
|
90824
91125
|
export declare type MercuryMutationApiCreateFocusAreaStatusUpdateArgs = {
|
|
90825
91126
|
input: MercuryCreateFocusAreaStatusUpdateInput;
|
|
90826
91127
|
};
|
|
@@ -90836,6 +91137,9 @@ export declare type MercuryMutationApiDeleteCommentArgs = {
|
|
|
90836
91137
|
export declare type MercuryMutationApiDeleteFocusAreaArgs = {
|
|
90837
91138
|
input: MercuryDeleteFocusAreaInput;
|
|
90838
91139
|
};
|
|
91140
|
+
export declare type MercuryMutationApiDeleteFocusAreaCustomFieldDefinitionArgs = {
|
|
91141
|
+
input: MercuryDeleteCustomFieldDefinitionInput;
|
|
91142
|
+
};
|
|
90839
91143
|
export declare type MercuryMutationApiDeleteFocusAreaGoalLinkArgs = {
|
|
90840
91144
|
input: MercuryDeleteFocusAreaGoalLinkInput;
|
|
90841
91145
|
};
|
|
@@ -90875,6 +91179,9 @@ export declare type MercuryMutationApiRecreatePortfolioFocusAreasArgs = {
|
|
|
90875
91179
|
export declare type MercuryMutationApiRemoveWatcherFromFocusAreaArgs = {
|
|
90876
91180
|
input: MercuryRemoveWatcherFromFocusAreaInput;
|
|
90877
91181
|
};
|
|
91182
|
+
export declare type MercuryMutationApiSetFocusAreaCustomFieldValueArgs = {
|
|
91183
|
+
input: MercurySetFocusAreaCustomFieldInput;
|
|
91184
|
+
};
|
|
90878
91185
|
export declare type MercuryMutationApiSetPreferenceArgs = {
|
|
90879
91186
|
input: MercurySetPreferenceInput;
|
|
90880
91187
|
};
|
|
@@ -90890,6 +91197,9 @@ export declare type MercuryMutationApiUpdateCommentArgs = {
|
|
|
90890
91197
|
export declare type MercuryMutationApiUpdateFocusAreaAboutContentArgs = {
|
|
90891
91198
|
input: MercuryUpdateFocusAreaAboutContentInput;
|
|
90892
91199
|
};
|
|
91200
|
+
export declare type MercuryMutationApiUpdateFocusAreaCustomFieldDefinitionNameArgs = {
|
|
91201
|
+
input: MercuryUpdateCustomFieldDefinitionNameInput;
|
|
91202
|
+
};
|
|
90893
91203
|
export declare type MercuryMutationApiUpdateFocusAreaNameArgs = {
|
|
90894
91204
|
input: MercuryUpdateFocusAreaNameInput;
|
|
90895
91205
|
};
|
|
@@ -90931,6 +91241,29 @@ export declare type MercuryNewPositionSummaryByChangeProposalStatus = {
|
|
|
90931
91241
|
countByStatus?: Maybe<Array<Maybe<MercuryNewPositionCountByStatus>>>;
|
|
90932
91242
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
90933
91243
|
};
|
|
91244
|
+
export declare type MercuryNumberCustomField = MercuryCustomField & {
|
|
91245
|
+
__typename?: 'MercuryNumberCustomField';
|
|
91246
|
+
createdBy?: Maybe<User>;
|
|
91247
|
+
createdDate: Scalars['DateTime']['output'];
|
|
91248
|
+
definition?: Maybe<MercuryNumberCustomFieldDefinition>;
|
|
91249
|
+
numberValue?: Maybe<Scalars['Float']['output']>;
|
|
91250
|
+
updatedBy?: Maybe<User>;
|
|
91251
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
91252
|
+
};
|
|
91253
|
+
export declare type MercuryNumberCustomFieldDefinition = MercuryCustomFieldDefinition & {
|
|
91254
|
+
__typename?: 'MercuryNumberCustomFieldDefinition';
|
|
91255
|
+
createdBy?: Maybe<User>;
|
|
91256
|
+
createdDate: Scalars['DateTime']['output'];
|
|
91257
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
91258
|
+
id: Scalars['ID']['output'];
|
|
91259
|
+
name: Scalars['String']['output'];
|
|
91260
|
+
scope: MercuryCustomFieldDefinitionScope;
|
|
91261
|
+
updatedBy?: Maybe<User>;
|
|
91262
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
91263
|
+
};
|
|
91264
|
+
export declare type MercuryNumberCustomFieldInput = {
|
|
91265
|
+
numberValue?: InputMaybe<Scalars['Float']['input']>;
|
|
91266
|
+
};
|
|
90934
91267
|
export declare type MercuryOnUpdateChangeProposalsPayload = Payload & {
|
|
90935
91268
|
__typename?: 'MercuryOnUpdateChangeProposalsPayload';
|
|
90936
91269
|
changeProposals?: Maybe<Array<MercuryChangeProposalUpdate>>;
|
|
@@ -91284,6 +91617,7 @@ export declare type MercuryQueryApi = {
|
|
|
91284
91617
|
commentsByAris?: Maybe<Array<Maybe<MercuryComment>>>;
|
|
91285
91618
|
focusArea?: Maybe<MercuryFocusArea>;
|
|
91286
91619
|
focusAreaActivityHistory?: Maybe<MercuryFocusAreaActivityConnection>;
|
|
91620
|
+
focusAreaCustomFieldDefinitionsSearch?: Maybe<MercuryCustomFieldDefinitionConnection>;
|
|
91287
91621
|
focusAreaHierarchy?: Maybe<Array<Maybe<MercuryFocusAreaHierarchyNode>>>;
|
|
91288
91622
|
focusAreaStatusTransitions?: Maybe<Array<MercuryFocusAreaStatusTransition>>;
|
|
91289
91623
|
focusAreaStatusUpdatesByAris?: Maybe<Array<MercuryFocusAreaStatusUpdate>>;
|
|
@@ -91337,6 +91671,11 @@ export declare type MercuryQueryApiFocusAreaActivityHistoryArgs = {
|
|
|
91337
91671
|
focusAreaId: Scalars['ID']['input'];
|
|
91338
91672
|
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaActivitySort>>>;
|
|
91339
91673
|
};
|
|
91674
|
+
export declare type MercuryQueryApiFocusAreaCustomFieldDefinitionsSearchArgs = {
|
|
91675
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
91676
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
91677
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
91678
|
+
};
|
|
91340
91679
|
export declare type MercuryQueryApiFocusAreaHierarchyArgs = {
|
|
91341
91680
|
cloudId: Scalars['ID']['input'];
|
|
91342
91681
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -91522,6 +91861,17 @@ export declare type MercuryRestrictedStrategicEventEdge = {
|
|
|
91522
91861
|
cursor: Scalars['String']['output'];
|
|
91523
91862
|
node?: Maybe<MercuryRestrictedStrategicEvent>;
|
|
91524
91863
|
};
|
|
91864
|
+
export declare type MercurySetFocusAreaCustomFieldInput = {
|
|
91865
|
+
coreField?: InputMaybe<MercuryCustomFieldInput>;
|
|
91866
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
91867
|
+
focusAreaId: Scalars['ID']['input'];
|
|
91868
|
+
};
|
|
91869
|
+
export declare type MercurySetFocusAreaCustomFieldPayload = Payload & {
|
|
91870
|
+
__typename?: 'MercurySetFocusAreaCustomFieldPayload';
|
|
91871
|
+
customField?: Maybe<MercuryCustomField>;
|
|
91872
|
+
errors?: Maybe<Array<MutationError>>;
|
|
91873
|
+
success: Scalars['Boolean']['output'];
|
|
91874
|
+
};
|
|
91525
91875
|
export declare type MercurySetPreferenceInput = {
|
|
91526
91876
|
cloudId: Scalars['ID']['input'];
|
|
91527
91877
|
key: Scalars['String']['input'];
|
|
@@ -91533,6 +91883,30 @@ export declare type MercurySetPreferencePayload = Payload & {
|
|
|
91533
91883
|
preference?: Maybe<MercuryPreference>;
|
|
91534
91884
|
success: Scalars['Boolean']['output'];
|
|
91535
91885
|
};
|
|
91886
|
+
export declare type MercurySingleSelectCustomField = MercuryCustomField & {
|
|
91887
|
+
__typename?: 'MercurySingleSelectCustomField';
|
|
91888
|
+
createdBy?: Maybe<User>;
|
|
91889
|
+
createdDate: Scalars['DateTime']['output'];
|
|
91890
|
+
definition?: Maybe<MercurySingleSelectCustomFieldDefinition>;
|
|
91891
|
+
selectedOption?: Maybe<MercuryCustomSelectFieldOption>;
|
|
91892
|
+
updatedBy?: Maybe<User>;
|
|
91893
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
91894
|
+
};
|
|
91895
|
+
export declare type MercurySingleSelectCustomFieldDefinition = MercuryCustomFieldDefinition & {
|
|
91896
|
+
__typename?: 'MercurySingleSelectCustomFieldDefinition';
|
|
91897
|
+
createdBy?: Maybe<User>;
|
|
91898
|
+
createdDate: Scalars['DateTime']['output'];
|
|
91899
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
91900
|
+
id: Scalars['ID']['output'];
|
|
91901
|
+
name: Scalars['String']['output'];
|
|
91902
|
+
options?: Maybe<Array<MercuryCustomSelectFieldOption>>;
|
|
91903
|
+
scope: MercuryCustomFieldDefinitionScope;
|
|
91904
|
+
updatedBy?: Maybe<User>;
|
|
91905
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
91906
|
+
};
|
|
91907
|
+
export declare type MercurySingleSelectCustomFieldInput = {
|
|
91908
|
+
option?: InputMaybe<Scalars['ID']['input']>;
|
|
91909
|
+
};
|
|
91536
91910
|
export declare type MercurySpendAggregation = {
|
|
91537
91911
|
__typename?: 'MercurySpendAggregation';
|
|
91538
91912
|
aggregatedSpend?: Maybe<Scalars['BigDecimal']['output']>;
|
|
@@ -91931,6 +92305,29 @@ export declare enum MercuryTargetDateType {
|
|
|
91931
92305
|
Month = "MONTH",
|
|
91932
92306
|
Quarter = "QUARTER"
|
|
91933
92307
|
}
|
|
92308
|
+
export declare type MercuryTextCustomField = MercuryCustomField & {
|
|
92309
|
+
__typename?: 'MercuryTextCustomField';
|
|
92310
|
+
createdBy?: Maybe<User>;
|
|
92311
|
+
createdDate: Scalars['DateTime']['output'];
|
|
92312
|
+
definition?: Maybe<MercuryTextCustomFieldDefinition>;
|
|
92313
|
+
textValue?: Maybe<Scalars['String']['output']>;
|
|
92314
|
+
updatedBy?: Maybe<User>;
|
|
92315
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
92316
|
+
};
|
|
92317
|
+
export declare type MercuryTextCustomFieldDefinition = MercuryCustomFieldDefinition & {
|
|
92318
|
+
__typename?: 'MercuryTextCustomFieldDefinition';
|
|
92319
|
+
createdBy?: Maybe<User>;
|
|
92320
|
+
createdDate: Scalars['DateTime']['output'];
|
|
92321
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
92322
|
+
id: Scalars['ID']['output'];
|
|
92323
|
+
name: Scalars['String']['output'];
|
|
92324
|
+
scope: MercuryCustomFieldDefinitionScope;
|
|
92325
|
+
updatedBy?: Maybe<User>;
|
|
92326
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
92327
|
+
};
|
|
92328
|
+
export declare type MercuryTextCustomFieldInput = {
|
|
92329
|
+
textValue?: InputMaybe<Scalars['String']['input']>;
|
|
92330
|
+
};
|
|
91934
92331
|
export declare type MercuryTransitionChangeProposalPayload = Payload & {
|
|
91935
92332
|
__typename?: 'MercuryTransitionChangeProposalPayload';
|
|
91936
92333
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -92084,6 +92481,16 @@ export declare type MercuryUpdateCommentPayload = Payload & {
|
|
|
92084
92481
|
success: Scalars['Boolean']['output'];
|
|
92085
92482
|
updatedComment?: Maybe<MercuryComment>;
|
|
92086
92483
|
};
|
|
92484
|
+
export declare type MercuryUpdateCustomFieldDefinitionNameInput = {
|
|
92485
|
+
id: Scalars['ID']['input'];
|
|
92486
|
+
name: Scalars['String']['input'];
|
|
92487
|
+
};
|
|
92488
|
+
export declare type MercuryUpdateCustomFieldDefinitionNamePayload = {
|
|
92489
|
+
__typename?: 'MercuryUpdateCustomFieldDefinitionNamePayload';
|
|
92490
|
+
customFieldDefinition?: Maybe<MercuryCustomFieldDefinition>;
|
|
92491
|
+
errors?: Maybe<Array<MutationError>>;
|
|
92492
|
+
success: Scalars['Boolean']['output'];
|
|
92493
|
+
};
|
|
92087
92494
|
export declare type MercuryUpdateFocusAreaAboutContentInput = {
|
|
92088
92495
|
aboutContent: Scalars['String']['input'];
|
|
92089
92496
|
cloudId: Scalars['ID']['input'];
|
|
@@ -92572,6 +92979,7 @@ export declare type Mutation = {
|
|
|
92572
92979
|
avp_createDashboard?: Maybe<AvpCreateDashboardPayload>;
|
|
92573
92980
|
avp_createDashboardFilter?: Maybe<AvpCreateDashboardFilterPayload>;
|
|
92574
92981
|
avp_createDashboardFromTemplate?: Maybe<AvpCreateDashboardPayload>;
|
|
92982
|
+
avp_createVariable?: Maybe<AvpCreateVariablePayload>;
|
|
92575
92983
|
avp_deleteChart?: Maybe<AvpDeleteChartPayload>;
|
|
92576
92984
|
avp_deleteDashboardFilter?: Maybe<AvpDeleteDashboardFilterPayload>;
|
|
92577
92985
|
avp_moveCanvasElement?: Maybe<AvpMoveCanvasElementPayload>;
|
|
@@ -92853,6 +93261,7 @@ export declare type Mutation = {
|
|
|
92853
93261
|
goals_createUpdate?: Maybe<TownsquareGoalsCreateUpdatePayload>;
|
|
92854
93262
|
goals_deleteLatestUpdate?: Maybe<TownsquareGoalsDeleteLatestUpdatePayload>;
|
|
92855
93263
|
goals_editMetric?: Maybe<TownsquareGoalsEditMetricPayload>;
|
|
93264
|
+
goals_editMetricTarget?: Maybe<TownsquareGoalsEditMetricTargetPayload>;
|
|
92856
93265
|
goals_editUpdate?: Maybe<TownsquareGoalsEditUpdatePayload>;
|
|
92857
93266
|
goals_removeGoalTeamLink?: Maybe<TownsquareGoalsRemoveGoalTeamLinkPayload>;
|
|
92858
93267
|
goals_setWatchingGoal?: Maybe<TownsquareGoalsSetWatchingGoalPayload>;
|
|
@@ -92894,8 +93303,8 @@ export declare type Mutation = {
|
|
|
92894
93303
|
jira_archiveIssue?: Maybe<JiraIssueArchivePayload>;
|
|
92895
93304
|
jira_archiveIssueAsync?: Maybe<JiraIssueArchiveAsyncPayload>;
|
|
92896
93305
|
jira_associateProjectToFieldScheme?: Maybe<JiraAssociateProjectToFieldSchemePayload>;
|
|
92897
|
-
jira_bulkCreateInlineIssuesOptimistic?: Maybe<JiraInlineIssuesCreatePayload>;
|
|
92898
93306
|
jira_bulkSetBoardViewColumnState?: Maybe<JiraBulkSetBoardViewColumnStatePayload>;
|
|
93307
|
+
jira_clearBoardIssueCardCover?: Maybe<JiraClearBoardIssueCardCoverPayload>;
|
|
92899
93308
|
jira_createBoardViewStatusColumn?: Maybe<JiraCreateBoardViewStatusColumnPayload>;
|
|
92900
93309
|
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
92901
93310
|
jira_createFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
@@ -93090,6 +93499,7 @@ export declare type Mutation = {
|
|
|
93090
93499
|
roadmaps?: Maybe<RoadmapsMutation>;
|
|
93091
93500
|
runImport?: Maybe<RunImportPayload>;
|
|
93092
93501
|
setAppEnvironmentVariable?: Maybe<SetAppEnvironmentVariablePayload>;
|
|
93502
|
+
setAppLicenseId?: Maybe<SetAppLicenseIdResponse>;
|
|
93093
93503
|
setBatchedTaskStatus?: Maybe<GraphQlMutationResponse>;
|
|
93094
93504
|
setBoardEstimationType?: Maybe<ToggleBoardFeatureOutput>;
|
|
93095
93505
|
setCardColorStrategy?: Maybe<SetCardColorStrategyOutput>;
|
|
@@ -93117,8 +93527,10 @@ export declare type Mutation = {
|
|
|
93117
93527
|
setSwimlaneStrategy?: Maybe<SetSwimlaneStrategyResponse>;
|
|
93118
93528
|
setTaskStatus?: Maybe<GraphQlMutationResponse>;
|
|
93119
93529
|
setUserSwimlaneStrategy?: Maybe<SetSwimlaneStrategyResponse>;
|
|
93530
|
+
settings_setUserPreferencesGlobal?: Maybe<SettingsUserPreferences>;
|
|
93120
93531
|
settings_updateCreationSettings?: Maybe<SettingsCreationSettings>;
|
|
93121
93532
|
settings_updateNavigationCustomisation?: Maybe<SettingsNavigationCustomisation>;
|
|
93533
|
+
settings_updateUserPreferencesWorkspace?: Maybe<SettingsUserPreferences>;
|
|
93122
93534
|
shardedGraphStore?: Maybe<ShardedGraphStoreMutation>;
|
|
93123
93535
|
shareResource?: Maybe<ShareResourcePayload>;
|
|
93124
93536
|
shepherd?: Maybe<ShepherdMutation>;
|
|
@@ -93588,6 +94000,9 @@ export declare type MutationAvp_CreateDashboardFilterArgs = {
|
|
|
93588
94000
|
export declare type MutationAvp_CreateDashboardFromTemplateArgs = {
|
|
93589
94001
|
input: AvpCreateDashboardFromTemplateInput;
|
|
93590
94002
|
};
|
|
94003
|
+
export declare type MutationAvp_CreateVariableArgs = {
|
|
94004
|
+
input: AvpCreateVariableInput;
|
|
94005
|
+
};
|
|
93591
94006
|
export declare type MutationAvp_DeleteChartArgs = {
|
|
93592
94007
|
input: AvpDeleteChartInput;
|
|
93593
94008
|
};
|
|
@@ -94587,6 +95002,9 @@ export declare type MutationGoals_DeleteLatestUpdateArgs = {
|
|
|
94587
95002
|
export declare type MutationGoals_EditMetricArgs = {
|
|
94588
95003
|
input: TownsquareGoalsEditMetricInput;
|
|
94589
95004
|
};
|
|
95005
|
+
export declare type MutationGoals_EditMetricTargetArgs = {
|
|
95006
|
+
input: TownsquareGoalsEditMetricTargetInput;
|
|
95007
|
+
};
|
|
94590
95008
|
export declare type MutationGoals_EditUpdateArgs = {
|
|
94591
95009
|
input?: InputMaybe<TownsquareGoalsEditUpdateInput>;
|
|
94592
95010
|
};
|
|
@@ -94699,12 +95117,12 @@ export declare type MutationJira_AssociateProjectToFieldSchemeArgs = {
|
|
|
94699
95117
|
cloudId: Scalars['ID']['input'];
|
|
94700
95118
|
input: JiraAssociateProjectToFieldSchemeInput;
|
|
94701
95119
|
};
|
|
94702
|
-
export declare type MutationJira_BulkCreateInlineIssuesOptimisticArgs = {
|
|
94703
|
-
input: Array<JiraInlineIssueCreateInput>;
|
|
94704
|
-
};
|
|
94705
95120
|
export declare type MutationJira_BulkSetBoardViewColumnStateArgs = {
|
|
94706
95121
|
input: JiraBulkSetBoardViewColumnStateInput;
|
|
94707
95122
|
};
|
|
95123
|
+
export declare type MutationJira_ClearBoardIssueCardCoverArgs = {
|
|
95124
|
+
input: JiraClearBoardIssueCardCoverInput;
|
|
95125
|
+
};
|
|
94708
95126
|
export declare type MutationJira_CreateBoardViewStatusColumnArgs = {
|
|
94709
95127
|
input: JiraCreateBoardViewStatusColumnInput;
|
|
94710
95128
|
};
|
|
@@ -95292,6 +95710,9 @@ export declare type MutationRunImportArgs = {
|
|
|
95292
95710
|
export declare type MutationSetAppEnvironmentVariableArgs = {
|
|
95293
95711
|
input: SetAppEnvironmentVariableInput;
|
|
95294
95712
|
};
|
|
95713
|
+
export declare type MutationSetAppLicenseIdArgs = {
|
|
95714
|
+
input: SetAppLicenseIdInput;
|
|
95715
|
+
};
|
|
95295
95716
|
export declare type MutationSetBatchedTaskStatusArgs = {
|
|
95296
95717
|
batchedInlineTasksInput: BatchedInlineTasksInput;
|
|
95297
95718
|
};
|
|
@@ -95385,12 +95806,21 @@ export declare type MutationSetTaskStatusArgs = {
|
|
|
95385
95806
|
export declare type MutationSetUserSwimlaneStrategyArgs = {
|
|
95386
95807
|
input?: InputMaybe<SetSwimlaneStrategyInput>;
|
|
95387
95808
|
};
|
|
95809
|
+
export declare type MutationSettings_SetUserPreferencesGlobalArgs = {
|
|
95810
|
+
accountId: Scalars['ID']['input'];
|
|
95811
|
+
theme: Scalars['String']['input'];
|
|
95812
|
+
};
|
|
95388
95813
|
export declare type MutationSettings_UpdateCreationSettingsArgs = {
|
|
95389
95814
|
input: SettingsCreationSettingsInput;
|
|
95390
95815
|
};
|
|
95391
95816
|
export declare type MutationSettings_UpdateNavigationCustomisationArgs = {
|
|
95392
95817
|
input: SettingsNavigationCustomisationInput;
|
|
95393
95818
|
};
|
|
95819
|
+
export declare type MutationSettings_UpdateUserPreferencesWorkspaceArgs = {
|
|
95820
|
+
accountId: Scalars['ID']['input'];
|
|
95821
|
+
theme: Scalars['String']['input'];
|
|
95822
|
+
workspaceAri: Scalars['ID']['input'];
|
|
95823
|
+
};
|
|
95394
95824
|
export declare type MutationShareResourceArgs = {
|
|
95395
95825
|
shareResourceInput: ShareResourceInput;
|
|
95396
95826
|
};
|
|
@@ -98697,13 +99127,13 @@ export declare type Query = {
|
|
|
98697
99127
|
agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
|
|
98698
99128
|
agentStudio_agentByIdentityAccountId?: Maybe<AgentStudioAgentResult>;
|
|
98699
99129
|
agentStudio_batchEvaluationJob?: Maybe<AgentStudioBatchEvaluationJob>;
|
|
98700
|
-
|
|
98701
|
-
agentStudio_batchEvaluationResults:
|
|
99130
|
+
agentStudio_batchEvaluationJobsResult: AgentStudioBatchEvaluationJobsResult;
|
|
99131
|
+
agentStudio_batchEvaluationResults: AgentStudioEvaluationResultsResult;
|
|
98702
99132
|
agentStudio_batchEvaluationSummary?: Maybe<AgentStudioEvaluationSummary>;
|
|
98703
99133
|
agentStudio_conversationReportByAgentId?: Maybe<AgentStudioConversationReportByAgentIdResult>;
|
|
98704
99134
|
agentStudio_dataset?: Maybe<AgentStudioDataset>;
|
|
98705
|
-
agentStudio_datasetItems
|
|
98706
|
-
agentStudio_datasets
|
|
99135
|
+
agentStudio_datasetItems: AgentStudioDatasetItemsResult;
|
|
99136
|
+
agentStudio_datasets: AgentStudioDatasetsResult;
|
|
98707
99137
|
agentStudio_evaluationProject?: Maybe<AgentStudioBatchEvaluationProject>;
|
|
98708
99138
|
agentStudio_getAgentActorRoles?: Maybe<AgentStudioActorRoles>;
|
|
98709
99139
|
agentStudio_getAgents?: Maybe<AgentStudioAgentsConnection>;
|
|
@@ -99189,6 +99619,7 @@ export declare type Query = {
|
|
|
99189
99619
|
jira_projectTypesByIds?: Maybe<Array<Maybe<JiraProjectTypeDetails>>>;
|
|
99190
99620
|
jira_projectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
99191
99621
|
jira_suggestionsByContext?: Maybe<JiraSuggestionsConnection>;
|
|
99622
|
+
jira_userSegRedirectAdvice?: Maybe<JiraUserSegRedirectAdvice>;
|
|
99192
99623
|
jsmChannels_conversationsByContainerAri?: Maybe<JsmChannelsConversationsByContainerAriResult>;
|
|
99193
99624
|
jsmChannels_conversationsByIds?: Maybe<Array<Maybe<JsmChannelsOrchestratorConversation>>>;
|
|
99194
99625
|
jsmChannels_getExperienceConfigurationByProjectId: JsmChannelsExperienceConfigurationResult;
|
|
@@ -99366,6 +99797,9 @@ export declare type Query = {
|
|
|
99366
99797
|
searchesWithZeroCTR?: Maybe<SearchesWithZeroCtr>;
|
|
99367
99798
|
settings_creationSettings?: Maybe<SettingsCreationSettings>;
|
|
99368
99799
|
settings_navigationCustomisation?: Maybe<SettingsNavigationCustomisation>;
|
|
99800
|
+
settings_userPreferencesGlobal?: Maybe<SettingsUserPreferences>;
|
|
99801
|
+
settings_userPreferencesResolved?: Maybe<SettingsUserPreferences>;
|
|
99802
|
+
settings_userPreferencesWorkspace?: Maybe<SettingsUserPreferences>;
|
|
99369
99803
|
shardedGraphStore?: Maybe<ShardedGraphStore>;
|
|
99370
99804
|
shepherd?: Maybe<ShepherdQuery>;
|
|
99371
99805
|
shepherdTeamworkGraph?: Maybe<ShepherdTeamworkGraphQueries>;
|
|
@@ -99447,9 +99881,11 @@ export declare type Query = {
|
|
|
99447
99881
|
team?: Maybe<TeamQuery>;
|
|
99448
99882
|
teamCalendarSettings?: Maybe<TeamCalendarSettings>;
|
|
99449
99883
|
teamLabels?: Maybe<PaginatedLabelList>;
|
|
99884
|
+
teamworkGraph_projectUpdates?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
99450
99885
|
teamworkGraph_userCommented?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
99451
99886
|
teamworkGraph_userCreated?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
99452
99887
|
teamworkGraph_userTaggedIn?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
99888
|
+
teamworkGraph_userTeams?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
99453
99889
|
teamworkGraph_userTopRecentMentioners?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
99454
99890
|
teamworkGraph_userTopRecentReferencers?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
99455
99891
|
teamworkGraph_userViewed?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
@@ -99647,13 +100083,16 @@ export declare type QueryAgentStudio_BatchEvaluationJobArgs = {
|
|
|
99647
100083
|
productType: AgentStudioProductType;
|
|
99648
100084
|
projectContainerAri: Scalars['ID']['input'];
|
|
99649
100085
|
};
|
|
99650
|
-
export declare type
|
|
99651
|
-
|
|
100086
|
+
export declare type QueryAgentStudio_BatchEvaluationJobsResultArgs = {
|
|
100087
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
100088
|
+
agentId: Scalars['String']['input'];
|
|
99652
100089
|
cloudId: Scalars['String']['input'];
|
|
100090
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99653
100091
|
productType: AgentStudioProductType;
|
|
99654
100092
|
projectContainerAri: Scalars['ID']['input'];
|
|
99655
100093
|
};
|
|
99656
100094
|
export declare type QueryAgentStudio_BatchEvaluationResultsArgs = {
|
|
100095
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99657
100096
|
cloudId: Scalars['String']['input'];
|
|
99658
100097
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99659
100098
|
productType: AgentStudioProductType;
|
|
@@ -99680,13 +100119,17 @@ export declare type QueryAgentStudio_DatasetArgs = {
|
|
|
99680
100119
|
projectContainerAri: Scalars['ID']['input'];
|
|
99681
100120
|
};
|
|
99682
100121
|
export declare type QueryAgentStudio_DatasetItemsArgs = {
|
|
100122
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99683
100123
|
cloudId: Scalars['String']['input'];
|
|
99684
100124
|
datasetId: Scalars['ID']['input'];
|
|
100125
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99685
100126
|
productType: AgentStudioProductType;
|
|
99686
100127
|
projectContainerAri: Scalars['ID']['input'];
|
|
99687
100128
|
};
|
|
99688
100129
|
export declare type QueryAgentStudio_DatasetsArgs = {
|
|
100130
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99689
100131
|
cloudId: Scalars['String']['input'];
|
|
100132
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99690
100133
|
productType: AgentStudioProductType;
|
|
99691
100134
|
projectContainerAri: Scalars['ID']['input'];
|
|
99692
100135
|
projectId: Scalars['ID']['input'];
|
|
@@ -101818,6 +102261,10 @@ export declare type QueryJira_ProjectsSidebarMenuArgs = {
|
|
|
101818
102261
|
export declare type QueryJira_SuggestionsByContextArgs = {
|
|
101819
102262
|
input: JiraSuggestionsByContextInput;
|
|
101820
102263
|
};
|
|
102264
|
+
export declare type QueryJira_UserSegRedirectAdviceArgs = {
|
|
102265
|
+
accountId: Scalars['ID']['input'];
|
|
102266
|
+
cloudId: Scalars['ID']['input'];
|
|
102267
|
+
};
|
|
101821
102268
|
export declare type QueryJsmChannels_ConversationsByContainerAriArgs = {
|
|
101822
102269
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
101823
102270
|
containerAri: Scalars['ID']['input'];
|
|
@@ -102456,6 +102903,17 @@ export declare type QuerySettings_NavigationCustomisationArgs = {
|
|
|
102456
102903
|
entityAri?: InputMaybe<Scalars['ID']['input']>;
|
|
102457
102904
|
ownerAri?: InputMaybe<Scalars['ID']['input']>;
|
|
102458
102905
|
};
|
|
102906
|
+
export declare type QuerySettings_UserPreferencesGlobalArgs = {
|
|
102907
|
+
accountId: Scalars['ID']['input'];
|
|
102908
|
+
};
|
|
102909
|
+
export declare type QuerySettings_UserPreferencesResolvedArgs = {
|
|
102910
|
+
accountId: Scalars['ID']['input'];
|
|
102911
|
+
workspaceAri: Scalars['ID']['input'];
|
|
102912
|
+
};
|
|
102913
|
+
export declare type QuerySettings_UserPreferencesWorkspaceArgs = {
|
|
102914
|
+
accountId: Scalars['ID']['input'];
|
|
102915
|
+
workspaceAri: Scalars['ID']['input'];
|
|
102916
|
+
};
|
|
102459
102917
|
export declare type QuerySingleContentArgs = {
|
|
102460
102918
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
102461
102919
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -102740,6 +103198,13 @@ export declare type QueryTeamLabelsArgs = {
|
|
|
102740
103198
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
102741
103199
|
start?: InputMaybe<Scalars['Int']['input']>;
|
|
102742
103200
|
};
|
|
103201
|
+
export declare type QueryTeamworkGraph_ProjectUpdatesArgs = {
|
|
103202
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
103203
|
+
endDate: Scalars['DateTime']['input'];
|
|
103204
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
103205
|
+
projectId: Scalars['String']['input'];
|
|
103206
|
+
startDate: Scalars['DateTime']['input'];
|
|
103207
|
+
};
|
|
102743
103208
|
export declare type QueryTeamworkGraph_UserCommentedArgs = {
|
|
102744
103209
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
102745
103210
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -102752,6 +103217,11 @@ export declare type QueryTeamworkGraph_UserTaggedInArgs = {
|
|
|
102752
103217
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
102753
103218
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
102754
103219
|
};
|
|
103220
|
+
export declare type QueryTeamworkGraph_UserTeamsArgs = {
|
|
103221
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
103222
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
103223
|
+
userId: Scalars['ID']['input'];
|
|
103224
|
+
};
|
|
102755
103225
|
export declare type QueryTeamworkGraph_UserTopRecentMentionersArgs = {
|
|
102756
103226
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
102757
103227
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -103062,6 +103532,7 @@ export declare type RadarConnector = {
|
|
|
103062
103532
|
};
|
|
103063
103533
|
export declare enum RadarConnectorType {
|
|
103064
103534
|
Csv = "CSV",
|
|
103535
|
+
HrisS3 = "HRIS_S3",
|
|
103065
103536
|
Workday = "WORKDAY"
|
|
103066
103537
|
}
|
|
103067
103538
|
export declare type RadarConnectorsInput = {
|
|
@@ -103418,6 +103889,7 @@ export declare type RadarPositionLaborCostEstimateSettings = {
|
|
|
103418
103889
|
__typename?: 'RadarPositionLaborCostEstimateSettings';
|
|
103419
103890
|
defaultAmount?: Maybe<RadarMoney>;
|
|
103420
103891
|
fieldIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
103892
|
+
id: Scalars['ID']['output'];
|
|
103421
103893
|
isEnabled: Scalars['Boolean']['output'];
|
|
103422
103894
|
lastImportedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
103423
103895
|
};
|
|
@@ -105939,6 +106411,7 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
|
|
|
105939
106411
|
__typename?: 'SearchResultGraphDocument';
|
|
105940
106412
|
allContributors?: Maybe<Array<ThirdPartyUser>>;
|
|
105941
106413
|
bodyText?: Maybe<Scalars['String']['output']>;
|
|
106414
|
+
connectorType?: Maybe<Scalars['String']['output']>;
|
|
105942
106415
|
containerName?: Maybe<Scalars['String']['output']>;
|
|
105943
106416
|
description: Scalars['String']['output'];
|
|
105944
106417
|
entity?: Maybe<SearchResultEntity>;
|
|
@@ -106393,6 +106866,17 @@ export declare type SetAppEnvironmentVariablePayload = Payload & {
|
|
|
106393
106866
|
errors?: Maybe<Array<MutationError>>;
|
|
106394
106867
|
success: Scalars['Boolean']['output'];
|
|
106395
106868
|
};
|
|
106869
|
+
export declare type SetAppLicenseIdInput = {
|
|
106870
|
+
appHostKey: Scalars['String']['input'];
|
|
106871
|
+
appId: Scalars['ID']['input'];
|
|
106872
|
+
environmentKey: Scalars['String']['input'];
|
|
106873
|
+
licenseId: Scalars['ID']['input'];
|
|
106874
|
+
};
|
|
106875
|
+
export declare type SetAppLicenseIdResponse = Payload & {
|
|
106876
|
+
__typename?: 'SetAppLicenseIdResponse';
|
|
106877
|
+
errors?: Maybe<Array<MutationError>>;
|
|
106878
|
+
success: Scalars['Boolean']['output'];
|
|
106879
|
+
};
|
|
106396
106880
|
export declare type SetAppStoredCustomEntityMutationInput = {
|
|
106397
106881
|
contextAri?: InputMaybe<Scalars['ID']['input']>;
|
|
106398
106882
|
entityName: Scalars['String']['input'];
|
|
@@ -106683,6 +107167,10 @@ export declare type SettingsNavigationCustomisationInput = {
|
|
|
106683
107167
|
properties?: InputMaybe<Array<InputMaybe<SettingsDisplayPropertyInput>>>;
|
|
106684
107168
|
sidebar?: InputMaybe<Array<InputMaybe<SettingsMenuItemInput>>>;
|
|
106685
107169
|
};
|
|
107170
|
+
export declare type SettingsUserPreferences = {
|
|
107171
|
+
__typename?: 'SettingsUserPreferences';
|
|
107172
|
+
theme?: Maybe<Scalars['String']['output']>;
|
|
107173
|
+
};
|
|
106686
107174
|
export declare type ShardedGraphStore = {
|
|
106687
107175
|
__typename?: 'ShardedGraphStore';
|
|
106688
107176
|
askHasImpactedWork?: Maybe<ShardedGraphStoreSimplifiedAskHasImpactedWorkConnection>;
|
|
@@ -130070,6 +130558,18 @@ export declare type TownsquareGoalsEditMetricPayload = {
|
|
|
130070
130558
|
metric?: Maybe<TownsquareMetric>;
|
|
130071
130559
|
success: Scalars['Boolean']['output'];
|
|
130072
130560
|
};
|
|
130561
|
+
export declare type TownsquareGoalsEditMetricTargetInput = {
|
|
130562
|
+
currentValue?: InputMaybe<Scalars['Float']['input']>;
|
|
130563
|
+
metricTargetId: Scalars['ID']['input'];
|
|
130564
|
+
startValue?: InputMaybe<Scalars['Float']['input']>;
|
|
130565
|
+
targetValue?: InputMaybe<Scalars['Float']['input']>;
|
|
130566
|
+
};
|
|
130567
|
+
export declare type TownsquareGoalsEditMetricTargetPayload = {
|
|
130568
|
+
__typename?: 'TownsquareGoalsEditMetricTargetPayload';
|
|
130569
|
+
errors?: Maybe<Array<MutationError>>;
|
|
130570
|
+
goal?: Maybe<TownsquareGoal>;
|
|
130571
|
+
success: Scalars['Boolean']['output'];
|
|
130572
|
+
};
|
|
130073
130573
|
export declare type TownsquareGoalsEditUpdateInput = {
|
|
130074
130574
|
goalUpdateId: Scalars['ID']['input'];
|
|
130075
130575
|
score?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -133987,6 +134487,7 @@ export declare type TrelloPlannerCalendarEvent = Node & {
|
|
|
133987
134487
|
id: Scalars['ID']['output'];
|
|
133988
134488
|
link?: Maybe<Scalars['String']['output']>;
|
|
133989
134489
|
parentEventId?: Maybe<Scalars['ID']['output']>;
|
|
134490
|
+
plannerCalendarId?: Maybe<Scalars['ID']['output']>;
|
|
133990
134491
|
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
133991
134492
|
startAt?: Maybe<Scalars['DateTime']['output']>;
|
|
133992
134493
|
status?: Maybe<TrelloPlannerCalendarEventStatus>;
|
|
@@ -134058,6 +134559,7 @@ export declare type TrelloPlannerCalendarEventConnectionUpdated = {
|
|
|
134058
134559
|
export declare type TrelloPlannerCalendarEventDeleted = {
|
|
134059
134560
|
__typename?: 'TrelloPlannerCalendarEventDeleted';
|
|
134060
134561
|
id: Scalars['ID']['output'];
|
|
134562
|
+
plannerCalendarId?: Maybe<Scalars['ID']['output']>;
|
|
134061
134563
|
};
|
|
134062
134564
|
export declare type TrelloPlannerCalendarEventEdge = {
|
|
134063
134565
|
__typename?: 'TrelloPlannerCalendarEventEdge';
|
|
@@ -134095,6 +134597,7 @@ export declare type TrelloPlannerCalendarEventUpdated = {
|
|
|
134095
134597
|
link?: Maybe<Scalars['String']['output']>;
|
|
134096
134598
|
onPlannerCalendarEventCardDeleted?: Maybe<Array<TrelloPlannerCalendarEventCardDeleted>>;
|
|
134097
134599
|
parentEventId?: Maybe<Scalars['ID']['output']>;
|
|
134600
|
+
plannerCalendarId?: Maybe<Scalars['ID']['output']>;
|
|
134098
134601
|
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
134099
134602
|
startAt?: Maybe<Scalars['DateTime']['output']>;
|
|
134100
134603
|
status?: Maybe<TrelloPlannerCalendarEventStatus>;
|