@forge/cli-shared 8.8.1-next.1 → 8.8.1-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 +15 -0
- package/out/graphql/graphql-types.d.ts +591 -79
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +21 -22
- package/out/ui/text.d.ts +5 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +5 -0
- 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']>;
|
|
@@ -3896,6 +3953,7 @@ export declare type AppInstallationUnsubscribeTask = AppInstallationTask & {
|
|
|
3896
3953
|
export declare type AppInstallationUpgradeInput = {
|
|
3897
3954
|
appId: Scalars['ID']['input'];
|
|
3898
3955
|
async?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3956
|
+
computeOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3899
3957
|
environmentKey: Scalars['String']['input'];
|
|
3900
3958
|
installationContext: Scalars['ID']['input'];
|
|
3901
3959
|
sourceBillingType?: InputMaybe<SourceBillingType>;
|
|
@@ -4861,6 +4919,7 @@ export declare type AssetsDmDataSource = {
|
|
|
4861
4919
|
__typename?: 'AssetsDMDataSource';
|
|
4862
4920
|
dataSourceId?: Maybe<Scalars['String']['output']>;
|
|
4863
4921
|
dataSourceName?: Maybe<Scalars['String']['output']>;
|
|
4922
|
+
dataSourceTypeId?: Maybe<Scalars['Int']['output']>;
|
|
4864
4923
|
isJobExecutionFailed?: Maybe<Scalars['Boolean']['output']>;
|
|
4865
4924
|
jobId?: Maybe<Scalars['String']['output']>;
|
|
4866
4925
|
lastExecutionDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -15391,6 +15450,7 @@ export declare type ConfluenceComment = {
|
|
|
15391
15450
|
latestVersion?: Maybe<ConfluenceContentVersion>;
|
|
15392
15451
|
links?: Maybe<ConfluenceCommentLinks>;
|
|
15393
15452
|
name?: Maybe<Scalars['String']['output']>;
|
|
15453
|
+
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
15394
15454
|
status?: Maybe<ConfluenceCommentStatus>;
|
|
15395
15455
|
};
|
|
15396
15456
|
export declare type ConfluenceCommentConnection = {
|
|
@@ -15546,6 +15606,10 @@ export declare type ConfluenceContentMetadata = {
|
|
|
15546
15606
|
titleEmojiDraft?: Maybe<ConfluenceContentTitleEmoji>;
|
|
15547
15607
|
titleEmojiPublished?: Maybe<ConfluenceContentTitleEmoji>;
|
|
15548
15608
|
};
|
|
15609
|
+
export declare type ConfluenceContentModeUpdated = {
|
|
15610
|
+
__typename?: 'ConfluenceContentModeUpdated';
|
|
15611
|
+
contentMode?: Maybe<Scalars['String']['output']>;
|
|
15612
|
+
};
|
|
15549
15613
|
export declare type ConfluenceContentModified = {
|
|
15550
15614
|
__typename?: 'ConfluenceContentModified';
|
|
15551
15615
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -15555,6 +15619,7 @@ export declare type ConfluenceContentModified = {
|
|
|
15555
15619
|
commentReopened?: Maybe<ConfluenceCommentUpdated>;
|
|
15556
15620
|
commentResolved?: Maybe<ConfluenceCommentCreated>;
|
|
15557
15621
|
commentUpdated?: Maybe<ConfluenceCommentUpdated>;
|
|
15622
|
+
contentModeUpdated?: Maybe<ConfluenceContentModeUpdated>;
|
|
15558
15623
|
contentRestrictionUpdated?: Maybe<ConfluenceContentRestrictionUpdated>;
|
|
15559
15624
|
contentStateDeleted?: Maybe<ConfluenceContentPropertyDeleted>;
|
|
15560
15625
|
contentStateUpdated?: Maybe<ConfluenceContentPropertyUpdated>;
|
|
@@ -16538,6 +16603,7 @@ export declare type ConfluenceFooterComment = ConfluenceComment & Node & {
|
|
|
16538
16603
|
latestVersion?: Maybe<ConfluenceContentVersion>;
|
|
16539
16604
|
links?: Maybe<ConfluenceCommentLinks>;
|
|
16540
16605
|
name?: Maybe<Scalars['String']['output']>;
|
|
16606
|
+
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
16541
16607
|
status?: Maybe<ConfluenceCommentStatus>;
|
|
16542
16608
|
};
|
|
16543
16609
|
export declare type ConfluenceForgeContextToken = {
|
|
@@ -16659,6 +16725,7 @@ export declare type ConfluenceGlobalPageTemplate = {
|
|
|
16659
16725
|
name?: Maybe<Scalars['String']['output']>;
|
|
16660
16726
|
};
|
|
16661
16727
|
export declare enum ConfluenceGraphQlContentMode {
|
|
16728
|
+
Compact = "COMPACT",
|
|
16662
16729
|
Dense = "DENSE",
|
|
16663
16730
|
Standard = "STANDARD"
|
|
16664
16731
|
}
|
|
@@ -16751,6 +16818,7 @@ export declare type ConfluenceInlineComment = ConfluenceComment & Node & {
|
|
|
16751
16818
|
latestVersion?: Maybe<ConfluenceContentVersion>;
|
|
16752
16819
|
links?: Maybe<ConfluenceCommentLinks>;
|
|
16753
16820
|
name?: Maybe<Scalars['String']['output']>;
|
|
16821
|
+
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
16754
16822
|
resolutionStatus?: Maybe<ConfluenceInlineCommentResolutionStatus>;
|
|
16755
16823
|
status?: Maybe<ConfluenceCommentStatus>;
|
|
16756
16824
|
};
|
|
@@ -18671,7 +18739,8 @@ export declare type ConfluenceSpaceSettingsEditorVersions = {
|
|
|
18671
18739
|
};
|
|
18672
18740
|
export declare enum ConfluenceSpaceStatus {
|
|
18673
18741
|
Archived = "ARCHIVED",
|
|
18674
|
-
Current = "CURRENT"
|
|
18742
|
+
Current = "CURRENT",
|
|
18743
|
+
Trashed = "TRASHED"
|
|
18675
18744
|
}
|
|
18676
18745
|
export declare enum ConfluenceSpaceType {
|
|
18677
18746
|
Global = "GLOBAL",
|
|
@@ -26429,6 +26498,11 @@ export declare type DevConsoleAppUsageOverviewResponse = {
|
|
|
26429
26498
|
error?: Maybe<QueryError>;
|
|
26430
26499
|
resourceUsage?: Maybe<DevConsoleResourceUsageData>;
|
|
26431
26500
|
};
|
|
26501
|
+
export declare type DevConsoleAppsWithoutConsentResponse = {
|
|
26502
|
+
__typename?: 'DevConsoleAppsWithoutConsentResponse';
|
|
26503
|
+
appIds: Array<Scalars['String']['output']>;
|
|
26504
|
+
error?: Maybe<QueryError>;
|
|
26505
|
+
};
|
|
26432
26506
|
export declare type DevConsoleArchiveDeveloperSpaceInput = {
|
|
26433
26507
|
developerSpaceId: Scalars['String']['input'];
|
|
26434
26508
|
};
|
|
@@ -26565,6 +26639,7 @@ export declare type DevConsoleQuery = {
|
|
|
26565
26639
|
appResourceUsage: DevConsoleAppResourceUsageResponse;
|
|
26566
26640
|
appResourceUsageDetailedView: DevConsoleAppResourceUsageDetailedViewResponse;
|
|
26567
26641
|
appUsageOverview: DevConsoleAppUsageOverviewResponse;
|
|
26642
|
+
getAppsWithoutConsent: DevConsoleAppsWithoutConsentResponse;
|
|
26568
26643
|
getDeveloperSpaceDetails?: Maybe<DevConsoleBulkDeveloperSpaceDetailsResponse>;
|
|
26569
26644
|
getDeveloperSpaceMembers?: Maybe<DevConsoleDeveloperSpaceMembersResponse>;
|
|
26570
26645
|
getDeveloperSpaceWithLinkingAccess?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -26583,6 +26658,9 @@ export declare type DevConsoleQueryAppUsageOverviewArgs = {
|
|
|
26583
26658
|
appId: Scalars['ID']['input'];
|
|
26584
26659
|
filters: DevConsoleAppUsageFiltersInput;
|
|
26585
26660
|
};
|
|
26661
|
+
export declare type DevConsoleQueryGetAppsWithoutConsentArgs = {
|
|
26662
|
+
developerSpaceId: Scalars['String']['input'];
|
|
26663
|
+
};
|
|
26586
26664
|
export declare type DevConsoleQueryGetDeveloperSpaceDetailsArgs = {
|
|
26587
26665
|
developerSpaceIds: Array<Scalars['String']['input']>;
|
|
26588
26666
|
};
|
|
@@ -35852,6 +35930,10 @@ export declare type GraphStore = {
|
|
|
35852
35930
|
focusAreaHasProjectBatch?: Maybe<GraphStoreBatchFocusAreaHasProjectConnection>;
|
|
35853
35931
|
focusAreaHasProjectInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectInverseConnection>;
|
|
35854
35932
|
focusAreaHasProjectInverseBatch?: Maybe<GraphStoreBatchFocusAreaHasProjectConnection>;
|
|
35933
|
+
focusAreaHasStatusUpdate?: Maybe<GraphStoreSimplifiedFocusAreaHasStatusUpdateConnection>;
|
|
35934
|
+
focusAreaHasStatusUpdateBatch?: Maybe<GraphStoreBatchFocusAreaHasStatusUpdateConnection>;
|
|
35935
|
+
focusAreaHasStatusUpdateInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasStatusUpdateInverseConnection>;
|
|
35936
|
+
focusAreaHasStatusUpdateInverseBatch?: Maybe<GraphStoreBatchFocusAreaHasStatusUpdateConnection>;
|
|
35855
35937
|
focusAreaHasWatcher?: Maybe<GraphStoreSimplifiedFocusAreaHasWatcherConnection>;
|
|
35856
35938
|
focusAreaHasWatcherBatch?: Maybe<GraphStoreBatchFocusAreaHasWatcherConnection>;
|
|
35857
35939
|
focusAreaHasWatcherInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasWatcherInverseConnection>;
|
|
@@ -37618,6 +37700,32 @@ export declare type GraphStoreFocusAreaHasProjectInverseBatchArgs = {
|
|
|
37618
37700
|
ids: Array<Scalars['ID']['input']>;
|
|
37619
37701
|
sort?: InputMaybe<GraphStoreFocusAreaHasProjectSortInput>;
|
|
37620
37702
|
};
|
|
37703
|
+
export declare type GraphStoreFocusAreaHasStatusUpdateArgs = {
|
|
37704
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
37705
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37706
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37707
|
+
id: Scalars['ID']['input'];
|
|
37708
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasStatusUpdateSortInput>;
|
|
37709
|
+
};
|
|
37710
|
+
export declare type GraphStoreFocusAreaHasStatusUpdateBatchArgs = {
|
|
37711
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
37712
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37713
|
+
ids: Array<Scalars['ID']['input']>;
|
|
37714
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasStatusUpdateSortInput>;
|
|
37715
|
+
};
|
|
37716
|
+
export declare type GraphStoreFocusAreaHasStatusUpdateInverseArgs = {
|
|
37717
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
37718
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37719
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37720
|
+
id: Scalars['ID']['input'];
|
|
37721
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasStatusUpdateSortInput>;
|
|
37722
|
+
};
|
|
37723
|
+
export declare type GraphStoreFocusAreaHasStatusUpdateInverseBatchArgs = {
|
|
37724
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
37725
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37726
|
+
ids: Array<Scalars['ID']['input']>;
|
|
37727
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasStatusUpdateSortInput>;
|
|
37728
|
+
};
|
|
37621
37729
|
export declare type GraphStoreFocusAreaHasWatcherArgs = {
|
|
37622
37730
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
37623
37731
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -42388,6 +42496,47 @@ export declare type GraphStoreBatchFocusAreaHasProjectStartNode = {
|
|
|
42388
42496
|
id: Scalars['ID']['output'];
|
|
42389
42497
|
};
|
|
42390
42498
|
export declare type GraphStoreBatchFocusAreaHasProjectStartUnion = MercuryFocusArea;
|
|
42499
|
+
export declare type GraphStoreBatchFocusAreaHasStatusUpdateConnection = HasPageInfo & {
|
|
42500
|
+
__typename?: 'GraphStoreBatchFocusAreaHasStatusUpdateConnection';
|
|
42501
|
+
edges: Array<Maybe<GraphStoreBatchFocusAreaHasStatusUpdateEdge>>;
|
|
42502
|
+
nodes: Array<Maybe<GraphStoreBatchFocusAreaHasStatusUpdateNode>>;
|
|
42503
|
+
pageInfo: PageInfo;
|
|
42504
|
+
};
|
|
42505
|
+
export declare type GraphStoreBatchFocusAreaHasStatusUpdateEdge = {
|
|
42506
|
+
__typename?: 'GraphStoreBatchFocusAreaHasStatusUpdateEdge';
|
|
42507
|
+
node: GraphStoreBatchFocusAreaHasStatusUpdateInnerConnection;
|
|
42508
|
+
};
|
|
42509
|
+
export declare type GraphStoreBatchFocusAreaHasStatusUpdateEndNode = {
|
|
42510
|
+
__typename?: 'GraphStoreBatchFocusAreaHasStatusUpdateEndNode';
|
|
42511
|
+
data?: Maybe<GraphStoreBatchFocusAreaHasStatusUpdateEndUnion>;
|
|
42512
|
+
id: Scalars['ID']['output'];
|
|
42513
|
+
};
|
|
42514
|
+
export declare type GraphStoreBatchFocusAreaHasStatusUpdateEndUnion = MercuryFocusAreaStatusUpdate;
|
|
42515
|
+
export declare type GraphStoreBatchFocusAreaHasStatusUpdateInnerConnection = {
|
|
42516
|
+
__typename?: 'GraphStoreBatchFocusAreaHasStatusUpdateInnerConnection';
|
|
42517
|
+
edges: Array<Maybe<GraphStoreBatchFocusAreaHasStatusUpdateInnerEdge>>;
|
|
42518
|
+
nodes: Array<Maybe<GraphStoreBatchFocusAreaHasStatusUpdateNode>>;
|
|
42519
|
+
requestedId: Scalars['ID']['output'];
|
|
42520
|
+
};
|
|
42521
|
+
export declare type GraphStoreBatchFocusAreaHasStatusUpdateInnerEdge = {
|
|
42522
|
+
__typename?: 'GraphStoreBatchFocusAreaHasStatusUpdateInnerEdge';
|
|
42523
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42524
|
+
node: GraphStoreBatchFocusAreaHasStatusUpdateNode;
|
|
42525
|
+
};
|
|
42526
|
+
export declare type GraphStoreBatchFocusAreaHasStatusUpdateNode = Node & {
|
|
42527
|
+
__typename?: 'GraphStoreBatchFocusAreaHasStatusUpdateNode';
|
|
42528
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42529
|
+
from: GraphStoreBatchFocusAreaHasStatusUpdateStartNode;
|
|
42530
|
+
id: Scalars['ID']['output'];
|
|
42531
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42532
|
+
to: GraphStoreBatchFocusAreaHasStatusUpdateEndNode;
|
|
42533
|
+
};
|
|
42534
|
+
export declare type GraphStoreBatchFocusAreaHasStatusUpdateStartNode = {
|
|
42535
|
+
__typename?: 'GraphStoreBatchFocusAreaHasStatusUpdateStartNode';
|
|
42536
|
+
data?: Maybe<GraphStoreBatchFocusAreaHasStatusUpdateStartUnion>;
|
|
42537
|
+
id: Scalars['ID']['output'];
|
|
42538
|
+
};
|
|
42539
|
+
export declare type GraphStoreBatchFocusAreaHasStatusUpdateStartUnion = MercuryFocusArea;
|
|
42391
42540
|
export declare type GraphStoreBatchFocusAreaHasWatcherConnection = HasPageInfo & {
|
|
42392
42541
|
__typename?: 'GraphStoreBatchFocusAreaHasWatcherConnection';
|
|
42393
42542
|
edges: Array<Maybe<GraphStoreBatchFocusAreaHasWatcherEdge>>;
|
|
@@ -44375,6 +44524,9 @@ export declare type GraphStoreFocusAreaHasPageSortInput = {
|
|
|
44375
44524
|
export declare type GraphStoreFocusAreaHasProjectSortInput = {
|
|
44376
44525
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44377
44526
|
};
|
|
44527
|
+
export declare type GraphStoreFocusAreaHasStatusUpdateSortInput = {
|
|
44528
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44529
|
+
};
|
|
44378
44530
|
export declare type GraphStoreFocusAreaHasWatcherSortInput = {
|
|
44379
44531
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44380
44532
|
};
|
|
@@ -50934,6 +51086,34 @@ export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseEdge = {
|
|
|
50934
51086
|
};
|
|
50935
51087
|
export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseUnion = MercuryFocusArea;
|
|
50936
51088
|
export declare type GraphStoreSimplifiedFocusAreaHasProjectUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
51089
|
+
export declare type GraphStoreSimplifiedFocusAreaHasStatusUpdateConnection = HasPageInfo & {
|
|
51090
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasStatusUpdateConnection';
|
|
51091
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasStatusUpdateEdge>>>;
|
|
51092
|
+
pageInfo: PageInfo;
|
|
51093
|
+
};
|
|
51094
|
+
export declare type GraphStoreSimplifiedFocusAreaHasStatusUpdateEdge = {
|
|
51095
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasStatusUpdateEdge';
|
|
51096
|
+
createdAt: Scalars['DateTime']['output'];
|
|
51097
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
51098
|
+
id: Scalars['ID']['output'];
|
|
51099
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
51100
|
+
node?: Maybe<GraphStoreSimplifiedFocusAreaHasStatusUpdateUnion>;
|
|
51101
|
+
};
|
|
51102
|
+
export declare type GraphStoreSimplifiedFocusAreaHasStatusUpdateInverseConnection = HasPageInfo & {
|
|
51103
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasStatusUpdateInverseConnection';
|
|
51104
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasStatusUpdateInverseEdge>>>;
|
|
51105
|
+
pageInfo: PageInfo;
|
|
51106
|
+
};
|
|
51107
|
+
export declare type GraphStoreSimplifiedFocusAreaHasStatusUpdateInverseEdge = {
|
|
51108
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasStatusUpdateInverseEdge';
|
|
51109
|
+
createdAt: Scalars['DateTime']['output'];
|
|
51110
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
51111
|
+
id: Scalars['ID']['output'];
|
|
51112
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
51113
|
+
node?: Maybe<GraphStoreSimplifiedFocusAreaHasStatusUpdateInverseUnion>;
|
|
51114
|
+
};
|
|
51115
|
+
export declare type GraphStoreSimplifiedFocusAreaHasStatusUpdateInverseUnion = MercuryFocusArea;
|
|
51116
|
+
export declare type GraphStoreSimplifiedFocusAreaHasStatusUpdateUnion = MercuryFocusAreaStatusUpdate;
|
|
50937
51117
|
export declare type GraphStoreSimplifiedFocusAreaHasWatcherConnection = HasPageInfo & {
|
|
50938
51118
|
__typename?: 'GraphStoreSimplifiedFocusAreaHasWatcherConnection';
|
|
50939
51119
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasWatcherEdge>>>;
|
|
@@ -59168,6 +59348,7 @@ export declare type GrowthUnifiedProfileTwcOnboardingContext = {
|
|
|
59168
59348
|
entitlementId: Scalars['ID']['output'];
|
|
59169
59349
|
existingProducts?: Maybe<Array<Maybe<GrowthUnifiedProfileTwcProductDetails>>>;
|
|
59170
59350
|
newProducts?: Maybe<Array<Maybe<GrowthUnifiedProfileTwcProductDetails>>>;
|
|
59351
|
+
onboardingUrl?: Maybe<Scalars['String']['output']>;
|
|
59171
59352
|
};
|
|
59172
59353
|
export declare type GrowthUnifiedProfileTwcOnboardingContextInput = {
|
|
59173
59354
|
createdAt?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -59176,14 +59357,17 @@ export declare type GrowthUnifiedProfileTwcOnboardingContextInput = {
|
|
|
59176
59357
|
entitlementId: Scalars['ID']['input'];
|
|
59177
59358
|
existingProducts?: InputMaybe<Array<InputMaybe<GrowthUnifiedProfileTwcProductDetailsInput>>>;
|
|
59178
59359
|
newProducts?: InputMaybe<Array<InputMaybe<GrowthUnifiedProfileTwcProductDetailsInput>>>;
|
|
59360
|
+
onboardingUrl?: InputMaybe<Scalars['String']['input']>;
|
|
59179
59361
|
};
|
|
59180
59362
|
export declare type GrowthUnifiedProfileTwcProductDetails = {
|
|
59181
59363
|
__typename?: 'GrowthUnifiedProfileTwcProductDetails';
|
|
59182
59364
|
productKey: Scalars['String']['output'];
|
|
59365
|
+
productUrl?: Maybe<Scalars['String']['output']>;
|
|
59183
59366
|
tenantId?: Maybe<Scalars['String']['output']>;
|
|
59184
59367
|
};
|
|
59185
59368
|
export declare type GrowthUnifiedProfileTwcProductDetailsInput = {
|
|
59186
59369
|
productKey: Scalars['String']['input'];
|
|
59370
|
+
productUrl?: InputMaybe<Scalars['String']['input']>;
|
|
59187
59371
|
tenantId?: InputMaybe<Scalars['String']['input']>;
|
|
59188
59372
|
};
|
|
59189
59373
|
export declare type GrowthUnifiedProfileUserActivityContext = {
|
|
@@ -63596,11 +63780,6 @@ export declare type JiraBacklogData = {
|
|
|
63596
63780
|
supportsPages?: Maybe<Scalars['Boolean']['output']>;
|
|
63597
63781
|
versionData?: Maybe<JiraBacklogVersionData>;
|
|
63598
63782
|
};
|
|
63599
|
-
export declare enum JiraBacklogDestination {
|
|
63600
|
-
Backlog = "BACKLOG",
|
|
63601
|
-
Board = "BOARD",
|
|
63602
|
-
Sprint = "SPRINT"
|
|
63603
|
-
}
|
|
63604
63783
|
export declare type JiraBacklogEpicConfig = {
|
|
63605
63784
|
__typename?: 'JiraBacklogEpicConfig';
|
|
63606
63785
|
colorFieldId?: Maybe<Scalars['String']['output']>;
|
|
@@ -64297,6 +64476,7 @@ export declare type JiraBoardViewSyntheticFieldCardOption = JiraBoardViewCardOpt
|
|
|
64297
64476
|
export declare type JiraBoardViewWorkflow = {
|
|
64298
64477
|
__typename?: 'JiraBoardViewWorkflow';
|
|
64299
64478
|
eligibleTransitions?: Maybe<JiraTransitionConnection>;
|
|
64479
|
+
id: Scalars['ID']['output'];
|
|
64300
64480
|
issueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
64301
64481
|
};
|
|
64302
64482
|
export declare type JiraBoardViewWorkflowEligibleTransitionsArgs = {
|
|
@@ -66133,6 +66313,7 @@ export declare type JiraCreateCalendarIssuePayload = Payload & {
|
|
|
66133
66313
|
__typename?: 'JiraCreateCalendarIssuePayload';
|
|
66134
66314
|
errors?: Maybe<Array<MutationError>>;
|
|
66135
66315
|
issue?: Maybe<JiraIssue>;
|
|
66316
|
+
issueV2?: Maybe<JiraScenarioIssueLike>;
|
|
66136
66317
|
success: Scalars['Boolean']['output'];
|
|
66137
66318
|
};
|
|
66138
66319
|
export declare type JiraCreateCustomBackgroundInput = {
|
|
@@ -66186,8 +66367,7 @@ export declare type JiraCreateEmptyActivityConfigurationInput = {
|
|
|
66186
66367
|
export declare type JiraCreateFieldSchemeInput = {
|
|
66187
66368
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
66188
66369
|
name: Scalars['String']['input'];
|
|
66189
|
-
|
|
66190
|
-
sourceFieldSchemeId?: InputMaybe<Scalars['ID']['input']>;
|
|
66370
|
+
sourceOfItems?: InputMaybe<JiraFieldSchemeSourceInput>;
|
|
66191
66371
|
};
|
|
66192
66372
|
export declare type JiraCreateFormattingRuleInput = {
|
|
66193
66373
|
afterRuleId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -67806,6 +67986,11 @@ export declare type JiraFieldSchemePayload = Payload & {
|
|
|
67806
67986
|
fieldScheme?: Maybe<JiraFieldScheme>;
|
|
67807
67987
|
success: Scalars['Boolean']['output'];
|
|
67808
67988
|
};
|
|
67989
|
+
export declare type JiraFieldSchemeSourceInput = {
|
|
67990
|
+
sourceFieldConfigurationSchemeId?: InputMaybe<Scalars['ID']['input']>;
|
|
67991
|
+
sourceFieldSchemeId?: InputMaybe<Scalars['ID']['input']>;
|
|
67992
|
+
useDefaultFieldConfigScheme?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67993
|
+
};
|
|
67809
67994
|
export declare type JiraFieldSchemesConnection = {
|
|
67810
67995
|
__typename?: 'JiraFieldSchemesConnection';
|
|
67811
67996
|
edges?: Maybe<Array<Maybe<JiraFieldSchemesEdge>>>;
|
|
@@ -67856,6 +68041,7 @@ export declare type JiraFieldSetPreferencesUpdatePayload = Payload & {
|
|
|
67856
68041
|
__typename?: 'JiraFieldSetPreferencesUpdatePayload';
|
|
67857
68042
|
errors?: Maybe<Array<MutationError>>;
|
|
67858
68043
|
success: Scalars['Boolean']['output'];
|
|
68044
|
+
view?: Maybe<JiraView>;
|
|
67859
68045
|
};
|
|
67860
68046
|
export declare type JiraFieldSetView = JiraFieldSetsViewMetadata & Node & {
|
|
67861
68047
|
__typename?: 'JiraFieldSetView';
|
|
@@ -69058,6 +69244,7 @@ export declare type JiraHydrateJqlInput = {
|
|
|
69058
69244
|
filterId?: InputMaybe<Scalars['ID']['input']>;
|
|
69059
69245
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
69060
69246
|
lastUsedJqlForIssueNavigator?: InputMaybe<JiraJqlScopeInput>;
|
|
69247
|
+
viewQueryInput?: InputMaybe<JiraIssueSearchViewQueryInput>;
|
|
69061
69248
|
};
|
|
69062
69249
|
export declare enum JiraIncidentPriority {
|
|
69063
69250
|
P1 = "P1",
|
|
@@ -69075,28 +69262,6 @@ export declare type JiraInitializeProjectNotificationPreferencesPayload = Payloa
|
|
|
69075
69262
|
projectPreferences?: Maybe<JiraNotificationProjectPreferences>;
|
|
69076
69263
|
success: Scalars['Boolean']['output'];
|
|
69077
69264
|
};
|
|
69078
|
-
export declare type JiraInlineIssueCreateInput = {
|
|
69079
|
-
boardId?: InputMaybe<Scalars['ID']['input']>;
|
|
69080
|
-
destination?: InputMaybe<JiraBacklogDestination>;
|
|
69081
|
-
fields: JiraIssueFieldsInput;
|
|
69082
|
-
issueTypeId: Scalars['ID']['input'];
|
|
69083
|
-
projectId: Scalars['ID']['input'];
|
|
69084
|
-
rank?: InputMaybe<JiraIssueCreateRankInput>;
|
|
69085
|
-
};
|
|
69086
|
-
export declare type JiraInlineIssueCreatePayload = Payload & {
|
|
69087
|
-
__typename?: 'JiraInlineIssueCreatePayload';
|
|
69088
|
-
appliedFields?: Maybe<Array<JiraField>>;
|
|
69089
|
-
errors?: Maybe<Array<MutationError>>;
|
|
69090
|
-
issue?: Maybe<JiraIssue>;
|
|
69091
|
-
skippedFields?: Maybe<Array<JiraField>>;
|
|
69092
|
-
success: Scalars['Boolean']['output'];
|
|
69093
|
-
};
|
|
69094
|
-
export declare type JiraInlineIssuesCreatePayload = Payload & {
|
|
69095
|
-
__typename?: 'JiraInlineIssuesCreatePayload';
|
|
69096
|
-
errors?: Maybe<Array<MutationError>>;
|
|
69097
|
-
issues?: Maybe<Array<JiraInlineIssueCreatePayload>>;
|
|
69098
|
-
success: Scalars['Boolean']['output'];
|
|
69099
|
-
};
|
|
69100
69265
|
export declare enum JiraInstallDeploymentsBannerPrecondition {
|
|
69101
69266
|
DeploymentsEmptyState = "DEPLOYMENTS_EMPTY_STATE",
|
|
69102
69267
|
FeatureNotEnabled = "FEATURE_NOT_ENABLED",
|
|
@@ -76257,6 +76422,7 @@ export declare type JiraProjectWithIssueTypeIds = {
|
|
|
76257
76422
|
allowedCustomFieldTypes?: Maybe<JiraFieldTypeConnection>;
|
|
76258
76423
|
availableFields?: Maybe<JiraAvailableFieldsConnection>;
|
|
76259
76424
|
fieldAssociationWithIssueTypes?: Maybe<JiraFieldAssociationWithIssueTypesConnection>;
|
|
76425
|
+
fieldAssociationWithIssueTypesByFieldId?: Maybe<JiraFieldAssociationWithIssueTypes>;
|
|
76260
76426
|
};
|
|
76261
76427
|
export declare type JiraProjectWithIssueTypeIdsAllowedCustomFieldTypesArgs = {
|
|
76262
76428
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -76272,6 +76438,9 @@ export declare type JiraProjectWithIssueTypeIdsFieldAssociationWithIssueTypesArg
|
|
|
76272
76438
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
76273
76439
|
input?: InputMaybe<JiraFieldAssociationWithIssueTypesInput>;
|
|
76274
76440
|
};
|
|
76441
|
+
export declare type JiraProjectWithIssueTypeIdsFieldAssociationWithIssueTypesByFieldIdArgs = {
|
|
76442
|
+
fieldId: Scalars['String']['input'];
|
|
76443
|
+
};
|
|
76275
76444
|
export declare enum JiraProjectsHelpCenterMappingStatus {
|
|
76276
76445
|
All = "ALL",
|
|
76277
76446
|
Linked = "LINKED",
|
|
@@ -78368,6 +78537,7 @@ export declare type JiraResourcesResult = {
|
|
|
78368
78537
|
__typename?: 'JiraResourcesResult';
|
|
78369
78538
|
deletableCount?: Maybe<Scalars['Long']['output']>;
|
|
78370
78539
|
edges?: Maybe<Array<Maybe<JiraResourceNode>>>;
|
|
78540
|
+
next?: Maybe<Scalars['String']['output']>;
|
|
78371
78541
|
totalCount?: Maybe<Scalars['Long']['output']>;
|
|
78372
78542
|
};
|
|
78373
78543
|
export declare enum JiraResourcesSortDirection {
|
|
@@ -82579,6 +82749,13 @@ export declare type JiraUserPreferencesMutationSetShowRedactionChangeBoardingOnI
|
|
|
82579
82749
|
export declare type JiraUserPreferencesMutationSetShowRedactionChangeBoardingOnIssueViewAsViewerArgs = {
|
|
82580
82750
|
show: Scalars['Boolean']['input'];
|
|
82581
82751
|
};
|
|
82752
|
+
export declare type JiraUserSegRedirectAdvice = {
|
|
82753
|
+
__typename?: 'JiraUserSegRedirectAdvice';
|
|
82754
|
+
firstActiveDate?: Maybe<Scalars['String']['output']>;
|
|
82755
|
+
lastUserSegmentedDate?: Maybe<Scalars['String']['output']>;
|
|
82756
|
+
redirect?: Maybe<Scalars['Boolean']['output']>;
|
|
82757
|
+
teamType?: Maybe<Scalars['String']['output']>;
|
|
82758
|
+
};
|
|
82582
82759
|
export declare type JiraUserSegmentation = {
|
|
82583
82760
|
__typename?: 'JiraUserSegmentation';
|
|
82584
82761
|
role?: Maybe<Scalars['String']['output']>;
|
|
@@ -84060,6 +84237,12 @@ export declare type JsmChannelsServiceAgentResolutionPlan = {
|
|
|
84060
84237
|
__typename?: 'JsmChannelsServiceAgentResolutionPlan';
|
|
84061
84238
|
planId?: Maybe<Scalars['ID']['output']>;
|
|
84062
84239
|
runbooks?: Maybe<Array<Maybe<JsmChannelsServiceAgentResolutionRunbook>>>;
|
|
84240
|
+
steps?: Maybe<Array<Maybe<JsmChannelsServiceAgentResolutionPlanStep>>>;
|
|
84241
|
+
};
|
|
84242
|
+
export declare type JsmChannelsServiceAgentResolutionPlanStep = {
|
|
84243
|
+
__typename?: 'JsmChannelsServiceAgentResolutionPlanStep';
|
|
84244
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
84245
|
+
title: Scalars['String']['output'];
|
|
84063
84246
|
};
|
|
84064
84247
|
export declare type JsmChannelsServiceAgentResolutionRunbook = {
|
|
84065
84248
|
__typename?: 'JsmChannelsServiceAgentResolutionRunbook';
|
|
@@ -85628,6 +85811,7 @@ export declare type KnowledgeDiscoveryQueryApiDefinitionV2Args = {
|
|
|
85628
85811
|
};
|
|
85629
85812
|
export declare type KnowledgeDiscoveryQueryApiIntentDetectionArgs = {
|
|
85630
85813
|
locale: Scalars['String']['input'];
|
|
85814
|
+
orgId: Scalars['String']['input'];
|
|
85631
85815
|
query: Scalars['String']['input'];
|
|
85632
85816
|
siteId: Scalars['String']['input'];
|
|
85633
85817
|
};
|
|
@@ -86442,6 +86626,7 @@ export declare type LoomVideo = Node & {
|
|
|
86442
86626
|
description?: Maybe<Scalars['String']['output']>;
|
|
86443
86627
|
id: Scalars['ID']['output'];
|
|
86444
86628
|
isArchived: Scalars['Boolean']['output'];
|
|
86629
|
+
isComplete: Scalars['Boolean']['output'];
|
|
86445
86630
|
isMeeting?: Maybe<Scalars['Boolean']['output']>;
|
|
86446
86631
|
meetingAri?: Maybe<Scalars['String']['output']>;
|
|
86447
86632
|
name: Scalars['String']['output'];
|
|
@@ -87135,7 +87320,8 @@ export declare type MarketplaceConsoleCanMakeServerVersionPublicInput = {
|
|
|
87135
87320
|
};
|
|
87136
87321
|
export declare enum MarketplaceConsoleCloudComplianceBoundary {
|
|
87137
87322
|
Commercial = "COMMERCIAL",
|
|
87138
|
-
FedrampModerate = "FEDRAMP_MODERATE"
|
|
87323
|
+
FedrampModerate = "FEDRAMP_MODERATE",
|
|
87324
|
+
IsolatedCloud = "ISOLATED_CLOUD"
|
|
87139
87325
|
}
|
|
87140
87326
|
export declare type MarketplaceConsoleConnectFrameworkAttributes = {
|
|
87141
87327
|
__typename?: 'MarketplaceConsoleConnectFrameworkAttributes';
|
|
@@ -88738,7 +88924,9 @@ export declare type MarketplaceStoreInstallAppInput = {
|
|
|
88738
88924
|
export declare type MarketplaceStoreInstallAppResponse = {
|
|
88739
88925
|
__typename?: 'MarketplaceStoreInstallAppResponse';
|
|
88740
88926
|
id: Scalars['ID']['output'];
|
|
88927
|
+
orderId?: Maybe<Scalars['ID']['output']>;
|
|
88741
88928
|
status: MarketplaceStoreInstallAppStatus;
|
|
88929
|
+
txaAccountId?: Maybe<Scalars['String']['output']>;
|
|
88742
88930
|
};
|
|
88743
88931
|
export declare enum MarketplaceStoreInstallAppStatus {
|
|
88744
88932
|
InProgress = "IN_PROGRESS",
|
|
@@ -88755,7 +88943,8 @@ export declare type MarketplaceStoreInstallAppTargetInput = {
|
|
|
88755
88943
|
export declare enum MarketplaceStoreInstallationTargetProduct {
|
|
88756
88944
|
Compass = "COMPASS",
|
|
88757
88945
|
Confluence = "CONFLUENCE",
|
|
88758
|
-
Jira = "JIRA"
|
|
88946
|
+
Jira = "JIRA",
|
|
88947
|
+
Jsm = "JSM"
|
|
88759
88948
|
}
|
|
88760
88949
|
export declare type MarketplaceStoreInstalledAppDetailsResponse = {
|
|
88761
88950
|
__typename?: 'MarketplaceStoreInstalledAppDetailsResponse';
|
|
@@ -89116,6 +89305,8 @@ export declare type MarketplaceStoreQueryApiHostStatusArgs = {
|
|
|
89116
89305
|
};
|
|
89117
89306
|
export declare type MarketplaceStoreQueryApiInstallAppStatusArgs = {
|
|
89118
89307
|
id: Scalars['ID']['input'];
|
|
89308
|
+
orderId?: InputMaybe<Scalars['ID']['input']>;
|
|
89309
|
+
txaAccountId?: InputMaybe<Scalars['String']['input']>;
|
|
89119
89310
|
};
|
|
89120
89311
|
export declare type MarketplaceStoreQueryApiInstalledAppDetailsArgs = {
|
|
89121
89312
|
input: MarketplaceStoreInstallAppInput;
|
|
@@ -89704,6 +89895,10 @@ export declare enum MercuryCostType {
|
|
|
89704
89895
|
Labor = "LABOR",
|
|
89705
89896
|
NonLabor = "NON_LABOR"
|
|
89706
89897
|
}
|
|
89898
|
+
export declare type MercuryCreateBaseCustomFieldDefinitionInput = {
|
|
89899
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
89900
|
+
name: Scalars['String']['input'];
|
|
89901
|
+
};
|
|
89707
89902
|
export declare type MercuryCreateChangeProposalCommentInput = {
|
|
89708
89903
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
89709
89904
|
content: Scalars['String']['input'];
|
|
@@ -89754,6 +89949,11 @@ export declare type MercuryCreateCommentPayload = Payload & {
|
|
|
89754
89949
|
errors?: Maybe<Array<MutationError>>;
|
|
89755
89950
|
success: Scalars['Boolean']['output'];
|
|
89756
89951
|
};
|
|
89952
|
+
export declare type MercuryCreateCoreCustomFieldDefinitionInput = {
|
|
89953
|
+
numberField?: InputMaybe<MercuryCreateNumberCustomFieldDefinitionInput>;
|
|
89954
|
+
singleSelectField?: InputMaybe<MercuryCreateSingleSelectCustomFieldDefinitionInput>;
|
|
89955
|
+
textField?: InputMaybe<MercuryCreateTextCustomFieldDefinitionInput>;
|
|
89956
|
+
};
|
|
89757
89957
|
export declare type MercuryCreateCostSubtypeInput = {
|
|
89758
89958
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
89759
89959
|
costType: MercuryCostType;
|
|
@@ -89767,6 +89967,12 @@ export declare type MercuryCreateCostSubtypePayload = Payload & {
|
|
|
89767
89967
|
errors?: Maybe<Array<MutationError>>;
|
|
89768
89968
|
success: Scalars['Boolean']['output'];
|
|
89769
89969
|
};
|
|
89970
|
+
export declare type MercuryCreateCustomFieldDefinitionPayload = {
|
|
89971
|
+
__typename?: 'MercuryCreateCustomFieldDefinitionPayload';
|
|
89972
|
+
customFieldDefinition?: Maybe<MercuryCustomFieldDefinition>;
|
|
89973
|
+
errors?: Maybe<Array<MutationError>>;
|
|
89974
|
+
success: Scalars['Boolean']['output'];
|
|
89975
|
+
};
|
|
89770
89976
|
export declare type MercuryCreateFiscalCalendarConfigurationInput = {
|
|
89771
89977
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
89772
89978
|
startMonthNumber: Scalars['Int']['input'];
|
|
@@ -89796,6 +90002,10 @@ export declare type MercuryCreateFocusAreaChangeInput = {
|
|
|
89796
90002
|
focusAreaTypeId: Scalars['ID']['input'];
|
|
89797
90003
|
targetFocusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
89798
90004
|
};
|
|
90005
|
+
export declare type MercuryCreateFocusAreaCustomFieldDefinitionInput = {
|
|
90006
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
90007
|
+
coreCustomFieldDefinition?: InputMaybe<MercuryCreateCoreCustomFieldDefinitionInput>;
|
|
90008
|
+
};
|
|
89799
90009
|
export declare type MercuryCreateFocusAreaInput = {
|
|
89800
90010
|
cloudId: Scalars['ID']['input'];
|
|
89801
90011
|
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -89845,6 +90055,9 @@ export declare type MercuryCreateInvestmentCategorySetPayload = Payload & {
|
|
|
89845
90055
|
errors?: Maybe<Array<MutationError>>;
|
|
89846
90056
|
success: Scalars['Boolean']['output'];
|
|
89847
90057
|
};
|
|
90058
|
+
export declare type MercuryCreateNumberCustomFieldDefinitionInput = {
|
|
90059
|
+
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
90060
|
+
};
|
|
89848
90061
|
export declare type MercuryCreatePortfolioFocusAreasInput = {
|
|
89849
90062
|
cloudId: Scalars['ID']['input'];
|
|
89850
90063
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
@@ -89857,6 +90070,9 @@ export declare type MercuryCreatePortfolioPayload = Payload & {
|
|
|
89857
90070
|
errors?: Maybe<Array<MutationError>>;
|
|
89858
90071
|
success: Scalars['Boolean']['output'];
|
|
89859
90072
|
};
|
|
90073
|
+
export declare type MercuryCreateSingleSelectCustomFieldDefinitionInput = {
|
|
90074
|
+
options: Array<Scalars['String']['input']>;
|
|
90075
|
+
};
|
|
89860
90076
|
export declare type MercuryCreateStrategicEventCommentInput = {
|
|
89861
90077
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
89862
90078
|
content: Scalars['String']['input'];
|
|
@@ -89881,6 +90097,50 @@ export declare type MercuryCreateStrategicEventPayload = Payload & {
|
|
|
89881
90097
|
errors?: Maybe<Array<MutationError>>;
|
|
89882
90098
|
success: Scalars['Boolean']['output'];
|
|
89883
90099
|
};
|
|
90100
|
+
export declare type MercuryCreateTextCustomFieldDefinitionInput = {
|
|
90101
|
+
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
90102
|
+
};
|
|
90103
|
+
export declare type MercuryCustomField = {
|
|
90104
|
+
createdBy?: Maybe<User>;
|
|
90105
|
+
createdDate: Scalars['DateTime']['output'];
|
|
90106
|
+
definition?: Maybe<MercuryCustomFieldDefinition>;
|
|
90107
|
+
updatedBy?: Maybe<User>;
|
|
90108
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
90109
|
+
};
|
|
90110
|
+
export declare type MercuryCustomFieldDefinition = {
|
|
90111
|
+
createdBy?: Maybe<User>;
|
|
90112
|
+
createdDate: Scalars['DateTime']['output'];
|
|
90113
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
90114
|
+
id: Scalars['ID']['output'];
|
|
90115
|
+
name: Scalars['String']['output'];
|
|
90116
|
+
scope: MercuryCustomFieldDefinitionScope;
|
|
90117
|
+
updatedBy?: Maybe<User>;
|
|
90118
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
90119
|
+
};
|
|
90120
|
+
export declare type MercuryCustomFieldDefinitionConnection = {
|
|
90121
|
+
__typename?: 'MercuryCustomFieldDefinitionConnection';
|
|
90122
|
+
edges?: Maybe<Array<MercuryCustomFieldDefinitionEdge>>;
|
|
90123
|
+
pageInfo: PageInfo;
|
|
90124
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
90125
|
+
};
|
|
90126
|
+
export declare type MercuryCustomFieldDefinitionEdge = {
|
|
90127
|
+
__typename?: 'MercuryCustomFieldDefinitionEdge';
|
|
90128
|
+
cursor: Scalars['String']['output'];
|
|
90129
|
+
node?: Maybe<MercuryCustomFieldDefinition>;
|
|
90130
|
+
};
|
|
90131
|
+
export declare type MercuryCustomFieldDefinitionScope = {
|
|
90132
|
+
entityType: Scalars['String']['output'];
|
|
90133
|
+
};
|
|
90134
|
+
export declare type MercuryCustomFieldInput = {
|
|
90135
|
+
numberField?: InputMaybe<MercuryNumberCustomFieldInput>;
|
|
90136
|
+
singleSelectField?: InputMaybe<MercurySingleSelectCustomFieldInput>;
|
|
90137
|
+
textField?: InputMaybe<MercuryTextCustomFieldInput>;
|
|
90138
|
+
};
|
|
90139
|
+
export declare type MercuryCustomSelectFieldOption = {
|
|
90140
|
+
__typename?: 'MercuryCustomSelectFieldOption';
|
|
90141
|
+
id: Scalars['ID']['output'];
|
|
90142
|
+
value: Scalars['String']['output'];
|
|
90143
|
+
};
|
|
89884
90144
|
export declare type MercuryDeleteAllPreferenceInput = {
|
|
89885
90145
|
cloudId: Scalars['ID']['input'];
|
|
89886
90146
|
};
|
|
@@ -89939,6 +90199,14 @@ export declare type MercuryDeleteCostSubtypePayload = Payload & {
|
|
|
89939
90199
|
errors?: Maybe<Array<MutationError>>;
|
|
89940
90200
|
success: Scalars['Boolean']['output'];
|
|
89941
90201
|
};
|
|
90202
|
+
export declare type MercuryDeleteCustomFieldDefinitionInput = {
|
|
90203
|
+
id: Scalars['ID']['input'];
|
|
90204
|
+
};
|
|
90205
|
+
export declare type MercuryDeleteCustomFieldDefinitionPayload = {
|
|
90206
|
+
__typename?: 'MercuryDeleteCustomFieldDefinitionPayload';
|
|
90207
|
+
errors?: Maybe<Array<MutationError>>;
|
|
90208
|
+
success: Scalars['Boolean']['output'];
|
|
90209
|
+
};
|
|
89942
90210
|
export declare type MercuryDeleteFocusAreaGoalLinkInput = {
|
|
89943
90211
|
cloudId: Scalars['ID']['input'];
|
|
89944
90212
|
id: Scalars['ID']['input'];
|
|
@@ -90002,6 +90270,14 @@ export declare type MercuryDeleteFocusAreaWorkLinksPayload = Payload & {
|
|
|
90002
90270
|
errors?: Maybe<Array<MutationError>>;
|
|
90003
90271
|
success: Scalars['Boolean']['output'];
|
|
90004
90272
|
};
|
|
90273
|
+
export declare type MercuryDeleteInvestmentCategorySetInput = {
|
|
90274
|
+
id: Scalars['ID']['input'];
|
|
90275
|
+
};
|
|
90276
|
+
export declare type MercuryDeleteInvestmentCategorySetPayload = Payload & {
|
|
90277
|
+
__typename?: 'MercuryDeleteInvestmentCategorySetPayload';
|
|
90278
|
+
errors?: Maybe<Array<MutationError>>;
|
|
90279
|
+
success: Scalars['Boolean']['output'];
|
|
90280
|
+
};
|
|
90005
90281
|
export declare type MercuryDeletePortfolioFocusAreaLinkInput = {
|
|
90006
90282
|
cloudId: Scalars['ID']['input'];
|
|
90007
90283
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
@@ -90094,7 +90370,7 @@ export declare type MercuryFiscalCalendarConfigurationSort = {
|
|
|
90094
90370
|
order: SortOrder;
|
|
90095
90371
|
};
|
|
90096
90372
|
export declare enum MercuryFiscalCalendarConfigurationSortField {
|
|
90097
|
-
|
|
90373
|
+
CreatedDate = "CREATED_DATE"
|
|
90098
90374
|
}
|
|
90099
90375
|
export declare type MercuryFocusArea = Node & {
|
|
90100
90376
|
__typename?: 'MercuryFocusArea';
|
|
@@ -90104,6 +90380,7 @@ export declare type MercuryFocusArea = Node & {
|
|
|
90104
90380
|
ari: Scalars['String']['output'];
|
|
90105
90381
|
changeSummary?: Maybe<MercuryChangeSummary>;
|
|
90106
90382
|
createdDate: Scalars['String']['output'];
|
|
90383
|
+
customFields?: Maybe<Array<MercuryCustomField>>;
|
|
90107
90384
|
draft: Scalars['Boolean']['output'];
|
|
90108
90385
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
90109
90386
|
focusAreaLinks?: Maybe<MercuryFocusAreaLinks>;
|
|
@@ -90194,6 +90471,10 @@ export declare type MercuryFocusAreaConnection = {
|
|
|
90194
90471
|
pageInfo: PageInfo;
|
|
90195
90472
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
90196
90473
|
};
|
|
90474
|
+
export declare type MercuryFocusAreaCustomFieldDefinitionScope = MercuryCustomFieldDefinitionScope & {
|
|
90475
|
+
__typename?: 'MercuryFocusAreaCustomFieldDefinitionScope';
|
|
90476
|
+
entityType: Scalars['String']['output'];
|
|
90477
|
+
};
|
|
90197
90478
|
export declare type MercuryFocusAreaEdge = {
|
|
90198
90479
|
__typename?: 'MercuryFocusAreaEdge';
|
|
90199
90480
|
cursor: Scalars['String']['output'];
|
|
@@ -90461,6 +90742,7 @@ export declare type MercuryFundsMutationApi = {
|
|
|
90461
90742
|
createInvestmentCategory?: Maybe<MercuryCreateInvestmentCategoryPayload>;
|
|
90462
90743
|
createInvestmentCategorySet?: Maybe<MercuryCreateInvestmentCategorySetPayload>;
|
|
90463
90744
|
deleteCostSubtype?: Maybe<MercuryDeleteCostSubtypePayload>;
|
|
90745
|
+
deleteInvestmentCategorySet?: Maybe<MercuryDeleteInvestmentCategorySetPayload>;
|
|
90464
90746
|
};
|
|
90465
90747
|
export declare type MercuryFundsMutationApiCreateCostSubtypeArgs = {
|
|
90466
90748
|
input: MercuryCreateCostSubtypeInput;
|
|
@@ -90477,6 +90759,9 @@ export declare type MercuryFundsMutationApiCreateInvestmentCategorySetArgs = {
|
|
|
90477
90759
|
export declare type MercuryFundsMutationApiDeleteCostSubtypeArgs = {
|
|
90478
90760
|
input: MercuryDeleteCostSubtypeInput;
|
|
90479
90761
|
};
|
|
90762
|
+
export declare type MercuryFundsMutationApiDeleteInvestmentCategorySetArgs = {
|
|
90763
|
+
input: MercuryDeleteInvestmentCategorySetInput;
|
|
90764
|
+
};
|
|
90480
90765
|
export declare type MercuryFundsQueryApi = {
|
|
90481
90766
|
__typename?: 'MercuryFundsQueryApi';
|
|
90482
90767
|
costSubtypes?: Maybe<Array<Maybe<MercuryCostSubtype>>>;
|
|
@@ -90550,17 +90835,25 @@ export declare type MercuryImpactedPositionSummaryByChangeProposalStatus = {
|
|
|
90550
90835
|
};
|
|
90551
90836
|
export declare type MercuryInvestmentCategory = Node & {
|
|
90552
90837
|
__typename?: 'MercuryInvestmentCategory';
|
|
90838
|
+
createdBy?: Maybe<User>;
|
|
90839
|
+
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
90553
90840
|
description?: Maybe<Scalars['String']['output']>;
|
|
90554
90841
|
id: Scalars['ID']['output'];
|
|
90555
90842
|
investmentCategorySetId: Scalars['ID']['output'];
|
|
90556
90843
|
key: Scalars['String']['output'];
|
|
90557
90844
|
name: Scalars['String']['output'];
|
|
90845
|
+
updatedBy?: Maybe<User>;
|
|
90846
|
+
updatedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
90558
90847
|
};
|
|
90559
90848
|
export declare type MercuryInvestmentCategorySet = Node & {
|
|
90560
90849
|
__typename?: 'MercuryInvestmentCategorySet';
|
|
90850
|
+
createdBy?: Maybe<User>;
|
|
90851
|
+
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
90561
90852
|
id: Scalars['ID']['output'];
|
|
90562
90853
|
investmentCategories?: Maybe<Array<MercuryInvestmentCategory>>;
|
|
90563
90854
|
name: Scalars['String']['output'];
|
|
90855
|
+
updatedBy?: Maybe<User>;
|
|
90856
|
+
updatedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
90564
90857
|
};
|
|
90565
90858
|
export declare type MercuryInvestmentCategorySetConnection = {
|
|
90566
90859
|
__typename?: 'MercuryInvestmentCategorySetConnection';
|
|
@@ -90738,11 +91031,13 @@ export declare type MercuryMutationApi = {
|
|
|
90738
91031
|
archiveFocusArea?: Maybe<MercuryArchiveFocusAreaPayload>;
|
|
90739
91032
|
createComment?: Maybe<MercuryCreateCommentPayload>;
|
|
90740
91033
|
createFocusArea?: Maybe<MercuryCreateFocusAreaPayload>;
|
|
91034
|
+
createFocusAreaCustomFieldDefinition?: Maybe<MercuryCreateCustomFieldDefinitionPayload>;
|
|
90741
91035
|
createFocusAreaStatusUpdate?: Maybe<MercuryCreateFocusAreaStatusUpdatePayload>;
|
|
90742
91036
|
createPortfolioWithFocusAreas?: Maybe<MercuryCreatePortfolioPayload>;
|
|
90743
91037
|
deleteAllPreferencesByUser?: Maybe<MercuryDeleteAllPreferencesByUserPayload>;
|
|
90744
91038
|
deleteComment?: Maybe<MercuryDeleteCommentPayload>;
|
|
90745
91039
|
deleteFocusArea?: Maybe<MercuryDeleteFocusAreaPayload>;
|
|
91040
|
+
deleteFocusAreaCustomFieldDefinition?: Maybe<MercuryDeleteCustomFieldDefinitionPayload>;
|
|
90746
91041
|
deleteFocusAreaGoalLink?: Maybe<MercuryDeleteFocusAreaGoalLinkPayload>;
|
|
90747
91042
|
deleteFocusAreaGoalLinks?: Maybe<MercuryDeleteFocusAreaGoalLinksPayload>;
|
|
90748
91043
|
deleteFocusAreaLink?: Maybe<MercuryDeleteFocusAreaLinkPayload>;
|
|
@@ -90756,11 +91051,13 @@ export declare type MercuryMutationApi = {
|
|
|
90756
91051
|
publishFocusArea?: Maybe<MercuryPublishFocusAreaPayload>;
|
|
90757
91052
|
recreatePortfolioFocusAreas?: Maybe<MercuryUpdatePortfolioPayload>;
|
|
90758
91053
|
removeWatcherFromFocusArea?: Maybe<MercuryRemoveWatcherFromFocusAreaPayload>;
|
|
91054
|
+
setFocusAreaCustomFieldValue?: Maybe<MercurySetFocusAreaCustomFieldPayload>;
|
|
90759
91055
|
setPreference?: Maybe<MercurySetPreferencePayload>;
|
|
90760
91056
|
transitionFocusAreaStatus?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
90761
91057
|
unarchiveFocusArea?: Maybe<MercuryUnarchiveFocusAreaPayload>;
|
|
90762
91058
|
updateComment?: Maybe<MercuryUpdateCommentPayload>;
|
|
90763
91059
|
updateFocusAreaAboutContent?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
91060
|
+
updateFocusAreaCustomFieldDefinitionName?: Maybe<MercuryUpdateCustomFieldDefinitionNamePayload>;
|
|
90764
91061
|
updateFocusAreaName?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
90765
91062
|
updateFocusAreaOwner?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
90766
91063
|
updateFocusAreaStatusUpdate?: Maybe<MercuryUpdateFocusAreaStatusUpdatePayload>;
|
|
@@ -90781,6 +91078,9 @@ export declare type MercuryMutationApiCreateCommentArgs = {
|
|
|
90781
91078
|
export declare type MercuryMutationApiCreateFocusAreaArgs = {
|
|
90782
91079
|
input: MercuryCreateFocusAreaInput;
|
|
90783
91080
|
};
|
|
91081
|
+
export declare type MercuryMutationApiCreateFocusAreaCustomFieldDefinitionArgs = {
|
|
91082
|
+
input: MercuryCreateFocusAreaCustomFieldDefinitionInput;
|
|
91083
|
+
};
|
|
90784
91084
|
export declare type MercuryMutationApiCreateFocusAreaStatusUpdateArgs = {
|
|
90785
91085
|
input: MercuryCreateFocusAreaStatusUpdateInput;
|
|
90786
91086
|
};
|
|
@@ -90796,6 +91096,9 @@ export declare type MercuryMutationApiDeleteCommentArgs = {
|
|
|
90796
91096
|
export declare type MercuryMutationApiDeleteFocusAreaArgs = {
|
|
90797
91097
|
input: MercuryDeleteFocusAreaInput;
|
|
90798
91098
|
};
|
|
91099
|
+
export declare type MercuryMutationApiDeleteFocusAreaCustomFieldDefinitionArgs = {
|
|
91100
|
+
input: MercuryDeleteCustomFieldDefinitionInput;
|
|
91101
|
+
};
|
|
90799
91102
|
export declare type MercuryMutationApiDeleteFocusAreaGoalLinkArgs = {
|
|
90800
91103
|
input: MercuryDeleteFocusAreaGoalLinkInput;
|
|
90801
91104
|
};
|
|
@@ -90835,6 +91138,9 @@ export declare type MercuryMutationApiRecreatePortfolioFocusAreasArgs = {
|
|
|
90835
91138
|
export declare type MercuryMutationApiRemoveWatcherFromFocusAreaArgs = {
|
|
90836
91139
|
input: MercuryRemoveWatcherFromFocusAreaInput;
|
|
90837
91140
|
};
|
|
91141
|
+
export declare type MercuryMutationApiSetFocusAreaCustomFieldValueArgs = {
|
|
91142
|
+
input: MercurySetFocusAreaCustomFieldInput;
|
|
91143
|
+
};
|
|
90838
91144
|
export declare type MercuryMutationApiSetPreferenceArgs = {
|
|
90839
91145
|
input: MercurySetPreferenceInput;
|
|
90840
91146
|
};
|
|
@@ -90850,6 +91156,9 @@ export declare type MercuryMutationApiUpdateCommentArgs = {
|
|
|
90850
91156
|
export declare type MercuryMutationApiUpdateFocusAreaAboutContentArgs = {
|
|
90851
91157
|
input: MercuryUpdateFocusAreaAboutContentInput;
|
|
90852
91158
|
};
|
|
91159
|
+
export declare type MercuryMutationApiUpdateFocusAreaCustomFieldDefinitionNameArgs = {
|
|
91160
|
+
input: MercuryUpdateCustomFieldDefinitionNameInput;
|
|
91161
|
+
};
|
|
90853
91162
|
export declare type MercuryMutationApiUpdateFocusAreaNameArgs = {
|
|
90854
91163
|
input: MercuryUpdateFocusAreaNameInput;
|
|
90855
91164
|
};
|
|
@@ -90891,6 +91200,29 @@ export declare type MercuryNewPositionSummaryByChangeProposalStatus = {
|
|
|
90891
91200
|
countByStatus?: Maybe<Array<Maybe<MercuryNewPositionCountByStatus>>>;
|
|
90892
91201
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
90893
91202
|
};
|
|
91203
|
+
export declare type MercuryNumberCustomField = MercuryCustomField & {
|
|
91204
|
+
__typename?: 'MercuryNumberCustomField';
|
|
91205
|
+
createdBy?: Maybe<User>;
|
|
91206
|
+
createdDate: Scalars['DateTime']['output'];
|
|
91207
|
+
definition?: Maybe<MercuryNumberCustomFieldDefinition>;
|
|
91208
|
+
numberValue?: Maybe<Scalars['Float']['output']>;
|
|
91209
|
+
updatedBy?: Maybe<User>;
|
|
91210
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
91211
|
+
};
|
|
91212
|
+
export declare type MercuryNumberCustomFieldDefinition = MercuryCustomFieldDefinition & {
|
|
91213
|
+
__typename?: 'MercuryNumberCustomFieldDefinition';
|
|
91214
|
+
createdBy?: Maybe<User>;
|
|
91215
|
+
createdDate: Scalars['DateTime']['output'];
|
|
91216
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
91217
|
+
id: Scalars['ID']['output'];
|
|
91218
|
+
name: Scalars['String']['output'];
|
|
91219
|
+
scope: MercuryCustomFieldDefinitionScope;
|
|
91220
|
+
updatedBy?: Maybe<User>;
|
|
91221
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
91222
|
+
};
|
|
91223
|
+
export declare type MercuryNumberCustomFieldInput = {
|
|
91224
|
+
numberValue?: InputMaybe<Scalars['Float']['input']>;
|
|
91225
|
+
};
|
|
90894
91226
|
export declare type MercuryOnUpdateChangeProposalsPayload = Payload & {
|
|
90895
91227
|
__typename?: 'MercuryOnUpdateChangeProposalsPayload';
|
|
90896
91228
|
changeProposals?: Maybe<Array<MercuryChangeProposalUpdate>>;
|
|
@@ -91244,6 +91576,7 @@ export declare type MercuryQueryApi = {
|
|
|
91244
91576
|
commentsByAris?: Maybe<Array<Maybe<MercuryComment>>>;
|
|
91245
91577
|
focusArea?: Maybe<MercuryFocusArea>;
|
|
91246
91578
|
focusAreaActivityHistory?: Maybe<MercuryFocusAreaActivityConnection>;
|
|
91579
|
+
focusAreaCustomFieldDefinitionsSearch?: Maybe<MercuryCustomFieldDefinitionConnection>;
|
|
91247
91580
|
focusAreaHierarchy?: Maybe<Array<Maybe<MercuryFocusAreaHierarchyNode>>>;
|
|
91248
91581
|
focusAreaStatusTransitions?: Maybe<Array<MercuryFocusAreaStatusTransition>>;
|
|
91249
91582
|
focusAreaStatusUpdatesByAris?: Maybe<Array<MercuryFocusAreaStatusUpdate>>;
|
|
@@ -91297,6 +91630,11 @@ export declare type MercuryQueryApiFocusAreaActivityHistoryArgs = {
|
|
|
91297
91630
|
focusAreaId: Scalars['ID']['input'];
|
|
91298
91631
|
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaActivitySort>>>;
|
|
91299
91632
|
};
|
|
91633
|
+
export declare type MercuryQueryApiFocusAreaCustomFieldDefinitionsSearchArgs = {
|
|
91634
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
91635
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
91636
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
91637
|
+
};
|
|
91300
91638
|
export declare type MercuryQueryApiFocusAreaHierarchyArgs = {
|
|
91301
91639
|
cloudId: Scalars['ID']['input'];
|
|
91302
91640
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -91482,6 +91820,17 @@ export declare type MercuryRestrictedStrategicEventEdge = {
|
|
|
91482
91820
|
cursor: Scalars['String']['output'];
|
|
91483
91821
|
node?: Maybe<MercuryRestrictedStrategicEvent>;
|
|
91484
91822
|
};
|
|
91823
|
+
export declare type MercurySetFocusAreaCustomFieldInput = {
|
|
91824
|
+
coreField?: InputMaybe<MercuryCustomFieldInput>;
|
|
91825
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
91826
|
+
focusAreaId: Scalars['ID']['input'];
|
|
91827
|
+
};
|
|
91828
|
+
export declare type MercurySetFocusAreaCustomFieldPayload = Payload & {
|
|
91829
|
+
__typename?: 'MercurySetFocusAreaCustomFieldPayload';
|
|
91830
|
+
customField?: Maybe<MercuryCustomField>;
|
|
91831
|
+
errors?: Maybe<Array<MutationError>>;
|
|
91832
|
+
success: Scalars['Boolean']['output'];
|
|
91833
|
+
};
|
|
91485
91834
|
export declare type MercurySetPreferenceInput = {
|
|
91486
91835
|
cloudId: Scalars['ID']['input'];
|
|
91487
91836
|
key: Scalars['String']['input'];
|
|
@@ -91493,6 +91842,30 @@ export declare type MercurySetPreferencePayload = Payload & {
|
|
|
91493
91842
|
preference?: Maybe<MercuryPreference>;
|
|
91494
91843
|
success: Scalars['Boolean']['output'];
|
|
91495
91844
|
};
|
|
91845
|
+
export declare type MercurySingleSelectCustomField = MercuryCustomField & {
|
|
91846
|
+
__typename?: 'MercurySingleSelectCustomField';
|
|
91847
|
+
createdBy?: Maybe<User>;
|
|
91848
|
+
createdDate: Scalars['DateTime']['output'];
|
|
91849
|
+
definition?: Maybe<MercurySingleSelectCustomFieldDefinition>;
|
|
91850
|
+
selectedOption?: Maybe<MercuryCustomSelectFieldOption>;
|
|
91851
|
+
updatedBy?: Maybe<User>;
|
|
91852
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
91853
|
+
};
|
|
91854
|
+
export declare type MercurySingleSelectCustomFieldDefinition = MercuryCustomFieldDefinition & {
|
|
91855
|
+
__typename?: 'MercurySingleSelectCustomFieldDefinition';
|
|
91856
|
+
createdBy?: Maybe<User>;
|
|
91857
|
+
createdDate: Scalars['DateTime']['output'];
|
|
91858
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
91859
|
+
id: Scalars['ID']['output'];
|
|
91860
|
+
name: Scalars['String']['output'];
|
|
91861
|
+
options?: Maybe<Array<MercuryCustomSelectFieldOption>>;
|
|
91862
|
+
scope: MercuryCustomFieldDefinitionScope;
|
|
91863
|
+
updatedBy?: Maybe<User>;
|
|
91864
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
91865
|
+
};
|
|
91866
|
+
export declare type MercurySingleSelectCustomFieldInput = {
|
|
91867
|
+
option?: InputMaybe<Scalars['ID']['input']>;
|
|
91868
|
+
};
|
|
91496
91869
|
export declare type MercurySpendAggregation = {
|
|
91497
91870
|
__typename?: 'MercurySpendAggregation';
|
|
91498
91871
|
aggregatedSpend?: Maybe<Scalars['BigDecimal']['output']>;
|
|
@@ -91891,6 +92264,29 @@ export declare enum MercuryTargetDateType {
|
|
|
91891
92264
|
Month = "MONTH",
|
|
91892
92265
|
Quarter = "QUARTER"
|
|
91893
92266
|
}
|
|
92267
|
+
export declare type MercuryTextCustomField = MercuryCustomField & {
|
|
92268
|
+
__typename?: 'MercuryTextCustomField';
|
|
92269
|
+
createdBy?: Maybe<User>;
|
|
92270
|
+
createdDate: Scalars['DateTime']['output'];
|
|
92271
|
+
definition?: Maybe<MercuryTextCustomFieldDefinition>;
|
|
92272
|
+
textValue?: Maybe<Scalars['String']['output']>;
|
|
92273
|
+
updatedBy?: Maybe<User>;
|
|
92274
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
92275
|
+
};
|
|
92276
|
+
export declare type MercuryTextCustomFieldDefinition = MercuryCustomFieldDefinition & {
|
|
92277
|
+
__typename?: 'MercuryTextCustomFieldDefinition';
|
|
92278
|
+
createdBy?: Maybe<User>;
|
|
92279
|
+
createdDate: Scalars['DateTime']['output'];
|
|
92280
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
92281
|
+
id: Scalars['ID']['output'];
|
|
92282
|
+
name: Scalars['String']['output'];
|
|
92283
|
+
scope: MercuryCustomFieldDefinitionScope;
|
|
92284
|
+
updatedBy?: Maybe<User>;
|
|
92285
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
92286
|
+
};
|
|
92287
|
+
export declare type MercuryTextCustomFieldInput = {
|
|
92288
|
+
textValue?: InputMaybe<Scalars['String']['input']>;
|
|
92289
|
+
};
|
|
91894
92290
|
export declare type MercuryTransitionChangeProposalPayload = Payload & {
|
|
91895
92291
|
__typename?: 'MercuryTransitionChangeProposalPayload';
|
|
91896
92292
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -92044,6 +92440,16 @@ export declare type MercuryUpdateCommentPayload = Payload & {
|
|
|
92044
92440
|
success: Scalars['Boolean']['output'];
|
|
92045
92441
|
updatedComment?: Maybe<MercuryComment>;
|
|
92046
92442
|
};
|
|
92443
|
+
export declare type MercuryUpdateCustomFieldDefinitionNameInput = {
|
|
92444
|
+
id: Scalars['ID']['input'];
|
|
92445
|
+
name: Scalars['String']['input'];
|
|
92446
|
+
};
|
|
92447
|
+
export declare type MercuryUpdateCustomFieldDefinitionNamePayload = {
|
|
92448
|
+
__typename?: 'MercuryUpdateCustomFieldDefinitionNamePayload';
|
|
92449
|
+
customFieldDefinition?: Maybe<MercuryCustomFieldDefinition>;
|
|
92450
|
+
errors?: Maybe<Array<MutationError>>;
|
|
92451
|
+
success: Scalars['Boolean']['output'];
|
|
92452
|
+
};
|
|
92047
92453
|
export declare type MercuryUpdateFocusAreaAboutContentInput = {
|
|
92048
92454
|
aboutContent: Scalars['String']['input'];
|
|
92049
92455
|
cloudId: Scalars['ID']['input'];
|
|
@@ -92532,6 +92938,7 @@ export declare type Mutation = {
|
|
|
92532
92938
|
avp_createDashboard?: Maybe<AvpCreateDashboardPayload>;
|
|
92533
92939
|
avp_createDashboardFilter?: Maybe<AvpCreateDashboardFilterPayload>;
|
|
92534
92940
|
avp_createDashboardFromTemplate?: Maybe<AvpCreateDashboardPayload>;
|
|
92941
|
+
avp_createVariable?: Maybe<AvpCreateVariablePayload>;
|
|
92535
92942
|
avp_deleteChart?: Maybe<AvpDeleteChartPayload>;
|
|
92536
92943
|
avp_deleteDashboardFilter?: Maybe<AvpDeleteDashboardFilterPayload>;
|
|
92537
92944
|
avp_moveCanvasElement?: Maybe<AvpMoveCanvasElementPayload>;
|
|
@@ -92812,6 +93219,8 @@ export declare type Mutation = {
|
|
|
92812
93219
|
goals_createAndAddMetricTarget?: Maybe<TownsquareGoalsCreateAddMetricTargetPayload>;
|
|
92813
93220
|
goals_createUpdate?: Maybe<TownsquareGoalsCreateUpdatePayload>;
|
|
92814
93221
|
goals_deleteLatestUpdate?: Maybe<TownsquareGoalsDeleteLatestUpdatePayload>;
|
|
93222
|
+
goals_editMetric?: Maybe<TownsquareGoalsEditMetricPayload>;
|
|
93223
|
+
goals_editMetricTarget?: Maybe<TownsquareGoalsEditMetricTargetPayload>;
|
|
92815
93224
|
goals_editUpdate?: Maybe<TownsquareGoalsEditUpdatePayload>;
|
|
92816
93225
|
goals_removeGoalTeamLink?: Maybe<TownsquareGoalsRemoveGoalTeamLinkPayload>;
|
|
92817
93226
|
goals_setWatchingGoal?: Maybe<TownsquareGoalsSetWatchingGoalPayload>;
|
|
@@ -92853,7 +93262,6 @@ export declare type Mutation = {
|
|
|
92853
93262
|
jira_archiveIssue?: Maybe<JiraIssueArchivePayload>;
|
|
92854
93263
|
jira_archiveIssueAsync?: Maybe<JiraIssueArchiveAsyncPayload>;
|
|
92855
93264
|
jira_associateProjectToFieldScheme?: Maybe<JiraAssociateProjectToFieldSchemePayload>;
|
|
92856
|
-
jira_bulkCreateInlineIssuesOptimistic?: Maybe<JiraInlineIssuesCreatePayload>;
|
|
92857
93265
|
jira_bulkSetBoardViewColumnState?: Maybe<JiraBulkSetBoardViewColumnStatePayload>;
|
|
92858
93266
|
jira_createBoardViewStatusColumn?: Maybe<JiraCreateBoardViewStatusColumnPayload>;
|
|
92859
93267
|
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
@@ -93049,6 +93457,7 @@ export declare type Mutation = {
|
|
|
93049
93457
|
roadmaps?: Maybe<RoadmapsMutation>;
|
|
93050
93458
|
runImport?: Maybe<RunImportPayload>;
|
|
93051
93459
|
setAppEnvironmentVariable?: Maybe<SetAppEnvironmentVariablePayload>;
|
|
93460
|
+
setAppLicenseId?: Maybe<SetAppLicenseIdResponse>;
|
|
93052
93461
|
setBatchedTaskStatus?: Maybe<GraphQlMutationResponse>;
|
|
93053
93462
|
setBoardEstimationType?: Maybe<ToggleBoardFeatureOutput>;
|
|
93054
93463
|
setCardColorStrategy?: Maybe<SetCardColorStrategyOutput>;
|
|
@@ -93076,8 +93485,10 @@ export declare type Mutation = {
|
|
|
93076
93485
|
setSwimlaneStrategy?: Maybe<SetSwimlaneStrategyResponse>;
|
|
93077
93486
|
setTaskStatus?: Maybe<GraphQlMutationResponse>;
|
|
93078
93487
|
setUserSwimlaneStrategy?: Maybe<SetSwimlaneStrategyResponse>;
|
|
93488
|
+
settings_setUserPreferencesGlobal?: Maybe<SettingsUserPreferences>;
|
|
93079
93489
|
settings_updateCreationSettings?: Maybe<SettingsCreationSettings>;
|
|
93080
93490
|
settings_updateNavigationCustomisation?: Maybe<SettingsNavigationCustomisation>;
|
|
93491
|
+
settings_updateUserPreferencesWorkspace?: Maybe<SettingsUserPreferences>;
|
|
93081
93492
|
shardedGraphStore?: Maybe<ShardedGraphStoreMutation>;
|
|
93082
93493
|
shareResource?: Maybe<ShareResourcePayload>;
|
|
93083
93494
|
shepherd?: Maybe<ShepherdMutation>;
|
|
@@ -93547,6 +93958,9 @@ export declare type MutationAvp_CreateDashboardFilterArgs = {
|
|
|
93547
93958
|
export declare type MutationAvp_CreateDashboardFromTemplateArgs = {
|
|
93548
93959
|
input: AvpCreateDashboardFromTemplateInput;
|
|
93549
93960
|
};
|
|
93961
|
+
export declare type MutationAvp_CreateVariableArgs = {
|
|
93962
|
+
input: AvpCreateVariableInput;
|
|
93963
|
+
};
|
|
93550
93964
|
export declare type MutationAvp_DeleteChartArgs = {
|
|
93551
93965
|
input: AvpDeleteChartInput;
|
|
93552
93966
|
};
|
|
@@ -94543,6 +94957,12 @@ export declare type MutationGoals_CreateUpdateArgs = {
|
|
|
94543
94957
|
export declare type MutationGoals_DeleteLatestUpdateArgs = {
|
|
94544
94958
|
input?: InputMaybe<TownsquareGoalsDeleteLatestUpdateInput>;
|
|
94545
94959
|
};
|
|
94960
|
+
export declare type MutationGoals_EditMetricArgs = {
|
|
94961
|
+
input: TownsquareGoalsEditMetricInput;
|
|
94962
|
+
};
|
|
94963
|
+
export declare type MutationGoals_EditMetricTargetArgs = {
|
|
94964
|
+
input: TownsquareGoalsEditMetricTargetInput;
|
|
94965
|
+
};
|
|
94546
94966
|
export declare type MutationGoals_EditUpdateArgs = {
|
|
94547
94967
|
input?: InputMaybe<TownsquareGoalsEditUpdateInput>;
|
|
94548
94968
|
};
|
|
@@ -94655,9 +95075,6 @@ export declare type MutationJira_AssociateProjectToFieldSchemeArgs = {
|
|
|
94655
95075
|
cloudId: Scalars['ID']['input'];
|
|
94656
95076
|
input: JiraAssociateProjectToFieldSchemeInput;
|
|
94657
95077
|
};
|
|
94658
|
-
export declare type MutationJira_BulkCreateInlineIssuesOptimisticArgs = {
|
|
94659
|
-
input: Array<JiraInlineIssueCreateInput>;
|
|
94660
|
-
};
|
|
94661
95078
|
export declare type MutationJira_BulkSetBoardViewColumnStateArgs = {
|
|
94662
95079
|
input: JiraBulkSetBoardViewColumnStateInput;
|
|
94663
95080
|
};
|
|
@@ -95248,6 +95665,9 @@ export declare type MutationRunImportArgs = {
|
|
|
95248
95665
|
export declare type MutationSetAppEnvironmentVariableArgs = {
|
|
95249
95666
|
input: SetAppEnvironmentVariableInput;
|
|
95250
95667
|
};
|
|
95668
|
+
export declare type MutationSetAppLicenseIdArgs = {
|
|
95669
|
+
input: SetAppLicenseIdInput;
|
|
95670
|
+
};
|
|
95251
95671
|
export declare type MutationSetBatchedTaskStatusArgs = {
|
|
95252
95672
|
batchedInlineTasksInput: BatchedInlineTasksInput;
|
|
95253
95673
|
};
|
|
@@ -95341,12 +95761,21 @@ export declare type MutationSetTaskStatusArgs = {
|
|
|
95341
95761
|
export declare type MutationSetUserSwimlaneStrategyArgs = {
|
|
95342
95762
|
input?: InputMaybe<SetSwimlaneStrategyInput>;
|
|
95343
95763
|
};
|
|
95764
|
+
export declare type MutationSettings_SetUserPreferencesGlobalArgs = {
|
|
95765
|
+
accountId: Scalars['ID']['input'];
|
|
95766
|
+
theme: Scalars['String']['input'];
|
|
95767
|
+
};
|
|
95344
95768
|
export declare type MutationSettings_UpdateCreationSettingsArgs = {
|
|
95345
95769
|
input: SettingsCreationSettingsInput;
|
|
95346
95770
|
};
|
|
95347
95771
|
export declare type MutationSettings_UpdateNavigationCustomisationArgs = {
|
|
95348
95772
|
input: SettingsNavigationCustomisationInput;
|
|
95349
95773
|
};
|
|
95774
|
+
export declare type MutationSettings_UpdateUserPreferencesWorkspaceArgs = {
|
|
95775
|
+
accountId: Scalars['ID']['input'];
|
|
95776
|
+
theme: Scalars['String']['input'];
|
|
95777
|
+
workspaceAri: Scalars['ID']['input'];
|
|
95778
|
+
};
|
|
95350
95779
|
export declare type MutationShareResourceArgs = {
|
|
95351
95780
|
shareResourceInput: ShareResourceInput;
|
|
95352
95781
|
};
|
|
@@ -98619,13 +99048,6 @@ export declare enum PushNotificationSettingGroup {
|
|
|
98619
99048
|
}
|
|
98620
99049
|
export declare type Query = {
|
|
98621
99050
|
__typename?: 'Query';
|
|
98622
|
-
TeamworkGraph_userCommented?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
98623
|
-
TeamworkGraph_userCreated?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
98624
|
-
TeamworkGraph_userTaggedIn?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
98625
|
-
TeamworkGraph_userTopRecentMentioners?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
98626
|
-
TeamworkGraph_userTopRecentReferencers?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
98627
|
-
TeamworkGraph_userViewed?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
98628
|
-
TeamworkGraph_userWorkMentioned?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
98629
99051
|
abTestCohorts?: Maybe<Scalars['String']['output']>;
|
|
98630
99052
|
actions?: Maybe<Actions>;
|
|
98631
99053
|
activities?: Maybe<Activities>;
|
|
@@ -98660,13 +99082,13 @@ export declare type Query = {
|
|
|
98660
99082
|
agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
|
|
98661
99083
|
agentStudio_agentByIdentityAccountId?: Maybe<AgentStudioAgentResult>;
|
|
98662
99084
|
agentStudio_batchEvaluationJob?: Maybe<AgentStudioBatchEvaluationJob>;
|
|
98663
|
-
|
|
98664
|
-
agentStudio_batchEvaluationResults:
|
|
99085
|
+
agentStudio_batchEvaluationJobsResult: AgentStudioBatchEvaluationJobsResult;
|
|
99086
|
+
agentStudio_batchEvaluationResults: AgentStudioEvaluationResultsResult;
|
|
98665
99087
|
agentStudio_batchEvaluationSummary?: Maybe<AgentStudioEvaluationSummary>;
|
|
98666
99088
|
agentStudio_conversationReportByAgentId?: Maybe<AgentStudioConversationReportByAgentIdResult>;
|
|
98667
99089
|
agentStudio_dataset?: Maybe<AgentStudioDataset>;
|
|
98668
|
-
agentStudio_datasetItems
|
|
98669
|
-
agentStudio_datasets
|
|
99090
|
+
agentStudio_datasetItems: AgentStudioDatasetItemsResult;
|
|
99091
|
+
agentStudio_datasets: AgentStudioDatasetsResult;
|
|
98670
99092
|
agentStudio_evaluationProject?: Maybe<AgentStudioBatchEvaluationProject>;
|
|
98671
99093
|
agentStudio_getAgentActorRoles?: Maybe<AgentStudioActorRoles>;
|
|
98672
99094
|
agentStudio_getAgents?: Maybe<AgentStudioAgentsConnection>;
|
|
@@ -99152,6 +99574,7 @@ export declare type Query = {
|
|
|
99152
99574
|
jira_projectTypesByIds?: Maybe<Array<Maybe<JiraProjectTypeDetails>>>;
|
|
99153
99575
|
jira_projectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
99154
99576
|
jira_suggestionsByContext?: Maybe<JiraSuggestionsConnection>;
|
|
99577
|
+
jira_userSegRedirectAdvice?: Maybe<JiraUserSegRedirectAdvice>;
|
|
99155
99578
|
jsmChannels_conversationsByContainerAri?: Maybe<JsmChannelsConversationsByContainerAriResult>;
|
|
99156
99579
|
jsmChannels_conversationsByIds?: Maybe<Array<Maybe<JsmChannelsOrchestratorConversation>>>;
|
|
99157
99580
|
jsmChannels_getExperienceConfigurationByProjectId: JsmChannelsExperienceConfigurationResult;
|
|
@@ -99329,6 +99752,9 @@ export declare type Query = {
|
|
|
99329
99752
|
searchesWithZeroCTR?: Maybe<SearchesWithZeroCtr>;
|
|
99330
99753
|
settings_creationSettings?: Maybe<SettingsCreationSettings>;
|
|
99331
99754
|
settings_navigationCustomisation?: Maybe<SettingsNavigationCustomisation>;
|
|
99755
|
+
settings_userPreferencesGlobal?: Maybe<SettingsUserPreferences>;
|
|
99756
|
+
settings_userPreferencesResolved?: Maybe<SettingsUserPreferences>;
|
|
99757
|
+
settings_userPreferencesWorkspace?: Maybe<SettingsUserPreferences>;
|
|
99332
99758
|
shardedGraphStore?: Maybe<ShardedGraphStore>;
|
|
99333
99759
|
shepherd?: Maybe<ShepherdQuery>;
|
|
99334
99760
|
shepherdTeamworkGraph?: Maybe<ShepherdTeamworkGraphQueries>;
|
|
@@ -99410,6 +99836,14 @@ export declare type Query = {
|
|
|
99410
99836
|
team?: Maybe<TeamQuery>;
|
|
99411
99837
|
teamCalendarSettings?: Maybe<TeamCalendarSettings>;
|
|
99412
99838
|
teamLabels?: Maybe<PaginatedLabelList>;
|
|
99839
|
+
teamworkGraph_projectUpdates?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
99840
|
+
teamworkGraph_userCommented?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
99841
|
+
teamworkGraph_userCreated?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
99842
|
+
teamworkGraph_userTaggedIn?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
99843
|
+
teamworkGraph_userTopRecentMentioners?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
99844
|
+
teamworkGraph_userTopRecentReferencers?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
99845
|
+
teamworkGraph_userViewed?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
99846
|
+
teamworkGraph_userWorkMentioned?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
99413
99847
|
template?: Maybe<ContentPlatformTemplate>;
|
|
99414
99848
|
templateBodies?: Maybe<PaginatedTemplateBodyList>;
|
|
99415
99849
|
templateCategories?: Maybe<PaginatedTemplateCategoryList>;
|
|
@@ -99457,34 +99891,6 @@ export declare type Query = {
|
|
|
99457
99891
|
workSuggestions?: Maybe<WorkSuggestions>;
|
|
99458
99892
|
xflow?: Maybe<Scalars['String']['output']>;
|
|
99459
99893
|
};
|
|
99460
|
-
export declare type QueryTeamworkGraph_UserCommentedArgs = {
|
|
99461
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
99462
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99463
|
-
};
|
|
99464
|
-
export declare type QueryTeamworkGraph_UserCreatedArgs = {
|
|
99465
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
99466
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99467
|
-
};
|
|
99468
|
-
export declare type QueryTeamworkGraph_UserTaggedInArgs = {
|
|
99469
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
99470
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99471
|
-
};
|
|
99472
|
-
export declare type QueryTeamworkGraph_UserTopRecentMentionersArgs = {
|
|
99473
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
99474
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99475
|
-
};
|
|
99476
|
-
export declare type QueryTeamworkGraph_UserTopRecentReferencersArgs = {
|
|
99477
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
99478
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99479
|
-
};
|
|
99480
|
-
export declare type QueryTeamworkGraph_UserViewedArgs = {
|
|
99481
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
99482
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99483
|
-
};
|
|
99484
|
-
export declare type QueryTeamworkGraph_UserWorkMentionedArgs = {
|
|
99485
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
99486
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99487
|
-
};
|
|
99488
99894
|
export declare type QueryAdminAnnouncementBannerSettingArgs = {
|
|
99489
99895
|
id: Scalars['String']['input'];
|
|
99490
99896
|
};
|
|
@@ -99631,13 +100037,16 @@ export declare type QueryAgentStudio_BatchEvaluationJobArgs = {
|
|
|
99631
100037
|
productType: AgentStudioProductType;
|
|
99632
100038
|
projectContainerAri: Scalars['ID']['input'];
|
|
99633
100039
|
};
|
|
99634
|
-
export declare type
|
|
99635
|
-
|
|
100040
|
+
export declare type QueryAgentStudio_BatchEvaluationJobsResultArgs = {
|
|
100041
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
100042
|
+
agentId: Scalars['String']['input'];
|
|
99636
100043
|
cloudId: Scalars['String']['input'];
|
|
100044
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99637
100045
|
productType: AgentStudioProductType;
|
|
99638
100046
|
projectContainerAri: Scalars['ID']['input'];
|
|
99639
100047
|
};
|
|
99640
100048
|
export declare type QueryAgentStudio_BatchEvaluationResultsArgs = {
|
|
100049
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99641
100050
|
cloudId: Scalars['String']['input'];
|
|
99642
100051
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99643
100052
|
productType: AgentStudioProductType;
|
|
@@ -99664,13 +100073,17 @@ export declare type QueryAgentStudio_DatasetArgs = {
|
|
|
99664
100073
|
projectContainerAri: Scalars['ID']['input'];
|
|
99665
100074
|
};
|
|
99666
100075
|
export declare type QueryAgentStudio_DatasetItemsArgs = {
|
|
100076
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99667
100077
|
cloudId: Scalars['String']['input'];
|
|
99668
100078
|
datasetId: Scalars['ID']['input'];
|
|
100079
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99669
100080
|
productType: AgentStudioProductType;
|
|
99670
100081
|
projectContainerAri: Scalars['ID']['input'];
|
|
99671
100082
|
};
|
|
99672
100083
|
export declare type QueryAgentStudio_DatasetsArgs = {
|
|
100084
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99673
100085
|
cloudId: Scalars['String']['input'];
|
|
100086
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99674
100087
|
productType: AgentStudioProductType;
|
|
99675
100088
|
projectContainerAri: Scalars['ID']['input'];
|
|
99676
100089
|
projectId: Scalars['ID']['input'];
|
|
@@ -101802,6 +102215,10 @@ export declare type QueryJira_ProjectsSidebarMenuArgs = {
|
|
|
101802
102215
|
export declare type QueryJira_SuggestionsByContextArgs = {
|
|
101803
102216
|
input: JiraSuggestionsByContextInput;
|
|
101804
102217
|
};
|
|
102218
|
+
export declare type QueryJira_UserSegRedirectAdviceArgs = {
|
|
102219
|
+
accountId: Scalars['ID']['input'];
|
|
102220
|
+
cloudId: Scalars['ID']['input'];
|
|
102221
|
+
};
|
|
101805
102222
|
export declare type QueryJsmChannels_ConversationsByContainerAriArgs = {
|
|
101806
102223
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
101807
102224
|
containerAri: Scalars['ID']['input'];
|
|
@@ -102440,6 +102857,17 @@ export declare type QuerySettings_NavigationCustomisationArgs = {
|
|
|
102440
102857
|
entityAri?: InputMaybe<Scalars['ID']['input']>;
|
|
102441
102858
|
ownerAri?: InputMaybe<Scalars['ID']['input']>;
|
|
102442
102859
|
};
|
|
102860
|
+
export declare type QuerySettings_UserPreferencesGlobalArgs = {
|
|
102861
|
+
accountId: Scalars['ID']['input'];
|
|
102862
|
+
};
|
|
102863
|
+
export declare type QuerySettings_UserPreferencesResolvedArgs = {
|
|
102864
|
+
accountId: Scalars['ID']['input'];
|
|
102865
|
+
workspaceAri: Scalars['ID']['input'];
|
|
102866
|
+
};
|
|
102867
|
+
export declare type QuerySettings_UserPreferencesWorkspaceArgs = {
|
|
102868
|
+
accountId: Scalars['ID']['input'];
|
|
102869
|
+
workspaceAri: Scalars['ID']['input'];
|
|
102870
|
+
};
|
|
102443
102871
|
export declare type QuerySingleContentArgs = {
|
|
102444
102872
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
102445
102873
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -102724,6 +103152,41 @@ export declare type QueryTeamLabelsArgs = {
|
|
|
102724
103152
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
102725
103153
|
start?: InputMaybe<Scalars['Int']['input']>;
|
|
102726
103154
|
};
|
|
103155
|
+
export declare type QueryTeamworkGraph_ProjectUpdatesArgs = {
|
|
103156
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
103157
|
+
endDate: Scalars['DateTime']['input'];
|
|
103158
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
103159
|
+
projectId: Scalars['String']['input'];
|
|
103160
|
+
startDate: Scalars['DateTime']['input'];
|
|
103161
|
+
};
|
|
103162
|
+
export declare type QueryTeamworkGraph_UserCommentedArgs = {
|
|
103163
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
103164
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
103165
|
+
};
|
|
103166
|
+
export declare type QueryTeamworkGraph_UserCreatedArgs = {
|
|
103167
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
103168
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
103169
|
+
};
|
|
103170
|
+
export declare type QueryTeamworkGraph_UserTaggedInArgs = {
|
|
103171
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
103172
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
103173
|
+
};
|
|
103174
|
+
export declare type QueryTeamworkGraph_UserTopRecentMentionersArgs = {
|
|
103175
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
103176
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
103177
|
+
};
|
|
103178
|
+
export declare type QueryTeamworkGraph_UserTopRecentReferencersArgs = {
|
|
103179
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
103180
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
103181
|
+
};
|
|
103182
|
+
export declare type QueryTeamworkGraph_UserViewedArgs = {
|
|
103183
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
103184
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
103185
|
+
};
|
|
103186
|
+
export declare type QueryTeamworkGraph_UserWorkMentionedArgs = {
|
|
103187
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
103188
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
103189
|
+
};
|
|
102727
103190
|
export declare type QueryTemplateArgs = {
|
|
102728
103191
|
id: Scalars['String']['input'];
|
|
102729
103192
|
locale?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -103018,6 +103481,7 @@ export declare type RadarConnector = {
|
|
|
103018
103481
|
};
|
|
103019
103482
|
export declare enum RadarConnectorType {
|
|
103020
103483
|
Csv = "CSV",
|
|
103484
|
+
HrisS3 = "HRIS_S3",
|
|
103021
103485
|
Workday = "WORKDAY"
|
|
103022
103486
|
}
|
|
103023
103487
|
export declare type RadarConnectorsInput = {
|
|
@@ -103374,6 +103838,7 @@ export declare type RadarPositionLaborCostEstimateSettings = {
|
|
|
103374
103838
|
__typename?: 'RadarPositionLaborCostEstimateSettings';
|
|
103375
103839
|
defaultAmount?: Maybe<RadarMoney>;
|
|
103376
103840
|
fieldIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
103841
|
+
id: Scalars['ID']['output'];
|
|
103377
103842
|
isEnabled: Scalars['Boolean']['output'];
|
|
103378
103843
|
lastImportedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
103379
103844
|
};
|
|
@@ -106349,6 +106814,17 @@ export declare type SetAppEnvironmentVariablePayload = Payload & {
|
|
|
106349
106814
|
errors?: Maybe<Array<MutationError>>;
|
|
106350
106815
|
success: Scalars['Boolean']['output'];
|
|
106351
106816
|
};
|
|
106817
|
+
export declare type SetAppLicenseIdInput = {
|
|
106818
|
+
appHostKey: Scalars['String']['input'];
|
|
106819
|
+
appId: Scalars['ID']['input'];
|
|
106820
|
+
environmentKey: Scalars['String']['input'];
|
|
106821
|
+
licenseId: Scalars['ID']['input'];
|
|
106822
|
+
};
|
|
106823
|
+
export declare type SetAppLicenseIdResponse = Payload & {
|
|
106824
|
+
__typename?: 'SetAppLicenseIdResponse';
|
|
106825
|
+
errors?: Maybe<Array<MutationError>>;
|
|
106826
|
+
success: Scalars['Boolean']['output'];
|
|
106827
|
+
};
|
|
106352
106828
|
export declare type SetAppStoredCustomEntityMutationInput = {
|
|
106353
106829
|
contextAri?: InputMaybe<Scalars['ID']['input']>;
|
|
106354
106830
|
entityName: Scalars['String']['input'];
|
|
@@ -106639,6 +107115,10 @@ export declare type SettingsNavigationCustomisationInput = {
|
|
|
106639
107115
|
properties?: InputMaybe<Array<InputMaybe<SettingsDisplayPropertyInput>>>;
|
|
106640
107116
|
sidebar?: InputMaybe<Array<InputMaybe<SettingsMenuItemInput>>>;
|
|
106641
107117
|
};
|
|
107118
|
+
export declare type SettingsUserPreferences = {
|
|
107119
|
+
__typename?: 'SettingsUserPreferences';
|
|
107120
|
+
theme?: Maybe<Scalars['String']['output']>;
|
|
107121
|
+
};
|
|
106642
107122
|
export declare type ShardedGraphStore = {
|
|
106643
107123
|
__typename?: 'ShardedGraphStore';
|
|
106644
107124
|
askHasImpactedWork?: Maybe<ShardedGraphStoreSimplifiedAskHasImpactedWorkConnection>;
|
|
@@ -126164,7 +126644,10 @@ export declare type SpaceRoleEdge = {
|
|
|
126164
126644
|
export declare type SpaceRoleGroupPrincipal = SpaceRolePrincipal & {
|
|
126165
126645
|
__typename?: 'SpaceRoleGroupPrincipal';
|
|
126166
126646
|
displayName: Scalars['String']['output'];
|
|
126647
|
+
managedBy?: Maybe<ConfluenceGroupManagementType>;
|
|
126167
126648
|
principalId: Scalars['ID']['output'];
|
|
126649
|
+
resourceAri?: Maybe<Scalars['ID']['output']>;
|
|
126650
|
+
team?: Maybe<TeamV2>;
|
|
126168
126651
|
usageType?: Maybe<ConfluenceGroupUsageType>;
|
|
126169
126652
|
};
|
|
126170
126653
|
export declare type SpaceRoleGuestPrincipal = SpaceRolePrincipal & {
|
|
@@ -130009,6 +130492,32 @@ export declare type TownsquareGoalsDeleteLatestUpdatePayload = {
|
|
|
130009
130492
|
success: Scalars['Boolean']['output'];
|
|
130010
130493
|
updateId?: Maybe<Scalars['ID']['output']>;
|
|
130011
130494
|
};
|
|
130495
|
+
export declare type TownsquareGoalsEditMetricInput = {
|
|
130496
|
+
externalEntityId?: InputMaybe<Scalars['String']['input']>;
|
|
130497
|
+
metricId: Scalars['ID']['input'];
|
|
130498
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
130499
|
+
source?: InputMaybe<Scalars['String']['input']>;
|
|
130500
|
+
subType?: InputMaybe<Scalars['String']['input']>;
|
|
130501
|
+
value?: InputMaybe<Scalars['Float']['input']>;
|
|
130502
|
+
};
|
|
130503
|
+
export declare type TownsquareGoalsEditMetricPayload = {
|
|
130504
|
+
__typename?: 'TownsquareGoalsEditMetricPayload';
|
|
130505
|
+
errors?: Maybe<Array<MutationError>>;
|
|
130506
|
+
metric?: Maybe<TownsquareMetric>;
|
|
130507
|
+
success: Scalars['Boolean']['output'];
|
|
130508
|
+
};
|
|
130509
|
+
export declare type TownsquareGoalsEditMetricTargetInput = {
|
|
130510
|
+
currentValue?: InputMaybe<Scalars['Float']['input']>;
|
|
130511
|
+
metricTargetId: Scalars['ID']['input'];
|
|
130512
|
+
startValue?: InputMaybe<Scalars['Float']['input']>;
|
|
130513
|
+
targetValue?: InputMaybe<Scalars['Float']['input']>;
|
|
130514
|
+
};
|
|
130515
|
+
export declare type TownsquareGoalsEditMetricTargetPayload = {
|
|
130516
|
+
__typename?: 'TownsquareGoalsEditMetricTargetPayload';
|
|
130517
|
+
errors?: Maybe<Array<MutationError>>;
|
|
130518
|
+
goal?: Maybe<TownsquareGoal>;
|
|
130519
|
+
success: Scalars['Boolean']['output'];
|
|
130520
|
+
};
|
|
130012
130521
|
export declare type TownsquareGoalsEditUpdateInput = {
|
|
130013
130522
|
goalUpdateId: Scalars['ID']['input'];
|
|
130014
130523
|
score?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -133926,6 +134435,7 @@ export declare type TrelloPlannerCalendarEvent = Node & {
|
|
|
133926
134435
|
id: Scalars['ID']['output'];
|
|
133927
134436
|
link?: Maybe<Scalars['String']['output']>;
|
|
133928
134437
|
parentEventId?: Maybe<Scalars['ID']['output']>;
|
|
134438
|
+
plannerCalendarId?: Maybe<Scalars['ID']['output']>;
|
|
133929
134439
|
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
133930
134440
|
startAt?: Maybe<Scalars['DateTime']['output']>;
|
|
133931
134441
|
status?: Maybe<TrelloPlannerCalendarEventStatus>;
|
|
@@ -133997,6 +134507,7 @@ export declare type TrelloPlannerCalendarEventConnectionUpdated = {
|
|
|
133997
134507
|
export declare type TrelloPlannerCalendarEventDeleted = {
|
|
133998
134508
|
__typename?: 'TrelloPlannerCalendarEventDeleted';
|
|
133999
134509
|
id: Scalars['ID']['output'];
|
|
134510
|
+
plannerCalendarId?: Maybe<Scalars['ID']['output']>;
|
|
134000
134511
|
};
|
|
134001
134512
|
export declare type TrelloPlannerCalendarEventEdge = {
|
|
134002
134513
|
__typename?: 'TrelloPlannerCalendarEventEdge';
|
|
@@ -134034,6 +134545,7 @@ export declare type TrelloPlannerCalendarEventUpdated = {
|
|
|
134034
134545
|
link?: Maybe<Scalars['String']['output']>;
|
|
134035
134546
|
onPlannerCalendarEventCardDeleted?: Maybe<Array<TrelloPlannerCalendarEventCardDeleted>>;
|
|
134036
134547
|
parentEventId?: Maybe<Scalars['ID']['output']>;
|
|
134548
|
+
plannerCalendarId?: Maybe<Scalars['ID']['output']>;
|
|
134037
134549
|
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
134038
134550
|
startAt?: Maybe<Scalars['DateTime']['output']>;
|
|
134039
134551
|
status?: Maybe<TrelloPlannerCalendarEventStatus>;
|