@forge/cli-shared 8.7.0-next.3-experimental-3ed5db1 → 8.7.0-next.4-experimental-4baeb60
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 +23 -2
- package/out/graphql/graphql-types.d.ts +647 -5
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +97 -29
- package/out/tunnel/tunnel-options.d.ts +3 -0
- package/out/tunnel/tunnel-options.d.ts.map +1 -1
- package/out/tunnel/tunnel-options.js +12 -1
- package/out/ui/text.d.ts +2 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +3 -1
- package/package.json +2 -2
|
@@ -1755,7 +1755,7 @@ export declare type AdminInvitePolicyNotificationSettingsInput = {
|
|
|
1755
1755
|
};
|
|
1756
1756
|
export declare type AdminInviteResponsePayload = {
|
|
1757
1757
|
__typename?: 'AdminInviteResponsePayload';
|
|
1758
|
-
errors?: Maybe<Array<
|
|
1758
|
+
errors?: Maybe<Array<MutationError>>;
|
|
1759
1759
|
inviteResults?: Maybe<Array<AdminInviteResult>>;
|
|
1760
1760
|
success: Scalars['Boolean']['output'];
|
|
1761
1761
|
};
|
|
@@ -2385,6 +2385,46 @@ export declare type AgentStudioAssistantScenario = AgentStudioScenario & Node &
|
|
|
2385
2385
|
export declare type AgentStudioAuthoringTeamInput = {
|
|
2386
2386
|
authoringTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
2387
2387
|
};
|
|
2388
|
+
export declare type AgentStudioBatchEvalRunJobPayload = Payload & {
|
|
2389
|
+
__typename?: 'AgentStudioBatchEvalRunJobPayload';
|
|
2390
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2391
|
+
jobRun?: Maybe<AgentStudioBatchEvaluationJobRun>;
|
|
2392
|
+
success: Scalars['Boolean']['output'];
|
|
2393
|
+
};
|
|
2394
|
+
export declare type AgentStudioBatchEvalUploadDatasetPayload = Payload & {
|
|
2395
|
+
__typename?: 'AgentStudioBatchEvalUploadDatasetPayload';
|
|
2396
|
+
datasetItems?: Maybe<Array<AgentStudioDatasetItem>>;
|
|
2397
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2398
|
+
success: Scalars['Boolean']['output'];
|
|
2399
|
+
};
|
|
2400
|
+
export declare type AgentStudioBatchEvaluationJob = {
|
|
2401
|
+
__typename?: 'AgentStudioBatchEvaluationJob';
|
|
2402
|
+
agentId: Scalars['String']['output'];
|
|
2403
|
+
agentVersionId: Scalars['String']['output'];
|
|
2404
|
+
createdAt: Scalars['String']['output'];
|
|
2405
|
+
createdBy: Scalars['String']['output'];
|
|
2406
|
+
datasetId: Scalars['String']['output'];
|
|
2407
|
+
id: Scalars['ID']['output'];
|
|
2408
|
+
judgeConfigId: Scalars['String']['output'];
|
|
2409
|
+
name: Scalars['String']['output'];
|
|
2410
|
+
productType: AgentStudioProductType;
|
|
2411
|
+
projectId: Scalars['String']['output'];
|
|
2412
|
+
};
|
|
2413
|
+
export declare type AgentStudioBatchEvaluationJobRun = {
|
|
2414
|
+
__typename?: 'AgentStudioBatchEvaluationJobRun';
|
|
2415
|
+
completedAt?: Maybe<Scalars['String']['output']>;
|
|
2416
|
+
completedItems: Scalars['Int']['output'];
|
|
2417
|
+
id: Scalars['ID']['output'];
|
|
2418
|
+
jobId: Scalars['ID']['output'];
|
|
2419
|
+
startedAt: Scalars['String']['output'];
|
|
2420
|
+
status: AgentStudioJobRunStatus;
|
|
2421
|
+
totalItems: Scalars['Int']['output'];
|
|
2422
|
+
};
|
|
2423
|
+
export declare type AgentStudioBatchEvaluationProject = {
|
|
2424
|
+
__typename?: 'AgentStudioBatchEvaluationProject';
|
|
2425
|
+
id: Scalars['String']['output'];
|
|
2426
|
+
projectContainerAri: Scalars['String']['output'];
|
|
2427
|
+
};
|
|
2388
2428
|
export declare type AgentStudioChannel = {
|
|
2389
2429
|
connected?: Maybe<Scalars['Boolean']['output']>;
|
|
2390
2430
|
};
|
|
@@ -2453,6 +2493,20 @@ export declare enum AgentStudioCreateAgentPermissionMode {
|
|
|
2453
2493
|
NoOne = "NO_ONE",
|
|
2454
2494
|
Selected = "SELECTED"
|
|
2455
2495
|
}
|
|
2496
|
+
export declare type AgentStudioCreateBatchEvaluationJobInput = {
|
|
2497
|
+
agentId: Scalars['String']['input'];
|
|
2498
|
+
agentVersionId: Scalars['String']['input'];
|
|
2499
|
+
datasetId: Scalars['String']['input'];
|
|
2500
|
+
judgeConfigId: Scalars['String']['input'];
|
|
2501
|
+
name: Scalars['String']['input'];
|
|
2502
|
+
projectId: Scalars['String']['input'];
|
|
2503
|
+
};
|
|
2504
|
+
export declare type AgentStudioCreateBatchEvaluationJobPayload = Payload & {
|
|
2505
|
+
__typename?: 'AgentStudioCreateBatchEvaluationJobPayload';
|
|
2506
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2507
|
+
job?: Maybe<AgentStudioBatchEvaluationJob>;
|
|
2508
|
+
success: Scalars['Boolean']['output'];
|
|
2509
|
+
};
|
|
2456
2510
|
export declare type AgentStudioCreateScenarioInput = {
|
|
2457
2511
|
actions?: InputMaybe<Array<AgentStudioActionInput>>;
|
|
2458
2512
|
containerId: Scalars['ID']['input'];
|
|
@@ -2470,12 +2524,38 @@ export declare type AgentStudioCreateScenarioPayload = Payload & {
|
|
|
2470
2524
|
scenario?: Maybe<AgentStudioScenario>;
|
|
2471
2525
|
success: Scalars['Boolean']['output'];
|
|
2472
2526
|
};
|
|
2527
|
+
export declare type AgentStudioDataset = {
|
|
2528
|
+
__typename?: 'AgentStudioDataset';
|
|
2529
|
+
createdAt: Scalars['String']['output'];
|
|
2530
|
+
id: Scalars['ID']['output'];
|
|
2531
|
+
name: Scalars['String']['output'];
|
|
2532
|
+
projectId: Scalars['String']['output'];
|
|
2533
|
+
};
|
|
2534
|
+
export declare type AgentStudioDatasetItem = {
|
|
2535
|
+
__typename?: 'AgentStudioDatasetItem';
|
|
2536
|
+
createdAt: Scalars['String']['output'];
|
|
2537
|
+
datasetId: Scalars['String']['output'];
|
|
2538
|
+
id: Scalars['ID']['output'];
|
|
2539
|
+
inputQuestion: Scalars['String']['output'];
|
|
2540
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
2541
|
+
};
|
|
2542
|
+
export declare enum AgentStudioDatasetResolution {
|
|
2543
|
+
Failed = "FAILED",
|
|
2544
|
+
Mixed = "MIXED",
|
|
2545
|
+
Resolved = "RESOLVED",
|
|
2546
|
+
Unresolved = "UNRESOLVED"
|
|
2547
|
+
}
|
|
2473
2548
|
export declare type AgentStudioDeleteAgentPayload = Payload & {
|
|
2474
2549
|
__typename?: 'AgentStudioDeleteAgentPayload';
|
|
2475
2550
|
agent?: Maybe<AgentStudioAgent>;
|
|
2476
2551
|
errors?: Maybe<Array<MutationError>>;
|
|
2477
2552
|
success: Scalars['Boolean']['output'];
|
|
2478
2553
|
};
|
|
2554
|
+
export declare type AgentStudioDeleteDatasetItemPayload = Payload & {
|
|
2555
|
+
__typename?: 'AgentStudioDeleteDatasetItemPayload';
|
|
2556
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2557
|
+
success: Scalars['Boolean']['output'];
|
|
2558
|
+
};
|
|
2479
2559
|
export declare type AgentStudioDeleteScenarioPayload = Payload & {
|
|
2480
2560
|
__typename?: 'AgentStudioDeleteScenarioPayload';
|
|
2481
2561
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -2487,6 +2567,39 @@ export declare type AgentStudioEmailChannel = AgentStudioChannel & {
|
|
|
2487
2567
|
connected?: Maybe<Scalars['Boolean']['output']>;
|
|
2488
2568
|
incomingEmails?: Maybe<Array<AgentStudioIncomingEmail>>;
|
|
2489
2569
|
};
|
|
2570
|
+
export declare type AgentStudioEvaluationResult = {
|
|
2571
|
+
__typename?: 'AgentStudioEvaluationResult';
|
|
2572
|
+
actualAnswer?: Maybe<Scalars['String']['output']>;
|
|
2573
|
+
agentId: Scalars['String']['output'];
|
|
2574
|
+
agentVersionId: Scalars['String']['output'];
|
|
2575
|
+
createdAt: Scalars['String']['output'];
|
|
2576
|
+
datasetItemId: Scalars['String']['output'];
|
|
2577
|
+
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
2578
|
+
evaluationDetailsJson?: Maybe<Scalars['String']['output']>;
|
|
2579
|
+
id: Scalars['ID']['output'];
|
|
2580
|
+
jobId: Scalars['ID']['output'];
|
|
2581
|
+
judgeDecision?: Maybe<AgentStudioJudgementDecision>;
|
|
2582
|
+
judgeErrorMessage?: Maybe<Scalars['String']['output']>;
|
|
2583
|
+
judgeEvaluatedAt?: Maybe<Scalars['String']['output']>;
|
|
2584
|
+
judgeReasoning?: Maybe<Scalars['String']['output']>;
|
|
2585
|
+
responseTimeMs?: Maybe<Scalars['Int']['output']>;
|
|
2586
|
+
runId: Scalars['ID']['output'];
|
|
2587
|
+
success: Scalars['Boolean']['output'];
|
|
2588
|
+
};
|
|
2589
|
+
export declare type AgentStudioEvaluationSummary = {
|
|
2590
|
+
__typename?: 'AgentStudioEvaluationSummary';
|
|
2591
|
+
avgResponseTimeMs?: Maybe<Scalars['Int']['output']>;
|
|
2592
|
+
completedItems: Scalars['Int']['output'];
|
|
2593
|
+
createdAt: Scalars['String']['output'];
|
|
2594
|
+
failureCount: Scalars['Int']['output'];
|
|
2595
|
+
jobId: Scalars['ID']['output'];
|
|
2596
|
+
judgeFailureCount?: Maybe<Scalars['Int']['output']>;
|
|
2597
|
+
judgeResolution?: Maybe<AgentStudioDatasetResolution>;
|
|
2598
|
+
judgeSuccessCount?: Maybe<Scalars['Int']['output']>;
|
|
2599
|
+
runId: Scalars['ID']['output'];
|
|
2600
|
+
successCount: Scalars['Int']['output'];
|
|
2601
|
+
totalItems: Scalars['Int']['output'];
|
|
2602
|
+
};
|
|
2490
2603
|
export declare type AgentStudioHelpCenter = {
|
|
2491
2604
|
__typename?: 'AgentStudioHelpCenter';
|
|
2492
2605
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -2512,6 +2625,13 @@ export declare type AgentStudioJiraKnowledgeFilter = {
|
|
|
2512
2625
|
export declare type AgentStudioJiraKnowledgeFilterInput = {
|
|
2513
2626
|
projectFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2514
2627
|
};
|
|
2628
|
+
export declare enum AgentStudioJobRunStatus {
|
|
2629
|
+
Cancelled = "CANCELLED",
|
|
2630
|
+
Completed = "COMPLETED",
|
|
2631
|
+
Failed = "FAILED",
|
|
2632
|
+
Pending = "PENDING",
|
|
2633
|
+
Running = "RUNNING"
|
|
2634
|
+
}
|
|
2515
2635
|
export declare type AgentStudioJsmKnowledgeFilter = {
|
|
2516
2636
|
__typename?: 'AgentStudioJsmKnowledgeFilter';
|
|
2517
2637
|
jsmProjectFilter?: Maybe<Array<Scalars['ID']['output']>>;
|
|
@@ -2519,6 +2639,10 @@ export declare type AgentStudioJsmKnowledgeFilter = {
|
|
|
2519
2639
|
export declare type AgentStudioJsmKnowledgeFilterInput = {
|
|
2520
2640
|
jsmProjectFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2521
2641
|
};
|
|
2642
|
+
export declare enum AgentStudioJudgementDecision {
|
|
2643
|
+
Successful = "SUCCESSFUL",
|
|
2644
|
+
Unsuccessful = "UNSUCCESSFUL"
|
|
2645
|
+
}
|
|
2522
2646
|
export declare type AgentStudioKnowledgeConfiguration = {
|
|
2523
2647
|
__typename?: 'AgentStudioKnowledgeConfiguration';
|
|
2524
2648
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -2552,6 +2676,11 @@ export declare type AgentStudioPortalChannel = AgentStudioChannel & {
|
|
|
2552
2676
|
connected?: Maybe<Scalars['Boolean']['output']>;
|
|
2553
2677
|
url?: Maybe<Scalars['String']['output']>;
|
|
2554
2678
|
};
|
|
2679
|
+
export declare enum AgentStudioProductType {
|
|
2680
|
+
Csm = "CSM",
|
|
2681
|
+
RovoAgents = "ROVO_AGENTS",
|
|
2682
|
+
RovoServiceAgents = "ROVO_SERVICE_AGENTS"
|
|
2683
|
+
}
|
|
2555
2684
|
export declare type AgentStudioRemoveGroupsFromCreatePermissionPayload = Payload & {
|
|
2556
2685
|
__typename?: 'AgentStudioRemoveGroupsFromCreatePermissionPayload';
|
|
2557
2686
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -2832,6 +2961,11 @@ export declare type AgentStudioUpdateScenarioPayload = Payload & {
|
|
|
2832
2961
|
scenarioList?: Maybe<Array<Maybe<AgentStudioScenario>>>;
|
|
2833
2962
|
success: Scalars['Boolean']['output'];
|
|
2834
2963
|
};
|
|
2964
|
+
export declare type AgentStudioUploadBatchEvaluationDatasetInput = {
|
|
2965
|
+
datasetName: Scalars['String']['input'];
|
|
2966
|
+
file: Scalars['Upload']['input'];
|
|
2967
|
+
projectId: Scalars['String']['input'];
|
|
2968
|
+
};
|
|
2835
2969
|
export declare type AgentStudioWidget = {
|
|
2836
2970
|
__typename?: 'AgentStudioWidget';
|
|
2837
2971
|
agent?: Maybe<AgentStudioAgentResult>;
|
|
@@ -16756,9 +16890,9 @@ export declare type ConfluenceNbmRetryScanLongTaskInput = {
|
|
|
16756
16890
|
export declare type ConfluenceNbmRetryScanLongTaskPayload = {
|
|
16757
16891
|
__typename?: 'ConfluenceNbmRetryScanLongTaskPayload';
|
|
16758
16892
|
errors?: Maybe<Array<MutationError>>;
|
|
16759
|
-
scanId: Scalars['
|
|
16893
|
+
scanId: Scalars['ID']['output'];
|
|
16760
16894
|
success: Scalars['Boolean']['output'];
|
|
16761
|
-
taskId
|
|
16895
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
16762
16896
|
};
|
|
16763
16897
|
export declare type ConfluenceNbmScanCategory = {
|
|
16764
16898
|
__typename?: 'ConfluenceNbmScanCategory';
|
|
@@ -16815,9 +16949,9 @@ export declare type ConfluenceNbmStartScanLongTaskInput = {
|
|
|
16815
16949
|
export declare type ConfluenceNbmStartScanLongTaskPayload = Payload & {
|
|
16816
16950
|
__typename?: 'ConfluenceNbmStartScanLongTaskPayload';
|
|
16817
16951
|
errors?: Maybe<Array<MutationError>>;
|
|
16818
|
-
scanId
|
|
16952
|
+
scanId?: Maybe<Scalars['ID']['output']>;
|
|
16819
16953
|
success: Scalars['Boolean']['output'];
|
|
16820
|
-
taskId
|
|
16954
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
16821
16955
|
};
|
|
16822
16956
|
export declare enum ConfluenceNbmVerificationAiState {
|
|
16823
16957
|
Broken = "BROKEN",
|
|
@@ -20900,6 +21034,110 @@ export declare type ConvertPageToLiveEditValidationResult = {
|
|
|
20900
21034
|
isValid: Scalars['Boolean']['output'];
|
|
20901
21035
|
message?: Maybe<Scalars['String']['output']>;
|
|
20902
21036
|
};
|
|
21037
|
+
export declare type ConvoAiAgentAction = {
|
|
21038
|
+
__typename?: 'ConvoAiAgentAction';
|
|
21039
|
+
actionId?: Maybe<Scalars['String']['output']>;
|
|
21040
|
+
data: Scalars['JSON']['output'];
|
|
21041
|
+
invocationId: Scalars['String']['output'];
|
|
21042
|
+
key: Scalars['String']['output'];
|
|
21043
|
+
status: Scalars['String']['output'];
|
|
21044
|
+
};
|
|
21045
|
+
export declare type ConvoAiAgentConversationChannelDataMessage = ConvoAiAgentMessage & {
|
|
21046
|
+
__typename?: 'ConvoAiAgentConversationChannelDataMessage';
|
|
21047
|
+
actions?: Maybe<Array<Maybe<ConvoAiAgentAction>>>;
|
|
21048
|
+
contentSummary: Scalars['String']['output'];
|
|
21049
|
+
messageMetadata?: Maybe<Scalars['JSON']['output']>;
|
|
21050
|
+
status: ConvoAiAgentSessionStatus;
|
|
21051
|
+
timeCreated: Scalars['DateTime']['output'];
|
|
21052
|
+
};
|
|
21053
|
+
export declare type ConvoAiAgentEarlyStopMessage = ConvoAiAgentMessage & {
|
|
21054
|
+
__typename?: 'ConvoAiAgentEarlyStopMessage';
|
|
21055
|
+
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
21056
|
+
status: ConvoAiAgentSessionStatus;
|
|
21057
|
+
timeCreated: Scalars['DateTime']['output'];
|
|
21058
|
+
};
|
|
21059
|
+
export declare type ConvoAiAgentErrorMessage = ConvoAiAgentMessage & {
|
|
21060
|
+
__typename?: 'ConvoAiAgentErrorMessage';
|
|
21061
|
+
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
21062
|
+
status: ConvoAiAgentSessionStatus;
|
|
21063
|
+
timeCreated: Scalars['DateTime']['output'];
|
|
21064
|
+
};
|
|
21065
|
+
export declare type ConvoAiAgentFinalResponseMessage = ConvoAiAgentMessage & {
|
|
21066
|
+
__typename?: 'ConvoAiAgentFinalResponseMessage';
|
|
21067
|
+
actions?: Maybe<Array<Maybe<ConvoAiAgentAction>>>;
|
|
21068
|
+
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
21069
|
+
status: ConvoAiAgentSessionStatus;
|
|
21070
|
+
timeCreated: Scalars['DateTime']['output'];
|
|
21071
|
+
};
|
|
21072
|
+
export declare type ConvoAiAgentMessage = {
|
|
21073
|
+
status: ConvoAiAgentSessionStatus;
|
|
21074
|
+
timeCreated: Scalars['DateTime']['output'];
|
|
21075
|
+
};
|
|
21076
|
+
export declare enum ConvoAiAgentSessionStatus {
|
|
21077
|
+
Completed = "COMPLETED",
|
|
21078
|
+
InputRequired = "INPUT_REQUIRED",
|
|
21079
|
+
Unknown = "UNKNOWN",
|
|
21080
|
+
Working = "WORKING"
|
|
21081
|
+
}
|
|
21082
|
+
export declare type ConvoAiAgentSessionUpdate = ConvoAiAgentConversationChannelDataMessage | ConvoAiAgentEarlyStopMessage | ConvoAiAgentErrorMessage | ConvoAiAgentFinalResponseMessage | ConvoAiAgentTraceMessage | ConvoAiEmptyConversation;
|
|
21083
|
+
export declare type ConvoAiAgentTraceMessage = ConvoAiAgentMessage & {
|
|
21084
|
+
__typename?: 'ConvoAiAgentTraceMessage';
|
|
21085
|
+
contentSummary: Scalars['String']['output'];
|
|
21086
|
+
messageTemplate: Scalars['String']['output'];
|
|
21087
|
+
status: ConvoAiAgentSessionStatus;
|
|
21088
|
+
timeCreated: Scalars['DateTime']['output'];
|
|
21089
|
+
};
|
|
21090
|
+
export declare type ConvoAiEmptyConversation = ConvoAiAgentMessage & {
|
|
21091
|
+
__typename?: 'ConvoAiEmptyConversation';
|
|
21092
|
+
status: ConvoAiAgentSessionStatus;
|
|
21093
|
+
timeCreated: Scalars['DateTime']['output'];
|
|
21094
|
+
};
|
|
21095
|
+
export declare type ConvoAiHomeThread = {
|
|
21096
|
+
__typename?: 'ConvoAiHomeThread';
|
|
21097
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
21098
|
+
sources?: Maybe<Array<Maybe<ConvoAiHomeThreadSource>>>;
|
|
21099
|
+
suggestedActions?: Maybe<Array<Maybe<ConvoAiHomeThreadSuggestedAction>>>;
|
|
21100
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
21101
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
21102
|
+
};
|
|
21103
|
+
export declare type ConvoAiHomeThreadSource = ConvoAiHomeThreadsFirstPartySource | ConvoAiHomeThreadsThirdPartySource;
|
|
21104
|
+
export declare type ConvoAiHomeThreadSuggestedAction = {
|
|
21105
|
+
__typename?: 'ConvoAiHomeThreadSuggestedAction';
|
|
21106
|
+
action?: Maybe<ConvoAiHomeThreadSuggestedActionType>;
|
|
21107
|
+
source?: Maybe<ConvoAiHomeThreadSource>;
|
|
21108
|
+
};
|
|
21109
|
+
export declare enum ConvoAiHomeThreadSuggestedActionType {
|
|
21110
|
+
Delete = "DELETE",
|
|
21111
|
+
Reply = "REPLY",
|
|
21112
|
+
Share = "SHARE",
|
|
21113
|
+
View = "VIEW"
|
|
21114
|
+
}
|
|
21115
|
+
export declare type ConvoAiHomeThreadsEdge = {
|
|
21116
|
+
__typename?: 'ConvoAiHomeThreadsEdge';
|
|
21117
|
+
cursor: Scalars['String']['output'];
|
|
21118
|
+
node?: Maybe<ConvoAiHomeThread>;
|
|
21119
|
+
};
|
|
21120
|
+
export declare type ConvoAiHomeThreadsFirstPartySource = {
|
|
21121
|
+
__typename?: 'ConvoAiHomeThreadsFirstPartySource';
|
|
21122
|
+
ari: Scalars['ID']['output'];
|
|
21123
|
+
data?: Maybe<ConvoAiHomeThreadsFirstPartySourceType>;
|
|
21124
|
+
url: Scalars['String']['output'];
|
|
21125
|
+
};
|
|
21126
|
+
export declare type ConvoAiHomeThreadsFirstPartySourceType = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
21127
|
+
export declare type ConvoAiHomeThreadsInput = {
|
|
21128
|
+
userId: Scalars['ID']['input'];
|
|
21129
|
+
};
|
|
21130
|
+
export declare type ConvoAiHomeThreadsResult = {
|
|
21131
|
+
__typename?: 'ConvoAiHomeThreadsResult';
|
|
21132
|
+
edges?: Maybe<Array<ConvoAiHomeThreadsEdge>>;
|
|
21133
|
+
errors?: Maybe<Array<QueryError>>;
|
|
21134
|
+
pageInfo: PageInfo;
|
|
21135
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
21136
|
+
};
|
|
21137
|
+
export declare type ConvoAiHomeThreadsThirdPartySource = {
|
|
21138
|
+
__typename?: 'ConvoAiHomeThreadsThirdPartySource';
|
|
21139
|
+
url: Scalars['String']['output'];
|
|
21140
|
+
};
|
|
20903
21141
|
export declare type ConvoAiJira3pRelatedLinksEdge = {
|
|
20904
21142
|
__typename?: 'ConvoAiJira3pRelatedLinksEdge';
|
|
20905
21143
|
node?: Maybe<ConvoAiThirdPartyRelatedLink>;
|
|
@@ -31593,12 +31831,22 @@ export declare type GraphIntegrationMcpServer = {
|
|
|
31593
31831
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
31594
31832
|
id: Scalars['ID']['output'];
|
|
31595
31833
|
tags: Array<Scalars['String']['output']>;
|
|
31834
|
+
tools?: Maybe<GraphIntegrationMcpToolNodeConnection>;
|
|
31835
|
+
};
|
|
31836
|
+
export declare type GraphIntegrationMcpServerToolsArgs = {
|
|
31837
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31838
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31596
31839
|
};
|
|
31597
31840
|
export declare type GraphIntegrationMcpServerNode = Node & {
|
|
31598
31841
|
__typename?: 'GraphIntegrationMcpServerNode';
|
|
31599
31842
|
displayName: Scalars['String']['output'];
|
|
31600
31843
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
31601
31844
|
id: Scalars['ID']['output'];
|
|
31845
|
+
tools?: Maybe<GraphIntegrationMcpToolNodeConnection>;
|
|
31846
|
+
};
|
|
31847
|
+
export declare type GraphIntegrationMcpServerNodeToolsArgs = {
|
|
31848
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31849
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31602
31850
|
};
|
|
31603
31851
|
export declare type GraphIntegrationMcpTool = {
|
|
31604
31852
|
__typename?: 'GraphIntegrationMcpTool';
|
|
@@ -31611,6 +31859,28 @@ export declare type GraphIntegrationMcpTool = {
|
|
|
31611
31859
|
status?: Maybe<GraphIntegrationStatus>;
|
|
31612
31860
|
tags: Array<Scalars['String']['output']>;
|
|
31613
31861
|
};
|
|
31862
|
+
export declare type GraphIntegrationMcpToolNode = Node & {
|
|
31863
|
+
__typename?: 'GraphIntegrationMcpToolNode';
|
|
31864
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
31865
|
+
displayName: Scalars['String']['output'];
|
|
31866
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
31867
|
+
id: Scalars['ID']['output'];
|
|
31868
|
+
mcpServer?: Maybe<GraphIntegrationMcpServerNode>;
|
|
31869
|
+
name: Scalars['String']['output'];
|
|
31870
|
+
status?: Maybe<GraphIntegrationStatus>;
|
|
31871
|
+
tags: Array<Scalars['String']['output']>;
|
|
31872
|
+
};
|
|
31873
|
+
export declare type GraphIntegrationMcpToolNodeConnection = {
|
|
31874
|
+
__typename?: 'GraphIntegrationMcpToolNodeConnection';
|
|
31875
|
+
edges: Array<GraphIntegrationMcpToolNodeEdge>;
|
|
31876
|
+
error?: Maybe<QueryError>;
|
|
31877
|
+
pageInfo: PageInfo;
|
|
31878
|
+
};
|
|
31879
|
+
export declare type GraphIntegrationMcpToolNodeEdge = {
|
|
31880
|
+
__typename?: 'GraphIntegrationMcpToolNodeEdge';
|
|
31881
|
+
cursor: Scalars['String']['output'];
|
|
31882
|
+
node?: Maybe<GraphIntegrationMcpToolNode>;
|
|
31883
|
+
};
|
|
31614
31884
|
export declare type GraphIntegrationRemoveTwgCapabilityContainerInput = {
|
|
31615
31885
|
contextAri: Scalars['ID']['input'];
|
|
31616
31886
|
id: Scalars['String']['input'];
|
|
@@ -34457,6 +34727,8 @@ export declare type GraphStore = {
|
|
|
34457
34727
|
conversationHasMessageInverse?: Maybe<GraphStoreSimplifiedConversationHasMessageInverseConnection>;
|
|
34458
34728
|
customerAssociatedIssue?: Maybe<GraphStoreSimplifiedCustomerAssociatedIssueConnection>;
|
|
34459
34729
|
customerAssociatedIssueInverse?: Maybe<GraphStoreSimplifiedCustomerAssociatedIssueInverseConnection>;
|
|
34730
|
+
customerHasExternalConversation?: Maybe<GraphStoreSimplifiedCustomerHasExternalConversationConnection>;
|
|
34731
|
+
customerHasExternalConversationInverse?: Maybe<GraphStoreSimplifiedCustomerHasExternalConversationInverseConnection>;
|
|
34460
34732
|
cypherQuery: GraphStoreCypherQueryConnection;
|
|
34461
34733
|
cypherQueryV2: GraphStoreCypherQueryV2Connection;
|
|
34462
34734
|
cypherQueryV2Batch: GraphStoreCypherQueryV2BatchConnection;
|
|
@@ -35933,6 +36205,20 @@ export declare type GraphStoreCustomerAssociatedIssueInverseArgs = {
|
|
|
35933
36205
|
id: Scalars['ID']['input'];
|
|
35934
36206
|
sort?: InputMaybe<GraphStoreCustomerAssociatedIssueSortInput>;
|
|
35935
36207
|
};
|
|
36208
|
+
export declare type GraphStoreCustomerHasExternalConversationArgs = {
|
|
36209
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36210
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36211
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36212
|
+
id: Scalars['ID']['input'];
|
|
36213
|
+
sort?: InputMaybe<GraphStoreCustomerHasExternalConversationSortInput>;
|
|
36214
|
+
};
|
|
36215
|
+
export declare type GraphStoreCustomerHasExternalConversationInverseArgs = {
|
|
36216
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36217
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36218
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36219
|
+
id: Scalars['ID']['input'];
|
|
36220
|
+
sort?: InputMaybe<GraphStoreCustomerHasExternalConversationSortInput>;
|
|
36221
|
+
};
|
|
35936
36222
|
export declare type GraphStoreCypherQueryArgs = {
|
|
35937
36223
|
additionalInputs?: InputMaybe<Scalars['JSON']['input']>;
|
|
35938
36224
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -42378,6 +42664,9 @@ export declare enum GraphStoreCreateVulnerabilityAssociatedIssueVulnerabilityTyp
|
|
|
42378
42664
|
export declare type GraphStoreCustomerAssociatedIssueSortInput = {
|
|
42379
42665
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42380
42666
|
};
|
|
42667
|
+
export declare type GraphStoreCustomerHasExternalConversationSortInput = {
|
|
42668
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42669
|
+
};
|
|
42381
42670
|
export declare type GraphStoreCypherQueryBooleanObject = {
|
|
42382
42671
|
__typename?: 'GraphStoreCypherQueryBooleanObject';
|
|
42383
42672
|
value: Scalars['Boolean']['output'];
|
|
@@ -48976,6 +49265,34 @@ export declare type GraphStoreSimplifiedCustomerAssociatedIssueInverseEdge = {
|
|
|
48976
49265
|
};
|
|
48977
49266
|
export declare type GraphStoreSimplifiedCustomerAssociatedIssueInverseUnion = Customer360Customer;
|
|
48978
49267
|
export declare type GraphStoreSimplifiedCustomerAssociatedIssueUnion = JiraIssue;
|
|
49268
|
+
export declare type GraphStoreSimplifiedCustomerHasExternalConversationConnection = HasPageInfo & {
|
|
49269
|
+
__typename?: 'GraphStoreSimplifiedCustomerHasExternalConversationConnection';
|
|
49270
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCustomerHasExternalConversationEdge>>>;
|
|
49271
|
+
pageInfo: PageInfo;
|
|
49272
|
+
};
|
|
49273
|
+
export declare type GraphStoreSimplifiedCustomerHasExternalConversationEdge = {
|
|
49274
|
+
__typename?: 'GraphStoreSimplifiedCustomerHasExternalConversationEdge';
|
|
49275
|
+
createdAt: Scalars['DateTime']['output'];
|
|
49276
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
49277
|
+
id: Scalars['ID']['output'];
|
|
49278
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
49279
|
+
node?: Maybe<GraphStoreSimplifiedCustomerHasExternalConversationUnion>;
|
|
49280
|
+
};
|
|
49281
|
+
export declare type GraphStoreSimplifiedCustomerHasExternalConversationInverseConnection = HasPageInfo & {
|
|
49282
|
+
__typename?: 'GraphStoreSimplifiedCustomerHasExternalConversationInverseConnection';
|
|
49283
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCustomerHasExternalConversationInverseEdge>>>;
|
|
49284
|
+
pageInfo: PageInfo;
|
|
49285
|
+
};
|
|
49286
|
+
export declare type GraphStoreSimplifiedCustomerHasExternalConversationInverseEdge = {
|
|
49287
|
+
__typename?: 'GraphStoreSimplifiedCustomerHasExternalConversationInverseEdge';
|
|
49288
|
+
createdAt: Scalars['DateTime']['output'];
|
|
49289
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
49290
|
+
id: Scalars['ID']['output'];
|
|
49291
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
49292
|
+
node?: Maybe<GraphStoreSimplifiedCustomerHasExternalConversationInverseUnion>;
|
|
49293
|
+
};
|
|
49294
|
+
export declare type GraphStoreSimplifiedCustomerHasExternalConversationInverseUnion = Customer360Customer;
|
|
49295
|
+
export declare type GraphStoreSimplifiedCustomerHasExternalConversationUnion = ExternalConversation;
|
|
48979
49296
|
export declare type GraphStoreSimplifiedDeploymentAssociatedDeploymentConnection = HasPageInfo & {
|
|
48980
49297
|
__typename?: 'GraphStoreSimplifiedDeploymentAssociatedDeploymentConnection';
|
|
48981
49298
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDeploymentAssociatedDeploymentEdge>>>;
|
|
@@ -61611,6 +61928,9 @@ export declare type JiraAssociateProjectToFieldSchemePayload = Payload & {
|
|
|
61611
61928
|
errors?: Maybe<Array<MutationError>>;
|
|
61612
61929
|
success: Scalars['Boolean']['output'];
|
|
61613
61930
|
};
|
|
61931
|
+
export declare type JiraAssociatedProjectSearchInput = {
|
|
61932
|
+
name: Scalars['String']['input'];
|
|
61933
|
+
};
|
|
61614
61934
|
export declare type JiraAtlasProject = {
|
|
61615
61935
|
__typename?: 'JiraAtlasProject';
|
|
61616
61936
|
dueDate?: Maybe<Scalars['Date']['output']>;
|
|
@@ -62103,6 +62423,9 @@ export declare type JiraAvailableFieldsEdge = {
|
|
|
62103
62423
|
cursor: Scalars['String']['output'];
|
|
62104
62424
|
node?: Maybe<JiraAvailableField>;
|
|
62105
62425
|
};
|
|
62426
|
+
export declare type JiraAvailableProjectSearchInput = {
|
|
62427
|
+
name: Scalars['String']['input'];
|
|
62428
|
+
};
|
|
62106
62429
|
export declare type JiraAvatar = {
|
|
62107
62430
|
__typename?: 'JiraAvatar';
|
|
62108
62431
|
large?: Maybe<Scalars['String']['output']>;
|
|
@@ -63032,6 +63355,160 @@ export declare type JiraBulkTransitionsInput = {
|
|
|
63032
63355
|
export declare type JiraBulkWatchOrUnwatchInput = {
|
|
63033
63356
|
selectedIssueIds: Array<Scalars['ID']['input']>;
|
|
63034
63357
|
};
|
|
63358
|
+
export declare type JiraCfoAggregationInput = {
|
|
63359
|
+
type: JiraCfoAggregationType;
|
|
63360
|
+
value?: InputMaybe<Scalars['Float']['input']>;
|
|
63361
|
+
};
|
|
63362
|
+
export declare enum JiraCfoAggregationType {
|
|
63363
|
+
Avg = "AVG",
|
|
63364
|
+
Count = "COUNT",
|
|
63365
|
+
CountDistinct = "COUNT_DISTINCT",
|
|
63366
|
+
Max = "MAX",
|
|
63367
|
+
Min = "MIN",
|
|
63368
|
+
Percentile = "PERCENTILE",
|
|
63369
|
+
Sum = "SUM"
|
|
63370
|
+
}
|
|
63371
|
+
export declare type JiraCfoAnalyticsResult = {
|
|
63372
|
+
data?: Maybe<JiraCfoDataRowConnection>;
|
|
63373
|
+
summary?: Maybe<JiraCfoMetricSummary>;
|
|
63374
|
+
};
|
|
63375
|
+
export declare type JiraCfoAnalyticsResultDataArgs = {
|
|
63376
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
63377
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
63378
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
63379
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
63380
|
+
};
|
|
63381
|
+
export declare type JiraCfoBoardFilterInput = {
|
|
63382
|
+
creatorAccountId?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
63383
|
+
keyword?: InputMaybe<Scalars['String']['input']>;
|
|
63384
|
+
performanceStatus?: InputMaybe<Array<InputMaybe<JiraCfoBoardPerformanceStatus>>>;
|
|
63385
|
+
};
|
|
63386
|
+
export declare type JiraCfoBoardPerfStats = {
|
|
63387
|
+
__typename?: 'JiraCFOBoardPerfStats';
|
|
63388
|
+
fastBoardThreshold?: Maybe<Scalars['Float']['output']>;
|
|
63389
|
+
fastBoardsCount?: Maybe<Scalars['Int']['output']>;
|
|
63390
|
+
moderateBoardsCount?: Maybe<Scalars['Int']['output']>;
|
|
63391
|
+
slowBoardThreshold?: Maybe<Scalars['Float']['output']>;
|
|
63392
|
+
slowBoardsCount?: Maybe<Scalars['Int']['output']>;
|
|
63393
|
+
};
|
|
63394
|
+
export declare type JiraCfoBoardPerformanceAnalyticsResult = JiraCfoAnalyticsResult & {
|
|
63395
|
+
__typename?: 'JiraCFOBoardPerformanceAnalyticsResult';
|
|
63396
|
+
data?: Maybe<JiraCfoDataRowConnection>;
|
|
63397
|
+
summary?: Maybe<JiraCfoBoardPerformanceMetricSummary>;
|
|
63398
|
+
};
|
|
63399
|
+
export declare type JiraCfoBoardPerformanceAnalyticsResultDataArgs = {
|
|
63400
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
63401
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
63402
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
63403
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
63404
|
+
};
|
|
63405
|
+
export declare type JiraCfoBoardPerformanceDataRow = JiraCfoDataRow & {
|
|
63406
|
+
__typename?: 'JiraCFOBoardPerformanceDataRow';
|
|
63407
|
+
boardCreator?: Maybe<User>;
|
|
63408
|
+
boardId?: Maybe<Scalars['ID']['output']>;
|
|
63409
|
+
boardName?: Maybe<Scalars['String']['output']>;
|
|
63410
|
+
dimensions?: Maybe<Array<Maybe<JiraCfoDimension>>>;
|
|
63411
|
+
metrics?: Maybe<Array<Maybe<JiraCfoMetric>>>;
|
|
63412
|
+
optimizationSuggestion?: Maybe<Scalars['String']['output']>;
|
|
63413
|
+
perfStatus?: Maybe<JiraCfoBoardPerformanceStatus>;
|
|
63414
|
+
projectKey?: Maybe<Scalars['String']['output']>;
|
|
63415
|
+
timestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
63416
|
+
};
|
|
63417
|
+
export declare type JiraCfoBoardPerformanceMetricSummary = JiraCfoMetricSummary & {
|
|
63418
|
+
__typename?: 'JiraCFOBoardPerformanceMetricSummary';
|
|
63419
|
+
boardPerfStats?: Maybe<JiraCfoBoardPerfStats>;
|
|
63420
|
+
periodComparison?: Maybe<Array<Maybe<JiraCfoMetricComparison>>>;
|
|
63421
|
+
};
|
|
63422
|
+
export declare enum JiraCfoBoardPerformanceStatus {
|
|
63423
|
+
Fast = "FAST",
|
|
63424
|
+
Moderate = "MODERATE",
|
|
63425
|
+
Slow = "SLOW"
|
|
63426
|
+
}
|
|
63427
|
+
export declare type JiraCfoDataRow = {
|
|
63428
|
+
dimensions?: Maybe<Array<Maybe<JiraCfoDimension>>>;
|
|
63429
|
+
metrics?: Maybe<Array<Maybe<JiraCfoMetric>>>;
|
|
63430
|
+
timestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
63431
|
+
};
|
|
63432
|
+
export declare type JiraCfoDataRowConnection = {
|
|
63433
|
+
__typename?: 'JiraCFODataRowConnection';
|
|
63434
|
+
edges?: Maybe<Array<Maybe<JiraCfoDataRowEdge>>>;
|
|
63435
|
+
pageInfo: PageInfo;
|
|
63436
|
+
totalCount?: Maybe<Scalars['Long']['output']>;
|
|
63437
|
+
};
|
|
63438
|
+
export declare type JiraCfoDataRowEdge = {
|
|
63439
|
+
__typename?: 'JiraCFODataRowEdge';
|
|
63440
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
63441
|
+
node?: Maybe<JiraCfoDataRow>;
|
|
63442
|
+
};
|
|
63443
|
+
export declare type JiraCfoDefaultAnalyticsResult = JiraCfoAnalyticsResult & {
|
|
63444
|
+
__typename?: 'JiraCFODefaultAnalyticsResult';
|
|
63445
|
+
data?: Maybe<JiraCfoDataRowConnection>;
|
|
63446
|
+
summary?: Maybe<JiraCfoMetricSummary>;
|
|
63447
|
+
};
|
|
63448
|
+
export declare type JiraCfoDefaultAnalyticsResultDataArgs = {
|
|
63449
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
63450
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
63451
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
63452
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
63453
|
+
};
|
|
63454
|
+
export declare type JiraCfoDefaultDataRow = JiraCfoDataRow & {
|
|
63455
|
+
__typename?: 'JiraCFODefaultDataRow';
|
|
63456
|
+
dimensions?: Maybe<Array<Maybe<JiraCfoDimension>>>;
|
|
63457
|
+
metrics?: Maybe<Array<Maybe<JiraCfoMetric>>>;
|
|
63458
|
+
timestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
63459
|
+
};
|
|
63460
|
+
export declare type JiraCfoDefaultMetricSummary = JiraCfoMetricSummary & {
|
|
63461
|
+
__typename?: 'JiraCFODefaultMetricSummary';
|
|
63462
|
+
periodComparison?: Maybe<Array<Maybe<JiraCfoMetricComparison>>>;
|
|
63463
|
+
};
|
|
63464
|
+
export declare type JiraCfoDimension = {
|
|
63465
|
+
__typename?: 'JiraCFODimension';
|
|
63466
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
63467
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
63468
|
+
};
|
|
63469
|
+
export declare type JiraCfoDimensionFilterInput = {
|
|
63470
|
+
name: Scalars['String']['input'];
|
|
63471
|
+
operator: JiraCfoFilterOperator;
|
|
63472
|
+
values: Array<Scalars['String']['input']>;
|
|
63473
|
+
};
|
|
63474
|
+
export declare type JiraCfoDimensionInput = {
|
|
63475
|
+
alias?: InputMaybe<Scalars['String']['input']>;
|
|
63476
|
+
name: Scalars['String']['input'];
|
|
63477
|
+
};
|
|
63478
|
+
export declare type JiraCfoFilterInput = {
|
|
63479
|
+
boardFilter?: InputMaybe<JiraCfoBoardFilterInput>;
|
|
63480
|
+
dimensionFilter?: InputMaybe<JiraCfoDimensionFilterInput>;
|
|
63481
|
+
};
|
|
63482
|
+
export declare enum JiraCfoFilterOperator {
|
|
63483
|
+
Equals = "EQUALS",
|
|
63484
|
+
In = "IN"
|
|
63485
|
+
}
|
|
63486
|
+
export declare type JiraCfoMetric = {
|
|
63487
|
+
__typename?: 'JiraCFOMetric';
|
|
63488
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
63489
|
+
value?: Maybe<Scalars['Float']['output']>;
|
|
63490
|
+
};
|
|
63491
|
+
export declare type JiraCfoMetricComparison = {
|
|
63492
|
+
__typename?: 'JiraCFOMetricComparison';
|
|
63493
|
+
change?: Maybe<Scalars['Float']['output']>;
|
|
63494
|
+
changePercentage?: Maybe<Scalars['Float']['output']>;
|
|
63495
|
+
currentPeriod?: Maybe<JiraCfoMetric>;
|
|
63496
|
+
previousPeriod?: Maybe<JiraCfoMetric>;
|
|
63497
|
+
};
|
|
63498
|
+
export declare type JiraCfoMetricInput = {
|
|
63499
|
+
aggregation?: InputMaybe<JiraCfoAggregationInput>;
|
|
63500
|
+
alias?: InputMaybe<Scalars['String']['input']>;
|
|
63501
|
+
name: Scalars['String']['input'];
|
|
63502
|
+
summarize?: InputMaybe<Scalars['Boolean']['input']>;
|
|
63503
|
+
};
|
|
63504
|
+
export declare type JiraCfoMetricSummary = {
|
|
63505
|
+
periodComparison?: Maybe<Array<Maybe<JiraCfoMetricComparison>>>;
|
|
63506
|
+
};
|
|
63507
|
+
export declare enum JiraCfoTimeGranularity {
|
|
63508
|
+
Day = "DAY",
|
|
63509
|
+
Month = "MONTH",
|
|
63510
|
+
Week = "WEEK"
|
|
63511
|
+
}
|
|
63035
63512
|
export declare type JiraCmdbField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
|
|
63036
63513
|
__typename?: 'JiraCMDBField';
|
|
63037
63514
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -66125,6 +66602,9 @@ export declare enum JiraFieldOptionIdsFilterOperation {
|
|
|
66125
66602
|
}
|
|
66126
66603
|
export declare type JiraFieldScheme = Node & {
|
|
66127
66604
|
__typename?: 'JiraFieldScheme';
|
|
66605
|
+
associatedProjects?: Maybe<JiraProjectConnection>;
|
|
66606
|
+
associatedProjectsCount?: Maybe<Scalars['Int']['output']>;
|
|
66607
|
+
availableProjects?: Maybe<JiraProjectConnection>;
|
|
66128
66608
|
description?: Maybe<Scalars['String']['output']>;
|
|
66129
66609
|
fieldsCount?: Maybe<Scalars['Int']['output']>;
|
|
66130
66610
|
id: Scalars['ID']['output'];
|
|
@@ -66133,6 +66613,16 @@ export declare type JiraFieldScheme = Node & {
|
|
|
66133
66613
|
projectsCount?: Maybe<Scalars['Int']['output']>;
|
|
66134
66614
|
schemeId?: Maybe<Scalars['ID']['output']>;
|
|
66135
66615
|
};
|
|
66616
|
+
export declare type JiraFieldSchemeAssociatedProjectsArgs = {
|
|
66617
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
66618
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
66619
|
+
input?: InputMaybe<JiraAssociatedProjectSearchInput>;
|
|
66620
|
+
};
|
|
66621
|
+
export declare type JiraFieldSchemeAvailableProjectsArgs = {
|
|
66622
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
66623
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
66624
|
+
input?: InputMaybe<JiraAvailableProjectSearchInput>;
|
|
66625
|
+
};
|
|
66136
66626
|
export declare type JiraFieldSchemeAssociatedField = {
|
|
66137
66627
|
__typename?: 'JiraFieldSchemeAssociatedField';
|
|
66138
66628
|
field?: Maybe<JiraField>;
|
|
@@ -69711,6 +70201,14 @@ export declare type JiraJourneyWorkdayIntegrationTriggerConfigurationInput = {
|
|
|
69711
70201
|
ruleId?: InputMaybe<Scalars['ID']['input']>;
|
|
69712
70202
|
type?: InputMaybe<JiraJourneyTriggerType>;
|
|
69713
70203
|
};
|
|
70204
|
+
export declare type JiraJqlAtlasProjectFieldValue = JiraJqlFieldValue & {
|
|
70205
|
+
__typename?: 'JiraJqlAtlasProjectFieldValue';
|
|
70206
|
+
displayName: Scalars['String']['output'];
|
|
70207
|
+
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
70208
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
70209
|
+
jqlTerm: Scalars['String']['output'];
|
|
70210
|
+
project: JiraAtlasProject;
|
|
70211
|
+
};
|
|
69714
70212
|
export declare enum JiraJqlAutocompleteType {
|
|
69715
70213
|
Basic = "BASIC",
|
|
69716
70214
|
Cascadingoption = "CASCADINGOPTION",
|
|
@@ -74347,6 +74845,7 @@ export declare type JiraQuery = {
|
|
|
74347
74845
|
bulkOperationProgress?: Maybe<JiraIssueBulkOperationProgress>;
|
|
74348
74846
|
bulkOperationsMetadata?: Maybe<JiraIssueBulkOperationsMetadata>;
|
|
74349
74847
|
canPerform?: Maybe<Scalars['Boolean']['output']>;
|
|
74848
|
+
cfoAnalytics?: Maybe<JiraCfoAnalyticsResult>;
|
|
74350
74849
|
childIssuesLimit?: Maybe<Scalars['Long']['output']>;
|
|
74351
74850
|
cmdbSelectedObjectAttributes?: Maybe<JiraCmdbAttributeConnection>;
|
|
74352
74851
|
containerNavigation?: Maybe<JiraContainerNavigationResult>;
|
|
@@ -74658,6 +75157,15 @@ export declare type JiraQueryCanPerformArgs = {
|
|
|
74658
75157
|
cloudId: Scalars['ID']['input'];
|
|
74659
75158
|
type: JiraActionType;
|
|
74660
75159
|
};
|
|
75160
|
+
export declare type JiraQueryCfoAnalyticsArgs = {
|
|
75161
|
+
cloudId: Scalars['ID']['input'];
|
|
75162
|
+
dimensions?: InputMaybe<Array<JiraCfoDimensionInput>>;
|
|
75163
|
+
endDate: Scalars['DateTime']['input'];
|
|
75164
|
+
filters?: InputMaybe<Array<JiraCfoFilterInput>>;
|
|
75165
|
+
granularity?: InputMaybe<JiraCfoTimeGranularity>;
|
|
75166
|
+
metrics: Array<JiraCfoMetricInput>;
|
|
75167
|
+
startDate: Scalars['DateTime']['input'];
|
|
75168
|
+
};
|
|
74661
75169
|
export declare type JiraQueryChildIssuesLimitArgs = {
|
|
74662
75170
|
cloudId: Scalars['ID']['input'];
|
|
74663
75171
|
};
|
|
@@ -86194,7 +86702,9 @@ export declare type MarketplaceStoreEdition = {
|
|
|
86194
86702
|
approvalDetails?: Maybe<MarketplaceStoreApprovalDetails>;
|
|
86195
86703
|
features: Array<MarketplaceStoreEditionFeature>;
|
|
86196
86704
|
id: Scalars['ID']['output'];
|
|
86705
|
+
isDecoupled?: Maybe<Scalars['Boolean']['output']>;
|
|
86197
86706
|
isDefault: Scalars['Boolean']['output'];
|
|
86707
|
+
parentProduct?: Maybe<Scalars['String']['output']>;
|
|
86198
86708
|
pricingPlan: MarketplaceStorePricingPlan;
|
|
86199
86709
|
type: MarketplaceStoreEditionType;
|
|
86200
86710
|
};
|
|
@@ -89772,11 +90282,14 @@ export declare type Mutation = {
|
|
|
89772
90282
|
admin_updateInvitePolicy?: Maybe<AdminUpdateInvitePolicyResponsePayload>;
|
|
89773
90283
|
agentStudio_addGroupsToCreatePermission?: Maybe<AgentStudioAddGroupsToCreatePermissionPayload>;
|
|
89774
90284
|
agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
|
|
90285
|
+
agentStudio_createBatchEvaluationJob: AgentStudioCreateBatchEvaluationJobPayload;
|
|
89775
90286
|
agentStudio_createScenario?: Maybe<AgentStudioCreateScenarioPayload>;
|
|
89776
90287
|
agentStudio_deleteAgent?: Maybe<AgentStudioDeleteAgentPayload>;
|
|
90288
|
+
agentStudio_deleteDatasetItem: AgentStudioDeleteDatasetItemPayload;
|
|
89777
90289
|
agentStudio_deleteScenario?: Maybe<AgentStudioDeleteScenarioPayload>;
|
|
89778
90290
|
agentStudio_removeActorRoles?: Maybe<AgentStudioUpdateAgentPermissionPayload>;
|
|
89779
90291
|
agentStudio_removeGroupsFromCreatePermission?: Maybe<AgentStudioRemoveGroupsFromCreatePermissionPayload>;
|
|
90292
|
+
agentStudio_runBatchEvaluationJob?: Maybe<AgentStudioBatchEvalRunJobPayload>;
|
|
89780
90293
|
agentStudio_setWidgetByContainerAri?: Maybe<AgentStudioSetWidgetByContainerAriPayload>;
|
|
89781
90294
|
agentStudio_updateActorRoles?: Maybe<AgentStudioUpdateAgentPermissionPayload>;
|
|
89782
90295
|
agentStudio_updateAgentActions?: Maybe<AgentStudioUpdateAgentActionsPayload>;
|
|
@@ -89787,6 +90300,7 @@ export declare type Mutation = {
|
|
|
89787
90300
|
agentStudio_updateCreatePermissionMode?: Maybe<AgentStudioUpdateCreatePermissionModePayload>;
|
|
89788
90301
|
agentStudio_updateScenario?: Maybe<AgentStudioUpdateScenarioPayload>;
|
|
89789
90302
|
agentStudio_updateScenarioMappingsForContainer?: Maybe<AgentStudioUpdateScenarioMappingsPayload>;
|
|
90303
|
+
agentStudio_uploadDatasetCsv?: Maybe<AgentStudioBatchEvalUploadDatasetPayload>;
|
|
89790
90304
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
89791
90305
|
appStorage?: Maybe<AppStorageMutation>;
|
|
89792
90306
|
appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
|
|
@@ -90384,6 +90898,7 @@ export declare type Mutation = {
|
|
|
90384
90898
|
stakeholderComms_removeStakeholderGroup?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
90385
90899
|
stakeholderComms_removeStakeholderGroups?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
90386
90900
|
stakeholderComms_removeStakeholderMembers?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
90901
|
+
stakeholderComms_resendStakeholderInvite?: Maybe<StakeholderCommsResendInviteResponse>;
|
|
90387
90902
|
stakeholderComms_updateDraftPage?: Maybe<StakeholderCommsPageResponse>;
|
|
90388
90903
|
stakeholderComms_updatePage?: Maybe<StakeholderCommsPageResponse>;
|
|
90389
90904
|
stakeholderComms_updateStakeholder?: Maybe<StakeholderCommsStakeholderResponse>;
|
|
@@ -90561,6 +91076,12 @@ export declare type MutationAgentStudio_CreateAgentArgs = {
|
|
|
90561
91076
|
cloudId: Scalars['String']['input'];
|
|
90562
91077
|
input: AgentStudioCreateAgentInput;
|
|
90563
91078
|
};
|
|
91079
|
+
export declare type MutationAgentStudio_CreateBatchEvaluationJobArgs = {
|
|
91080
|
+
cloudId: Scalars['String']['input'];
|
|
91081
|
+
input: AgentStudioCreateBatchEvaluationJobInput;
|
|
91082
|
+
productType: AgentStudioProductType;
|
|
91083
|
+
projectContainerAri: Scalars['ID']['input'];
|
|
91084
|
+
};
|
|
90564
91085
|
export declare type MutationAgentStudio_CreateScenarioArgs = {
|
|
90565
91086
|
cloudId: Scalars['String']['input'];
|
|
90566
91087
|
input: AgentStudioCreateScenarioInput;
|
|
@@ -90568,6 +91089,12 @@ export declare type MutationAgentStudio_CreateScenarioArgs = {
|
|
|
90568
91089
|
export declare type MutationAgentStudio_DeleteAgentArgs = {
|
|
90569
91090
|
id: Scalars['ID']['input'];
|
|
90570
91091
|
};
|
|
91092
|
+
export declare type MutationAgentStudio_DeleteDatasetItemArgs = {
|
|
91093
|
+
cloudId: Scalars['String']['input'];
|
|
91094
|
+
id: Scalars['ID']['input'];
|
|
91095
|
+
productType: AgentStudioProductType;
|
|
91096
|
+
projectContainerAri: Scalars['ID']['input'];
|
|
91097
|
+
};
|
|
90571
91098
|
export declare type MutationAgentStudio_DeleteScenarioArgs = {
|
|
90572
91099
|
id: Scalars['ID']['input'];
|
|
90573
91100
|
};
|
|
@@ -90579,6 +91106,12 @@ export declare type MutationAgentStudio_RemoveGroupsFromCreatePermissionArgs = {
|
|
|
90579
91106
|
cloudId: Scalars['ID']['input'];
|
|
90580
91107
|
groupARIs: Array<Scalars['ID']['input']>;
|
|
90581
91108
|
};
|
|
91109
|
+
export declare type MutationAgentStudio_RunBatchEvaluationJobArgs = {
|
|
91110
|
+
batchEvaluationJobId: Scalars['ID']['input'];
|
|
91111
|
+
cloudId: Scalars['String']['input'];
|
|
91112
|
+
productType: AgentStudioProductType;
|
|
91113
|
+
projectContainerAri: Scalars['ID']['input'];
|
|
91114
|
+
};
|
|
90582
91115
|
export declare type MutationAgentStudio_SetWidgetByContainerAriArgs = {
|
|
90583
91116
|
cloudId: Scalars['String']['input'];
|
|
90584
91117
|
containerAri: Scalars['ID']['input'];
|
|
@@ -90621,6 +91154,12 @@ export declare type MutationAgentStudio_UpdateScenarioMappingsForContainerArgs =
|
|
|
90621
91154
|
containerId: Scalars['String']['input'];
|
|
90622
91155
|
scenarioIds: Array<Scalars['ID']['input']>;
|
|
90623
91156
|
};
|
|
91157
|
+
export declare type MutationAgentStudio_UploadDatasetCsvArgs = {
|
|
91158
|
+
cloudId: Scalars['String']['input'];
|
|
91159
|
+
input?: InputMaybe<AgentStudioUploadBatchEvaluationDatasetInput>;
|
|
91160
|
+
productType: AgentStudioProductType;
|
|
91161
|
+
projectContainerAri: Scalars['ID']['input'];
|
|
91162
|
+
};
|
|
90624
91163
|
export declare type MutationAppStorage_AdminArgs = {
|
|
90625
91164
|
appId: Scalars['ID']['input'];
|
|
90626
91165
|
};
|
|
@@ -92590,6 +93129,9 @@ export declare type MutationStakeholderComms_RemoveStakeholderMembersArgs = {
|
|
|
92590
93129
|
groupId: Scalars['String']['input'];
|
|
92591
93130
|
stakeholderIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
92592
93131
|
};
|
|
93132
|
+
export declare type MutationStakeholderComms_ResendStakeholderInviteArgs = {
|
|
93133
|
+
resendInviteInput: StakeholderCommsResendInviteInput;
|
|
93134
|
+
};
|
|
92593
93135
|
export declare type MutationStakeholderComms_UpdateDraftPageArgs = {
|
|
92594
93136
|
page: StakeholderCommsUpdatePageInputType;
|
|
92595
93137
|
};
|
|
@@ -95752,7 +96294,15 @@ export declare type Query = {
|
|
|
95752
96294
|
agentAI_contextPanel?: Maybe<AgentAiContextPanelResult>;
|
|
95753
96295
|
agentAI_summarizeIssue?: Maybe<AgentAiIssueSummaryResult>;
|
|
95754
96296
|
agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
|
|
96297
|
+
agentStudio_batchEvaluationJob?: Maybe<AgentStudioBatchEvaluationJob>;
|
|
96298
|
+
agentStudio_batchEvaluationJobs: Array<AgentStudioBatchEvaluationJob>;
|
|
96299
|
+
agentStudio_batchEvaluationResults: Array<AgentStudioEvaluationResult>;
|
|
96300
|
+
agentStudio_batchEvaluationSummary?: Maybe<AgentStudioEvaluationSummary>;
|
|
95755
96301
|
agentStudio_conversationReportByAgentId?: Maybe<AgentStudioConversationReportByAgentIdResult>;
|
|
96302
|
+
agentStudio_dataset?: Maybe<AgentStudioDataset>;
|
|
96303
|
+
agentStudio_datasetItems?: Maybe<Array<AgentStudioDatasetItem>>;
|
|
96304
|
+
agentStudio_datasets?: Maybe<Array<AgentStudioDataset>>;
|
|
96305
|
+
agentStudio_evaluationProject?: Maybe<AgentStudioBatchEvaluationProject>;
|
|
95756
96306
|
agentStudio_getAgentActorRoles?: Maybe<AgentStudioActorRoles>;
|
|
95757
96307
|
agentStudio_getAgents?: Maybe<AgentStudioAgentsConnection>;
|
|
95758
96308
|
agentStudio_getByExternalReference?: Maybe<AgentStudioAgentResult>;
|
|
@@ -95991,6 +96541,7 @@ export declare type Query = {
|
|
|
95991
96541
|
contributorsLinkedToAtlasProject?: Maybe<GraphStoreCypherQueryConnection>;
|
|
95992
96542
|
contributorsLinkedToConfluencePage?: Maybe<GraphStoreCypherQueryConnection>;
|
|
95993
96543
|
contributorsLinkedToConfluencePageV2?: Maybe<GraphStoreCypherQueryConnection>;
|
|
96544
|
+
convoai_homeThreads?: Maybe<ConvoAiHomeThreadsResult>;
|
|
95994
96545
|
convoai_jiraEchoAiFeature?: Maybe<Scalars['String']['output']>;
|
|
95995
96546
|
convoai_jiraRelated3pLinksSuggestionsByIssueId?: Maybe<ConvoAiJira3pRelatedLinksResult>;
|
|
95996
96547
|
convoai_jiraRelatedResourcesSuggestions?: Maybe<ConvoAiJiraIssueRelatedResourcesResult>;
|
|
@@ -96143,6 +96694,7 @@ export declare type Query = {
|
|
|
96143
96694
|
graphIntegration_mcpAdminManagementMcpServers?: Maybe<GraphIntegrationMcpAdminManagementMcpServerConnection>;
|
|
96144
96695
|
graphIntegration_mcpAdminManagementMcpTools?: Maybe<GraphIntegrationMcpAdminManagementMcpToolConnection>;
|
|
96145
96696
|
graphIntegration_mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
96697
|
+
graphIntegration_mcpTools?: Maybe<Array<Maybe<GraphIntegrationMcpToolNode>>>;
|
|
96146
96698
|
graphIntegration_twgCapabilityContainer?: Maybe<GraphIntegrationTwgCapabilityContainer>;
|
|
96147
96699
|
graphIntegration_twgCapabilityContainersInContext?: Maybe<GraphIntegrationTwgCapabilityContainerConnection>;
|
|
96148
96700
|
graphStore?: Maybe<GraphStore>;
|
|
@@ -96647,6 +97199,31 @@ export declare type QueryAgentAi_SummarizeIssueArgs = {
|
|
|
96647
97199
|
export declare type QueryAgentStudio_AgentByIdArgs = {
|
|
96648
97200
|
id: Scalars['ID']['input'];
|
|
96649
97201
|
};
|
|
97202
|
+
export declare type QueryAgentStudio_BatchEvaluationJobArgs = {
|
|
97203
|
+
cloudId: Scalars['String']['input'];
|
|
97204
|
+
jobId: Scalars['ID']['input'];
|
|
97205
|
+
productType: AgentStudioProductType;
|
|
97206
|
+
projectContainerAri: Scalars['ID']['input'];
|
|
97207
|
+
};
|
|
97208
|
+
export declare type QueryAgentStudio_BatchEvaluationJobsArgs = {
|
|
97209
|
+
agentId?: InputMaybe<Scalars['String']['input']>;
|
|
97210
|
+
cloudId: Scalars['String']['input'];
|
|
97211
|
+
productType: AgentStudioProductType;
|
|
97212
|
+
projectContainerAri: Scalars['ID']['input'];
|
|
97213
|
+
};
|
|
97214
|
+
export declare type QueryAgentStudio_BatchEvaluationResultsArgs = {
|
|
97215
|
+
cloudId: Scalars['String']['input'];
|
|
97216
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
97217
|
+
productType: AgentStudioProductType;
|
|
97218
|
+
projectContainerAri: Scalars['ID']['input'];
|
|
97219
|
+
runId: Scalars['ID']['input'];
|
|
97220
|
+
};
|
|
97221
|
+
export declare type QueryAgentStudio_BatchEvaluationSummaryArgs = {
|
|
97222
|
+
cloudId: Scalars['String']['input'];
|
|
97223
|
+
productType: AgentStudioProductType;
|
|
97224
|
+
projectContainerAri: Scalars['ID']['input'];
|
|
97225
|
+
runId: Scalars['ID']['input'];
|
|
97226
|
+
};
|
|
96650
97227
|
export declare type QueryAgentStudio_ConversationReportByAgentIdArgs = {
|
|
96651
97228
|
cloudId: Scalars['String']['input'];
|
|
96652
97229
|
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -96654,6 +97231,29 @@ export declare type QueryAgentStudio_ConversationReportByAgentIdArgs = {
|
|
|
96654
97231
|
period?: InputMaybe<AgentStudioConversationReportPeriod>;
|
|
96655
97232
|
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
96656
97233
|
};
|
|
97234
|
+
export declare type QueryAgentStudio_DatasetArgs = {
|
|
97235
|
+
cloudId: Scalars['String']['input'];
|
|
97236
|
+
datasetId: Scalars['ID']['input'];
|
|
97237
|
+
productType: AgentStudioProductType;
|
|
97238
|
+
projectContainerAri: Scalars['ID']['input'];
|
|
97239
|
+
};
|
|
97240
|
+
export declare type QueryAgentStudio_DatasetItemsArgs = {
|
|
97241
|
+
cloudId: Scalars['String']['input'];
|
|
97242
|
+
datasetId: Scalars['ID']['input'];
|
|
97243
|
+
productType: AgentStudioProductType;
|
|
97244
|
+
projectContainerAri: Scalars['ID']['input'];
|
|
97245
|
+
};
|
|
97246
|
+
export declare type QueryAgentStudio_DatasetsArgs = {
|
|
97247
|
+
cloudId: Scalars['String']['input'];
|
|
97248
|
+
productType: AgentStudioProductType;
|
|
97249
|
+
projectContainerAri: Scalars['ID']['input'];
|
|
97250
|
+
projectId: Scalars['ID']['input'];
|
|
97251
|
+
};
|
|
97252
|
+
export declare type QueryAgentStudio_EvaluationProjectArgs = {
|
|
97253
|
+
cloudId: Scalars['String']['input'];
|
|
97254
|
+
productType: AgentStudioProductType;
|
|
97255
|
+
projectContainerAri: Scalars['ID']['input'];
|
|
97256
|
+
};
|
|
96657
97257
|
export declare type QueryAgentStudio_GetAgentActorRolesArgs = {
|
|
96658
97258
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
96659
97259
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -97807,6 +98407,15 @@ export declare type QueryContributorsLinkedToConfluencePageV2Args = {
|
|
|
97807
98407
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
97808
98408
|
pageId: Scalars['ID']['input'];
|
|
97809
98409
|
};
|
|
98410
|
+
export declare type QueryConvoai_HomeThreadsArgs = {
|
|
98411
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
98412
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
98413
|
+
cloudId: Scalars['ID']['input'];
|
|
98414
|
+
experience: Scalars['String']['input'];
|
|
98415
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
98416
|
+
homeThreadsInput: ConvoAiHomeThreadsInput;
|
|
98417
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
98418
|
+
};
|
|
97810
98419
|
export declare type QueryConvoai_JiraEchoAiFeatureArgs = {
|
|
97811
98420
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
97812
98421
|
text?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -98439,6 +99048,9 @@ export declare type QueryGraphIntegration_McpAdminManagementMcpToolsArgs = {
|
|
|
98439
99048
|
export declare type QueryGraphIntegration_McpServersArgs = {
|
|
98440
99049
|
ids: Array<Scalars['ID']['input']>;
|
|
98441
99050
|
};
|
|
99051
|
+
export declare type QueryGraphIntegration_McpToolsArgs = {
|
|
99052
|
+
ids: Array<Scalars['ID']['input']>;
|
|
99053
|
+
};
|
|
98442
99054
|
export declare type QueryGraphIntegration_TwgCapabilityContainerArgs = {
|
|
98443
99055
|
contextAri: Scalars['ID']['input'];
|
|
98444
99056
|
id: Scalars['String']['input'];
|
|
@@ -102909,6 +103521,18 @@ export declare type SearchResultSlackMessage = SearchL2FeatureProvider & SearchR
|
|
|
102909
103521
|
type: SearchResultType;
|
|
102910
103522
|
url: Scalars['URL']['output'];
|
|
102911
103523
|
};
|
|
103524
|
+
export declare type SearchResultSpfAsk = SearchResult & {
|
|
103525
|
+
__typename?: 'SearchResultSpfAsk';
|
|
103526
|
+
description: Scalars['String']['output'];
|
|
103527
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
103528
|
+
id: Scalars['ID']['output'];
|
|
103529
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
103530
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
103531
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
103532
|
+
title: Scalars['String']['output'];
|
|
103533
|
+
type: SearchResultType;
|
|
103534
|
+
url: Scalars['URL']['output'];
|
|
103535
|
+
};
|
|
102912
103536
|
export declare type SearchResultTrelloBoard = SearchResult & {
|
|
102913
103537
|
__typename?: 'SearchResultTrelloBoard';
|
|
102914
103538
|
description: Scalars['String']['output'];
|
|
@@ -102936,6 +103560,7 @@ export declare type SearchResultTrelloCard = SearchResult & {
|
|
|
102936
103560
|
url: Scalars['URL']['output'];
|
|
102937
103561
|
};
|
|
102938
103562
|
export declare enum SearchResultType {
|
|
103563
|
+
Ask = "ask",
|
|
102939
103564
|
Attachment = "attachment",
|
|
102940
103565
|
Blogpost = "blogpost",
|
|
102941
103566
|
Board = "board",
|
|
@@ -102989,6 +103614,7 @@ export declare type SearchThirdPartyFilter = {
|
|
|
102989
103614
|
excludeSubtypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
102990
103615
|
integrations?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
102991
103616
|
labels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
103617
|
+
lastUpdatedBy?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
102992
103618
|
participants?: InputMaybe<SearchParticipants>;
|
|
102993
103619
|
range?: InputMaybe<Array<InputMaybe<SearchThirdPartyRangeFilter>>>;
|
|
102994
103620
|
subtypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
@@ -123174,7 +123800,9 @@ export declare type SpfAskActivityUpdatedDocument = SpfAskActivityUpdatedValue &
|
|
|
123174
123800
|
export declare type SpfAskActivityUpdatedImpactedWork = SpfAskActivityUpdatedValue & {
|
|
123175
123801
|
__typename?: 'SpfAskActivityUpdatedImpactedWork';
|
|
123176
123802
|
attribute: SpfAskActivityAttribute;
|
|
123803
|
+
newImpactedWork?: Maybe<SpfImpactedWork>;
|
|
123177
123804
|
newValue?: Maybe<Scalars['String']['output']>;
|
|
123805
|
+
oldImpactedWork?: Maybe<SpfImpactedWork>;
|
|
123178
123806
|
oldValue?: Maybe<Scalars['String']['output']>;
|
|
123179
123807
|
};
|
|
123180
123808
|
export declare type SpfAskActivityUpdatedLink = SpfAskActivityUpdatedValue & {
|
|
@@ -124097,6 +124725,15 @@ export declare type StakeholderCommsPreferencesInput = {
|
|
|
124097
124725
|
sms?: InputMaybe<StakeholderCommsModePreferenceInput>;
|
|
124098
124726
|
webhook?: InputMaybe<StakeholderCommsModePreferenceInput>;
|
|
124099
124727
|
};
|
|
124728
|
+
export declare type StakeholderCommsResendInviteInput = {
|
|
124729
|
+
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
124730
|
+
emailId: Scalars['String']['input'];
|
|
124731
|
+
};
|
|
124732
|
+
export declare type StakeholderCommsResendInviteResponse = {
|
|
124733
|
+
__typename?: 'StakeholderCommsResendInviteResponse';
|
|
124734
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
124735
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
124736
|
+
};
|
|
124100
124737
|
export declare enum StakeholderCommsSearchField {
|
|
124101
124738
|
EmailId = "EMAIL_ID"
|
|
124102
124739
|
}
|
|
@@ -124477,6 +125114,7 @@ export declare type SubjectsByTypeUserWithRestrictionsArgs = {
|
|
|
124477
125114
|
export declare type Subscription = {
|
|
124478
125115
|
__typename?: 'Subscription';
|
|
124479
125116
|
confluence_onContentModified?: Maybe<ConfluenceContentModified>;
|
|
125117
|
+
convoai_onAgentSessionUpdate?: Maybe<ConvoAiAgentSessionUpdate>;
|
|
124480
125118
|
devOps?: Maybe<AriGraphSubscriptions>;
|
|
124481
125119
|
devai_onAutodevJobLogGroupsUpdated?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
124482
125120
|
devai_onAutodevJobLogsListUpdated?: Maybe<DevAiAutodevLogConnection>;
|
|
@@ -124502,6 +125140,10 @@ export declare type Subscription = {
|
|
|
124502
125140
|
export declare type SubscriptionConfluence_OnContentModifiedArgs = {
|
|
124503
125141
|
id: Scalars['ID']['input'];
|
|
124504
125142
|
};
|
|
125143
|
+
export declare type SubscriptionConvoai_OnAgentSessionUpdateArgs = {
|
|
125144
|
+
cloudId: Scalars['ID']['input'];
|
|
125145
|
+
conversationId: Scalars['ID']['input'];
|
|
125146
|
+
};
|
|
124505
125147
|
export declare type SubscriptionDevai_OnAutodevJobLogGroupsUpdatedArgs = {
|
|
124506
125148
|
cloudId: Scalars['ID']['input'];
|
|
124507
125149
|
jobId: Scalars['ID']['input'];
|