@forge/cli-shared 8.7.0-next.3 → 8.7.0-next.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -0
- package/out/graphql/graphql-types.d.ts +1555 -67
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +129 -30
- 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
|
@@ -398,6 +398,22 @@ export declare type AvpCreateChartPayload = Payload & {
|
|
|
398
398
|
errors?: Maybe<Array<MutationError>>;
|
|
399
399
|
success: Scalars['Boolean']['output'];
|
|
400
400
|
};
|
|
401
|
+
export declare type AvpCreateDashboardFilterInput = {
|
|
402
|
+
dashboardAri: Scalars['ID']['input'];
|
|
403
|
+
filter: AvpDashboardFilter;
|
|
404
|
+
};
|
|
405
|
+
export declare type AvpCreateDashboardFilterPayload = Payload & {
|
|
406
|
+
__typename?: 'AVPCreateDashboardFilterPayload';
|
|
407
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
408
|
+
errors?: Maybe<Array<MutationError>>;
|
|
409
|
+
filter?: Maybe<AvpCreateDashboardFilterResponse>;
|
|
410
|
+
success: Scalars['Boolean']['output'];
|
|
411
|
+
};
|
|
412
|
+
export declare type AvpCreateDashboardFilterResponse = {
|
|
413
|
+
__typename?: 'AVPCreateDashboardFilterResponse';
|
|
414
|
+
chart?: Maybe<AvpChart>;
|
|
415
|
+
envVar?: Maybe<AvpEnvVarWithChart>;
|
|
416
|
+
};
|
|
401
417
|
export declare type AvpCreateDashboardInput = {
|
|
402
418
|
cloudId: Scalars['ID']['input'];
|
|
403
419
|
dashboard: AvpDashboardInput;
|
|
@@ -451,6 +467,12 @@ export declare type AvpDashboardCanvasLayoutRow = {
|
|
|
451
467
|
height?: Maybe<AvpCanvasRowHeight>;
|
|
452
468
|
id?: Maybe<Scalars['ID']['output']>;
|
|
453
469
|
};
|
|
470
|
+
export declare type AvpDashboardFilter = {
|
|
471
|
+
chartType?: InputMaybe<Scalars['String']['input']>;
|
|
472
|
+
defaultValues?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
473
|
+
hotTierFilterConfig?: InputMaybe<AvpHotTierFilterConfigInput>;
|
|
474
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
475
|
+
};
|
|
454
476
|
export declare type AvpDashboardInput = {
|
|
455
477
|
category?: InputMaybe<Scalars['String']['input']>;
|
|
456
478
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -518,6 +540,7 @@ export declare type AvpEnvVar = {
|
|
|
518
540
|
defaultValues?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
519
541
|
hotTierFilterConfig?: Maybe<Array<Maybe<AvpHotTierFilterConfig>>>;
|
|
520
542
|
id?: Maybe<Scalars['ID']['output']>;
|
|
543
|
+
metadata?: Maybe<AvpEnvVarMetadata>;
|
|
521
544
|
name?: Maybe<Scalars['String']['output']>;
|
|
522
545
|
operator?: Maybe<Scalars['String']['output']>;
|
|
523
546
|
};
|
|
@@ -530,6 +553,21 @@ export declare enum AvpEnvVarDataType {
|
|
|
530
553
|
NumberRange = "NUMBER_RANGE",
|
|
531
554
|
Text = "TEXT"
|
|
532
555
|
}
|
|
556
|
+
export declare type AvpEnvVarMetadata = {
|
|
557
|
+
__typename?: 'AVPEnvVarMetadata';
|
|
558
|
+
jsonValue?: Maybe<Scalars['String']['output']>;
|
|
559
|
+
};
|
|
560
|
+
export declare type AvpEnvVarWithChart = {
|
|
561
|
+
__typename?: 'AVPEnvVarWithChart';
|
|
562
|
+
chart?: Maybe<AvpChart>;
|
|
563
|
+
dataType?: Maybe<AvpEnvVarDataType>;
|
|
564
|
+
defaultValues?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
565
|
+
hotTierFilterConfig?: Maybe<Array<Maybe<AvpHotTierFilterConfig>>>;
|
|
566
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
567
|
+
metadata?: Maybe<AvpEnvVarMetadata>;
|
|
568
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
569
|
+
operator?: Maybe<Scalars['String']['output']>;
|
|
570
|
+
};
|
|
533
571
|
export declare type AvpHotTierFilterConfig = {
|
|
534
572
|
__typename?: 'AVPHotTierFilterConfig';
|
|
535
573
|
datasourceLocator?: Maybe<AvpDatasourceLocator>;
|
|
@@ -537,6 +575,12 @@ export declare type AvpHotTierFilterConfig = {
|
|
|
537
575
|
product?: Maybe<Scalars['String']['output']>;
|
|
538
576
|
semanticModel?: Maybe<Scalars['String']['output']>;
|
|
539
577
|
};
|
|
578
|
+
export declare type AvpHotTierFilterConfigInput = {
|
|
579
|
+
datasourceLocator?: InputMaybe<AvpDatasourceLocatorInput>;
|
|
580
|
+
dimension?: InputMaybe<Scalars['String']['input']>;
|
|
581
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
582
|
+
semanticModel?: InputMaybe<Scalars['String']['input']>;
|
|
583
|
+
};
|
|
540
584
|
export declare type AvpMetricsConfiguration = {
|
|
541
585
|
__typename?: 'AVPMetricsConfiguration';
|
|
542
586
|
dimensions?: Maybe<Array<AvpMetricsDimension>>;
|
|
@@ -1711,7 +1755,7 @@ export declare type AdminInvitePolicyNotificationSettingsInput = {
|
|
|
1711
1755
|
};
|
|
1712
1756
|
export declare type AdminInviteResponsePayload = {
|
|
1713
1757
|
__typename?: 'AdminInviteResponsePayload';
|
|
1714
|
-
errors?: Maybe<Array<
|
|
1758
|
+
errors?: Maybe<Array<MutationError>>;
|
|
1715
1759
|
inviteResults?: Maybe<Array<AdminInviteResult>>;
|
|
1716
1760
|
success: Scalars['Boolean']['output'];
|
|
1717
1761
|
};
|
|
@@ -1881,15 +1925,16 @@ export declare type AdminSearchGroupInput = {
|
|
|
1881
1925
|
export declare type AdminSearchUserInput = {
|
|
1882
1926
|
accountIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1883
1927
|
accountStatus?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1884
|
-
claimStatus?: InputMaybe<
|
|
1928
|
+
claimStatus?: InputMaybe<Scalars['String']['input']>;
|
|
1885
1929
|
directoryIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1930
|
+
emailDomains?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1886
1931
|
groupIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1887
1932
|
membershipStatus?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1888
|
-
orgId: Scalars['String']['input'];
|
|
1889
1933
|
resourceIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1890
1934
|
roleIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1891
1935
|
searchTerm?: InputMaybe<Scalars['String']['input']>;
|
|
1892
1936
|
sortBy?: InputMaybe<Array<AdminSortBy>>;
|
|
1937
|
+
status?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1893
1938
|
};
|
|
1894
1939
|
export declare type AdminSearchWorkspacesInput = {
|
|
1895
1940
|
attributes?: InputMaybe<AdminSearchWorkspacesInputAttributes>;
|
|
@@ -2032,6 +2077,7 @@ export declare type AdminUsageInfo = {
|
|
|
2032
2077
|
};
|
|
2033
2078
|
export declare type AdminUser = {
|
|
2034
2079
|
__typename?: 'AdminUser';
|
|
2080
|
+
accountStatus: Scalars['String']['output'];
|
|
2035
2081
|
addedAt?: Maybe<Scalars['String']['output']>;
|
|
2036
2082
|
avatar?: Maybe<Scalars['String']['output']>;
|
|
2037
2083
|
claimStatus: Scalars['String']['output'];
|
|
@@ -2043,7 +2089,9 @@ export declare type AdminUser = {
|
|
|
2043
2089
|
location?: Maybe<Scalars['String']['output']>;
|
|
2044
2090
|
membershipStatus?: Maybe<Scalars['String']['output']>;
|
|
2045
2091
|
name: Scalars['String']['output'];
|
|
2092
|
+
nickname?: Maybe<Scalars['String']['output']>;
|
|
2046
2093
|
resourceCounts?: Maybe<AdminResourceCounts>;
|
|
2094
|
+
roles?: Maybe<Array<Scalars['String']['output']>>;
|
|
2047
2095
|
status: Scalars['String']['output'];
|
|
2048
2096
|
title?: Maybe<Scalars['String']['output']>;
|
|
2049
2097
|
verified: Scalars['Boolean']['output'];
|
|
@@ -2335,7 +2383,47 @@ export declare type AgentStudioAssistantScenario = AgentStudioScenario & Node &
|
|
|
2335
2383
|
tools?: Maybe<Array<AgentStudioTool>>;
|
|
2336
2384
|
};
|
|
2337
2385
|
export declare type AgentStudioAuthoringTeamInput = {
|
|
2338
|
-
|
|
2386
|
+
authoringTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
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'];
|
|
2339
2427
|
};
|
|
2340
2428
|
export declare type AgentStudioChannel = {
|
|
2341
2429
|
connected?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -2405,6 +2493,20 @@ export declare enum AgentStudioCreateAgentPermissionMode {
|
|
|
2405
2493
|
NoOne = "NO_ONE",
|
|
2406
2494
|
Selected = "SELECTED"
|
|
2407
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
|
+
};
|
|
2408
2510
|
export declare type AgentStudioCreateScenarioInput = {
|
|
2409
2511
|
actions?: InputMaybe<Array<AgentStudioActionInput>>;
|
|
2410
2512
|
containerId: Scalars['ID']['input'];
|
|
@@ -2422,12 +2524,38 @@ export declare type AgentStudioCreateScenarioPayload = Payload & {
|
|
|
2422
2524
|
scenario?: Maybe<AgentStudioScenario>;
|
|
2423
2525
|
success: Scalars['Boolean']['output'];
|
|
2424
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
|
+
}
|
|
2425
2548
|
export declare type AgentStudioDeleteAgentPayload = Payload & {
|
|
2426
2549
|
__typename?: 'AgentStudioDeleteAgentPayload';
|
|
2427
2550
|
agent?: Maybe<AgentStudioAgent>;
|
|
2428
2551
|
errors?: Maybe<Array<MutationError>>;
|
|
2429
2552
|
success: Scalars['Boolean']['output'];
|
|
2430
2553
|
};
|
|
2554
|
+
export declare type AgentStudioDeleteDatasetItemPayload = Payload & {
|
|
2555
|
+
__typename?: 'AgentStudioDeleteDatasetItemPayload';
|
|
2556
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2557
|
+
success: Scalars['Boolean']['output'];
|
|
2558
|
+
};
|
|
2431
2559
|
export declare type AgentStudioDeleteScenarioPayload = Payload & {
|
|
2432
2560
|
__typename?: 'AgentStudioDeleteScenarioPayload';
|
|
2433
2561
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -2439,6 +2567,39 @@ export declare type AgentStudioEmailChannel = AgentStudioChannel & {
|
|
|
2439
2567
|
connected?: Maybe<Scalars['Boolean']['output']>;
|
|
2440
2568
|
incomingEmails?: Maybe<Array<AgentStudioIncomingEmail>>;
|
|
2441
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
|
+
};
|
|
2442
2603
|
export declare type AgentStudioHelpCenter = {
|
|
2443
2604
|
__typename?: 'AgentStudioHelpCenter';
|
|
2444
2605
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -2464,6 +2625,13 @@ export declare type AgentStudioJiraKnowledgeFilter = {
|
|
|
2464
2625
|
export declare type AgentStudioJiraKnowledgeFilterInput = {
|
|
2465
2626
|
projectFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2466
2627
|
};
|
|
2628
|
+
export declare enum AgentStudioJobRunStatus {
|
|
2629
|
+
Cancelled = "CANCELLED",
|
|
2630
|
+
Completed = "COMPLETED",
|
|
2631
|
+
Failed = "FAILED",
|
|
2632
|
+
Pending = "PENDING",
|
|
2633
|
+
Running = "RUNNING"
|
|
2634
|
+
}
|
|
2467
2635
|
export declare type AgentStudioJsmKnowledgeFilter = {
|
|
2468
2636
|
__typename?: 'AgentStudioJsmKnowledgeFilter';
|
|
2469
2637
|
jsmProjectFilter?: Maybe<Array<Scalars['ID']['output']>>;
|
|
@@ -2471,6 +2639,10 @@ export declare type AgentStudioJsmKnowledgeFilter = {
|
|
|
2471
2639
|
export declare type AgentStudioJsmKnowledgeFilterInput = {
|
|
2472
2640
|
jsmProjectFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2473
2641
|
};
|
|
2642
|
+
export declare enum AgentStudioJudgementDecision {
|
|
2643
|
+
Successful = "SUCCESSFUL",
|
|
2644
|
+
Unsuccessful = "UNSUCCESSFUL"
|
|
2645
|
+
}
|
|
2474
2646
|
export declare type AgentStudioKnowledgeConfiguration = {
|
|
2475
2647
|
__typename?: 'AgentStudioKnowledgeConfiguration';
|
|
2476
2648
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -2504,6 +2676,11 @@ export declare type AgentStudioPortalChannel = AgentStudioChannel & {
|
|
|
2504
2676
|
connected?: Maybe<Scalars['Boolean']['output']>;
|
|
2505
2677
|
url?: Maybe<Scalars['String']['output']>;
|
|
2506
2678
|
};
|
|
2679
|
+
export declare enum AgentStudioProductType {
|
|
2680
|
+
Csm = "CSM",
|
|
2681
|
+
RovoAgents = "ROVO_AGENTS",
|
|
2682
|
+
RovoServiceAgents = "ROVO_SERVICE_AGENTS"
|
|
2683
|
+
}
|
|
2507
2684
|
export declare type AgentStudioRemoveGroupsFromCreatePermissionPayload = Payload & {
|
|
2508
2685
|
__typename?: 'AgentStudioRemoveGroupsFromCreatePermissionPayload';
|
|
2509
2686
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -2784,6 +2961,11 @@ export declare type AgentStudioUpdateScenarioPayload = Payload & {
|
|
|
2784
2961
|
scenarioList?: Maybe<Array<Maybe<AgentStudioScenario>>>;
|
|
2785
2962
|
success: Scalars['Boolean']['output'];
|
|
2786
2963
|
};
|
|
2964
|
+
export declare type AgentStudioUploadBatchEvaluationDatasetInput = {
|
|
2965
|
+
datasetName: Scalars['String']['input'];
|
|
2966
|
+
file: Scalars['Upload']['input'];
|
|
2967
|
+
projectId: Scalars['String']['input'];
|
|
2968
|
+
};
|
|
2787
2969
|
export declare type AgentStudioWidget = {
|
|
2788
2970
|
__typename?: 'AgentStudioWidget';
|
|
2789
2971
|
agent?: Maybe<AgentStudioAgentResult>;
|
|
@@ -2792,6 +2974,14 @@ export declare type AgentStudioWidget = {
|
|
|
2792
2974
|
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
2793
2975
|
};
|
|
2794
2976
|
export declare type AgentStudioWidgetByContainerAriResult = AgentStudioWidget | QueryError;
|
|
2977
|
+
export declare type AgentStudioWidgetContainer = JiraProject;
|
|
2978
|
+
export declare type AgentStudioWidgetContainers = {
|
|
2979
|
+
__typename?: 'AgentStudioWidgetContainers';
|
|
2980
|
+
containerAris: Array<Scalars['ID']['output']>;
|
|
2981
|
+
containers?: Maybe<Array<Maybe<AgentStudioWidgetContainer>>>;
|
|
2982
|
+
totalCount: Scalars['Int']['output'];
|
|
2983
|
+
};
|
|
2984
|
+
export declare type AgentStudioWidgetContainersByAgentIdResult = AgentStudioWidgetContainers | QueryError;
|
|
2795
2985
|
export declare enum AiCoreApiQuestionType {
|
|
2796
2986
|
DraftDocument = "DRAFT_DOCUMENT",
|
|
2797
2987
|
KnowledgeBase = "KNOWLEDGE_BASE"
|
|
@@ -3160,6 +3350,28 @@ export declare enum AppContributorRole {
|
|
|
3160
3350
|
Viewer = "VIEWER",
|
|
3161
3351
|
ViewerAdvanced = "VIEWER_ADVANCED"
|
|
3162
3352
|
}
|
|
3353
|
+
export declare type AppCustomScope = {
|
|
3354
|
+
__typename?: 'AppCustomScope';
|
|
3355
|
+
description: Scalars['String']['output'];
|
|
3356
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
3357
|
+
name: Scalars['String']['output'];
|
|
3358
|
+
};
|
|
3359
|
+
export declare type AppCustomScopeConnection = {
|
|
3360
|
+
__typename?: 'AppCustomScopeConnection';
|
|
3361
|
+
edges?: Maybe<Array<AppCustomScopeEdge>>;
|
|
3362
|
+
nodes?: Maybe<Array<AppCustomScope>>;
|
|
3363
|
+
pageInfo: PageInfo;
|
|
3364
|
+
};
|
|
3365
|
+
export declare type AppCustomScopeEdge = {
|
|
3366
|
+
__typename?: 'AppCustomScopeEdge';
|
|
3367
|
+
cursor: Scalars['String']['output'];
|
|
3368
|
+
node: AppCustomScope;
|
|
3369
|
+
};
|
|
3370
|
+
export declare type AppCustomScopeSpec = {
|
|
3371
|
+
description: Scalars['String']['input'];
|
|
3372
|
+
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
3373
|
+
name: Scalars['String']['input'];
|
|
3374
|
+
};
|
|
3163
3375
|
export declare type AppDeployment = {
|
|
3164
3376
|
__typename?: 'AppDeployment';
|
|
3165
3377
|
appId: Scalars['ID']['output'];
|
|
@@ -4498,6 +4710,73 @@ export declare type AssetsDmDataSource = {
|
|
|
4498
4710
|
noOfRecords?: Maybe<Scalars['Int']['output']>;
|
|
4499
4711
|
statusText?: Maybe<Scalars['String']['output']>;
|
|
4500
4712
|
};
|
|
4713
|
+
export declare type AssetsDmDataSourceCleansingCleansingExecutive = {
|
|
4714
|
+
__typename?: 'AssetsDMDataSourceCleansingCleansingExecutive';
|
|
4715
|
+
cleansingExecutiveId: Scalars['ID']['output'];
|
|
4716
|
+
data: Array<AssetsDmDataSourceCleansingCleansingExecutiveData>;
|
|
4717
|
+
dataSourceId: Scalars['ID']['output'];
|
|
4718
|
+
endTime: Scalars['String']['output'];
|
|
4719
|
+
excluded: Scalars['Int']['output'];
|
|
4720
|
+
filtered: Scalars['Int']['output'];
|
|
4721
|
+
hasError: Scalars['Boolean']['output'];
|
|
4722
|
+
importable: Scalars['Int']['output'];
|
|
4723
|
+
isStoppedByShutdown: Scalars['Boolean']['output'];
|
|
4724
|
+
message: Scalars['String']['output'];
|
|
4725
|
+
objectId: Scalars['ID']['output'];
|
|
4726
|
+
startTime: Scalars['String']['output'];
|
|
4727
|
+
step: Scalars['Int']['output'];
|
|
4728
|
+
tenantId: Scalars['ID']['output'];
|
|
4729
|
+
totalRecords: Scalars['Int']['output'];
|
|
4730
|
+
};
|
|
4731
|
+
export declare type AssetsDmDataSourceCleansingCleansingExecutiveData = {
|
|
4732
|
+
__typename?: 'AssetsDMDataSourceCleansingCleansingExecutiveData';
|
|
4733
|
+
affectedRecordCount?: Maybe<Scalars['Int']['output']>;
|
|
4734
|
+
cleansingExecutiveId: Scalars['ID']['output'];
|
|
4735
|
+
dataSourceId: Scalars['ID']['output'];
|
|
4736
|
+
endTime?: Maybe<Scalars['String']['output']>;
|
|
4737
|
+
excluded: Scalars['Int']['output'];
|
|
4738
|
+
filtered: Scalars['Int']['output'];
|
|
4739
|
+
hasError: Scalars['Boolean']['output'];
|
|
4740
|
+
importable: Scalars['Int']['output'];
|
|
4741
|
+
isStoppedByShutdown: Scalars['Boolean']['output'];
|
|
4742
|
+
message: Scalars['String']['output'];
|
|
4743
|
+
objectId: Scalars['ID']['output'];
|
|
4744
|
+
preRecordCount?: Maybe<Scalars['Int']['output']>;
|
|
4745
|
+
processedFunctionId?: Maybe<Scalars['ID']['output']>;
|
|
4746
|
+
startTime?: Maybe<Scalars['String']['output']>;
|
|
4747
|
+
step: Scalars['Int']['output'];
|
|
4748
|
+
stepDuration: Scalars['String']['output'];
|
|
4749
|
+
tenantId: Scalars['ID']['output'];
|
|
4750
|
+
totalRecords: Scalars['Int']['output'];
|
|
4751
|
+
};
|
|
4752
|
+
export declare type AssetsDmDataSourceCleansingDataSourceTypeInfo = {
|
|
4753
|
+
__typename?: 'AssetsDMDataSourceCleansingDataSourceTypeInfo';
|
|
4754
|
+
dataSourceTypeId: Scalars['ID']['output'];
|
|
4755
|
+
defaultGap: Scalars['Int']['output'];
|
|
4756
|
+
name: Scalars['String']['output'];
|
|
4757
|
+
tenantId: Scalars['ID']['output'];
|
|
4758
|
+
};
|
|
4759
|
+
export declare type AssetsDmDataSourceCleansingObjectAttributeMappingFunction = {
|
|
4760
|
+
__typename?: 'AssetsDMDataSourceCleansingObjectAttributeMappingFunction';
|
|
4761
|
+
dataSourceId: Scalars['ID']['output'];
|
|
4762
|
+
defFunction: AssetsDmDataSourceCleansingRuleDefFunction;
|
|
4763
|
+
defFunctionId: Scalars['ID']['output'];
|
|
4764
|
+
enabled: Scalars['Boolean']['output'];
|
|
4765
|
+
functionId: Scalars['ID']['output'];
|
|
4766
|
+
functionParameters: Array<AssetsDmDataSourceCleansingRuleFunctionParameter>;
|
|
4767
|
+
priority: Scalars['Int']['output'];
|
|
4768
|
+
reason?: Maybe<AssetsDmDataSourceCleansingReason>;
|
|
4769
|
+
reasonId: Scalars['ID']['output'];
|
|
4770
|
+
};
|
|
4771
|
+
export declare type AssetsDmDataSourceCleansingObjectInfo = {
|
|
4772
|
+
__typename?: 'AssetsDMDataSourceCleansingObjectInfo';
|
|
4773
|
+
allowDuplicates: Scalars['Boolean']['output'];
|
|
4774
|
+
computedIssuesCount: Scalars['Int']['output'];
|
|
4775
|
+
name: Scalars['String']['output'];
|
|
4776
|
+
objectId: Scalars['ID']['output'];
|
|
4777
|
+
tenantId: Scalars['ID']['output'];
|
|
4778
|
+
uniqueRecordsCount: Scalars['Int']['output'];
|
|
4779
|
+
};
|
|
4501
4780
|
export declare type AssetsDmDataSourceCleansingReason = {
|
|
4502
4781
|
__typename?: 'AssetsDMDataSourceCleansingReason';
|
|
4503
4782
|
reason: Scalars['String']['output'];
|
|
@@ -4603,6 +4882,11 @@ export declare type AssetsDmDataSourceCleansingRulesResponse = {
|
|
|
4603
4882
|
defaultCleansingRules?: Maybe<Array<AssetsDmDataSourceCleansingRuleDefFunction>>;
|
|
4604
4883
|
reasons?: Maybe<Array<AssetsDmDataSourceCleansingReason>>;
|
|
4605
4884
|
};
|
|
4885
|
+
export declare type AssetsDmDataSourceCleansingRulesRunCleanseResponse = {
|
|
4886
|
+
__typename?: 'AssetsDMDataSourceCleansingRulesRunCleanseResponse';
|
|
4887
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
4888
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
4889
|
+
};
|
|
4606
4890
|
export declare type AssetsDmDataSourceConfig = {
|
|
4607
4891
|
__typename?: 'AssetsDMDataSourceConfig';
|
|
4608
4892
|
adapterType?: Maybe<Scalars['String']['output']>;
|
|
@@ -4851,6 +5135,32 @@ export declare type AssetsDmGenerateAdapterTokenResponse = {
|
|
|
4851
5135
|
success: Scalars['Boolean']['output'];
|
|
4852
5136
|
token?: Maybe<Scalars['String']['output']>;
|
|
4853
5137
|
};
|
|
5138
|
+
export declare type AssetsDmGetDataSourceForCleansingResponse = {
|
|
5139
|
+
__typename?: 'AssetsDMGetDataSourceForCleansingResponse';
|
|
5140
|
+
cleansingExecutives?: Maybe<Array<AssetsDmDataSourceCleansingCleansingExecutive>>;
|
|
5141
|
+
dataSourceId: Scalars['ID']['output'];
|
|
5142
|
+
dataSourceType: AssetsDmDataSourceCleansingDataSourceTypeInfo;
|
|
5143
|
+
dataSourceTypeId: Scalars['ID']['output'];
|
|
5144
|
+
enabled: Scalars['Boolean']['output'];
|
|
5145
|
+
functions: Array<AssetsDmDataSourceCleansingObjectAttributeMappingFunction>;
|
|
5146
|
+
lastCleansedDate: Scalars['String']['output'];
|
|
5147
|
+
lastFunctionsChangedDate: Scalars['String']['output'];
|
|
5148
|
+
lastImportedDated: Scalars['String']['output'];
|
|
5149
|
+
lastMappingsChangedDate: Scalars['String']['output'];
|
|
5150
|
+
lastSuccessfulCleansedDate: Scalars['String']['output'];
|
|
5151
|
+
lastSuccessfulImportedDate: Scalars['String']['output'];
|
|
5152
|
+
name: Scalars['String']['output'];
|
|
5153
|
+
object: AssetsDmDataSourceCleansingObjectInfo;
|
|
5154
|
+
objectId: Scalars['ID']['output'];
|
|
5155
|
+
postCleansingCount: Scalars['Int']['output'];
|
|
5156
|
+
preCleansingCount: Scalars['Int']['output'];
|
|
5157
|
+
priority: Scalars['Int']['output'];
|
|
5158
|
+
refreshGap: Scalars['Int']['output'];
|
|
5159
|
+
status: Scalars['Int']['output'];
|
|
5160
|
+
tableId: Scalars['ID']['output'];
|
|
5161
|
+
tableName: Scalars['String']['output'];
|
|
5162
|
+
tenantId: Scalars['ID']['output'];
|
|
5163
|
+
};
|
|
4854
5164
|
export declare type AssetsDmMappedColumn = {
|
|
4855
5165
|
__typename?: 'AssetsDMMappedColumn';
|
|
4856
5166
|
columnMappingId: Scalars['ID']['output'];
|
|
@@ -4900,6 +5210,15 @@ export declare type AssetsDmObjectTag = {
|
|
|
4900
5210
|
tagCode: Scalars['Int']['output'];
|
|
4901
5211
|
tagId: Scalars['ID']['output'];
|
|
4902
5212
|
};
|
|
5213
|
+
export declare type AssetsDmObjectTagAssociateInput = {
|
|
5214
|
+
objectItemId: Scalars['ID']['input'];
|
|
5215
|
+
tagId: Scalars['ID']['input'];
|
|
5216
|
+
};
|
|
5217
|
+
export declare type AssetsDmObjectTagAssociateResponse = {
|
|
5218
|
+
__typename?: 'AssetsDMObjectTagAssociateResponse';
|
|
5219
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
5220
|
+
message: Scalars['String']['output'];
|
|
5221
|
+
};
|
|
4903
5222
|
export declare type AssetsDmObjectTagCreateInput = {
|
|
4904
5223
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
4905
5224
|
name: Scalars['String']['input'];
|
|
@@ -4915,6 +5234,15 @@ export declare type AssetsDmObjectTagDeleteResponse = {
|
|
|
4915
5234
|
isSuccessful: Scalars['Boolean']['output'];
|
|
4916
5235
|
message: Scalars['String']['output'];
|
|
4917
5236
|
};
|
|
5237
|
+
export declare type AssetsDmObjectTagDissociateInput = {
|
|
5238
|
+
primaryKeyValue: Scalars['String']['input'];
|
|
5239
|
+
tagId: Scalars['ID']['input'];
|
|
5240
|
+
};
|
|
5241
|
+
export declare type AssetsDmObjectTagDissociateResponse = {
|
|
5242
|
+
__typename?: 'AssetsDMObjectTagDissociateResponse';
|
|
5243
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
5244
|
+
message: Scalars['String']['output'];
|
|
5245
|
+
};
|
|
4918
5246
|
export declare type AssetsDmObjectTagEditInput = {
|
|
4919
5247
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
4920
5248
|
name: Scalars['String']['input'];
|
|
@@ -6879,6 +7207,7 @@ export declare type CcpLicenseError = {
|
|
|
6879
7207
|
message?: Maybe<Scalars['String']['output']>;
|
|
6880
7208
|
};
|
|
6881
7209
|
export declare enum CcpLicenseErrorCode {
|
|
7210
|
+
ActiveLicenseNotFound = "ACTIVE_LICENSE_NOT_FOUND",
|
|
6882
7211
|
InternalError = "INTERNAL_ERROR",
|
|
6883
7212
|
LicenseNotFound = "LICENSE_NOT_FOUND",
|
|
6884
7213
|
ServerIdMissing = "SERVER_ID_MISSING"
|
|
@@ -14549,6 +14878,12 @@ export declare type ConfluenceCalendarEventTypeReminder = {
|
|
|
14549
14878
|
isCustomEventType: Scalars['Boolean']['output'];
|
|
14550
14879
|
periodInMins: Scalars['Int']['output'];
|
|
14551
14880
|
};
|
|
14881
|
+
export declare type ConfluenceCalendarFieldMutationErrorExtension = MutationErrorExtension & {
|
|
14882
|
+
__typename?: 'ConfluenceCalendarFieldMutationErrorExtension';
|
|
14883
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
14884
|
+
field?: Maybe<Scalars['String']['output']>;
|
|
14885
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
14886
|
+
};
|
|
14552
14887
|
export declare type ConfluenceCalendarJiraDateField = {
|
|
14553
14888
|
__typename?: 'ConfluenceCalendarJiraDateField';
|
|
14554
14889
|
isCustomField: Scalars['Boolean']['output'];
|
|
@@ -15043,6 +15378,21 @@ export declare type ConfluenceCreateBlogPostPropertyPayload = Payload & {
|
|
|
15043
15378
|
errors?: Maybe<Array<MutationError>>;
|
|
15044
15379
|
success: Scalars['Boolean']['output'];
|
|
15045
15380
|
};
|
|
15381
|
+
export declare type ConfluenceCreateCalendarInput = {
|
|
15382
|
+
color?: InputMaybe<Scalars['String']['input']>;
|
|
15383
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
15384
|
+
location?: InputMaybe<Scalars['String']['input']>;
|
|
15385
|
+
name: Scalars['String']['input'];
|
|
15386
|
+
spaceKey: Scalars['String']['input'];
|
|
15387
|
+
timeZoneId: Scalars['String']['input'];
|
|
15388
|
+
type: Scalars['String']['input'];
|
|
15389
|
+
};
|
|
15390
|
+
export declare type ConfluenceCreateCalendarPayload = Payload & {
|
|
15391
|
+
__typename?: 'ConfluenceCreateCalendarPayload';
|
|
15392
|
+
calendar?: Maybe<ConfluenceCalendar>;
|
|
15393
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15394
|
+
success: Scalars['Boolean']['output'];
|
|
15395
|
+
};
|
|
15046
15396
|
export declare type ConfluenceCreateCommentOnAnswerInput = {
|
|
15047
15397
|
answerId: Scalars['ID']['input'];
|
|
15048
15398
|
body: ConfluenceContentBodyInput;
|
|
@@ -15248,7 +15598,7 @@ export declare type ConfluenceCustomContentPermissionGroupPrincipal = Confluence
|
|
|
15248
15598
|
__typename?: 'ConfluenceCustomContentPermissionGroupPrincipal';
|
|
15249
15599
|
displayName: Scalars['String']['output'];
|
|
15250
15600
|
principalId: Scalars['ID']['output'];
|
|
15251
|
-
usageType
|
|
15601
|
+
usageType?: Maybe<ConfluenceGroupUsageType>;
|
|
15252
15602
|
};
|
|
15253
15603
|
export declare type ConfluenceCustomContentPermissionGuestPrincipal = ConfluenceCustomContentPermissionPrincipal & {
|
|
15254
15604
|
__typename?: 'ConfluenceCustomContentPermissionGuestPrincipal';
|
|
@@ -15793,6 +16143,7 @@ export declare type ConfluenceForgeExtensionDataSpace = {
|
|
|
15793
16143
|
key?: InputMaybe<Scalars['String']['input']>;
|
|
15794
16144
|
};
|
|
15795
16145
|
export declare type ConfluenceForgePayloadContext = {
|
|
16146
|
+
appVersion?: InputMaybe<Scalars['String']['input']>;
|
|
15796
16147
|
environmentId?: InputMaybe<Scalars['String']['input']>;
|
|
15797
16148
|
environmentType?: InputMaybe<Scalars['String']['input']>;
|
|
15798
16149
|
extension: ConfluenceForgeExtensionData;
|
|
@@ -16165,6 +16516,21 @@ export declare type ConfluenceMacro = {
|
|
|
16165
16516
|
count?: Maybe<Scalars['Int']['output']>;
|
|
16166
16517
|
key?: Maybe<Scalars['String']['output']>;
|
|
16167
16518
|
};
|
|
16519
|
+
export declare type ConfluenceMacroDefinitionInput = {
|
|
16520
|
+
body?: InputMaybe<Scalars['String']['input']>;
|
|
16521
|
+
defaultParameterValue?: InputMaybe<Scalars['String']['input']>;
|
|
16522
|
+
name: Scalars['String']['input'];
|
|
16523
|
+
params?: InputMaybe<Array<InputMaybe<ConfluenceMacroParameterInput>>>;
|
|
16524
|
+
schemaVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
16525
|
+
};
|
|
16526
|
+
export declare type ConfluenceMacroParameterInput = {
|
|
16527
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
16528
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
16529
|
+
};
|
|
16530
|
+
export declare type ConfluenceMacroPlaceholderAdf = {
|
|
16531
|
+
__typename?: 'ConfluenceMacroPlaceholderAdf';
|
|
16532
|
+
adf?: Maybe<Scalars['String']['output']>;
|
|
16533
|
+
};
|
|
16168
16534
|
export declare type ConfluenceMacroUsage = {
|
|
16169
16535
|
__typename?: 'ConfluenceMacroUsage';
|
|
16170
16536
|
unusedPluginMacros?: Maybe<Array<Maybe<ConfluenceUnusedPluginMacro>>>;
|
|
@@ -16524,9 +16890,9 @@ export declare type ConfluenceNbmRetryScanLongTaskInput = {
|
|
|
16524
16890
|
export declare type ConfluenceNbmRetryScanLongTaskPayload = {
|
|
16525
16891
|
__typename?: 'ConfluenceNbmRetryScanLongTaskPayload';
|
|
16526
16892
|
errors?: Maybe<Array<MutationError>>;
|
|
16527
|
-
scanId: Scalars['
|
|
16893
|
+
scanId: Scalars['ID']['output'];
|
|
16528
16894
|
success: Scalars['Boolean']['output'];
|
|
16529
|
-
taskId
|
|
16895
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
16530
16896
|
};
|
|
16531
16897
|
export declare type ConfluenceNbmScanCategory = {
|
|
16532
16898
|
__typename?: 'ConfluenceNbmScanCategory';
|
|
@@ -16583,9 +16949,9 @@ export declare type ConfluenceNbmStartScanLongTaskInput = {
|
|
|
16583
16949
|
export declare type ConfluenceNbmStartScanLongTaskPayload = Payload & {
|
|
16584
16950
|
__typename?: 'ConfluenceNbmStartScanLongTaskPayload';
|
|
16585
16951
|
errors?: Maybe<Array<MutationError>>;
|
|
16586
|
-
scanId
|
|
16952
|
+
scanId?: Maybe<Scalars['ID']['output']>;
|
|
16587
16953
|
success: Scalars['Boolean']['output'];
|
|
16588
|
-
taskId
|
|
16954
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
16589
16955
|
};
|
|
16590
16956
|
export declare enum ConfluenceNbmVerificationAiState {
|
|
16591
16957
|
Broken = "BROKEN",
|
|
@@ -16790,6 +17156,23 @@ export declare type ConfluencePageViewerSummary = {
|
|
|
16790
17156
|
lastSeenAt?: Maybe<Scalars['DateTime']['output']>;
|
|
16791
17157
|
scheduledPublishSummary?: Maybe<ConfluenceScheduledPublishSummary>;
|
|
16792
17158
|
};
|
|
17159
|
+
export declare type ConfluencePatchCalendarInput = {
|
|
17160
|
+
color?: InputMaybe<Scalars['String']['input']>;
|
|
17161
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
17162
|
+
id: Scalars['ID']['input'];
|
|
17163
|
+
location?: InputMaybe<Scalars['String']['input']>;
|
|
17164
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
17165
|
+
parentId?: InputMaybe<Scalars['String']['input']>;
|
|
17166
|
+
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
17167
|
+
timeZoneId?: InputMaybe<Scalars['String']['input']>;
|
|
17168
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
17169
|
+
};
|
|
17170
|
+
export declare type ConfluencePatchCalendarPayload = Payload & {
|
|
17171
|
+
__typename?: 'ConfluencePatchCalendarPayload';
|
|
17172
|
+
calendar?: Maybe<ConfluenceCalendar>;
|
|
17173
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17174
|
+
success: Scalars['Boolean']['output'];
|
|
17175
|
+
};
|
|
16793
17176
|
export declare type ConfluencePdfExportDownloadLink = {
|
|
16794
17177
|
__typename?: 'ConfluencePdfExportDownloadLink';
|
|
16795
17178
|
link?: Maybe<Scalars['String']['output']>;
|
|
@@ -17278,6 +17661,19 @@ export declare type ConfluenceResolveInlineCommentPayload = {
|
|
|
17278
17661
|
errors?: Maybe<Array<MutationError>>;
|
|
17279
17662
|
success: Scalars['Boolean']['output'];
|
|
17280
17663
|
};
|
|
17664
|
+
export declare type ConfluenceRestoreContentVersionInput = {
|
|
17665
|
+
contentId: Scalars['ID']['input'];
|
|
17666
|
+
expand?: InputMaybe<Scalars['String']['input']>;
|
|
17667
|
+
restoreTitle?: InputMaybe<Scalars['Boolean']['input']>;
|
|
17668
|
+
versionMessage?: InputMaybe<Scalars['String']['input']>;
|
|
17669
|
+
versionNumber?: InputMaybe<Scalars['Int']['input']>;
|
|
17670
|
+
};
|
|
17671
|
+
export declare type ConfluenceRestoreContentVersionPayload = {
|
|
17672
|
+
__typename?: 'ConfluenceRestoreContentVersionPayload';
|
|
17673
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17674
|
+
success: Scalars['Boolean']['output'];
|
|
17675
|
+
version: Version;
|
|
17676
|
+
};
|
|
17281
17677
|
export declare enum ConfluenceRoleAssignabilityCode {
|
|
17282
17678
|
Assignable = "ASSIGNABLE",
|
|
17283
17679
|
DefaultRoleAssignmentNotSupported = "DEFAULT_ROLE_ASSIGNMENT_NOT_SUPPORTED",
|
|
@@ -20638,6 +21034,110 @@ export declare type ConvertPageToLiveEditValidationResult = {
|
|
|
20638
21034
|
isValid: Scalars['Boolean']['output'];
|
|
20639
21035
|
message?: Maybe<Scalars['String']['output']>;
|
|
20640
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
|
+
};
|
|
20641
21141
|
export declare type ConvoAiJira3pRelatedLinksEdge = {
|
|
20642
21142
|
__typename?: 'ConvoAiJira3pRelatedLinksEdge';
|
|
20643
21143
|
node?: Maybe<ConvoAiThirdPartyRelatedLink>;
|
|
@@ -20963,6 +21463,16 @@ export declare type CreateAppContainerPayload = Payload & {
|
|
|
20963
21463
|
errors?: Maybe<Array<MutationError>>;
|
|
20964
21464
|
success: Scalars['Boolean']['output'];
|
|
20965
21465
|
};
|
|
21466
|
+
export declare type CreateAppCustomScopesInput = {
|
|
21467
|
+
appId: Scalars['ID']['input'];
|
|
21468
|
+
environmentId: Scalars['ID']['input'];
|
|
21469
|
+
scopes: Array<AppCustomScopeSpec>;
|
|
21470
|
+
};
|
|
21471
|
+
export declare type CreateAppCustomScopesPayload = Payload & {
|
|
21472
|
+
__typename?: 'CreateAppCustomScopesPayload';
|
|
21473
|
+
errors?: Maybe<Array<MutationError>>;
|
|
21474
|
+
success: Scalars['Boolean']['output'];
|
|
21475
|
+
};
|
|
20966
21476
|
export declare type CreateAppDeploymentInput = {
|
|
20967
21477
|
appId: Scalars['ID']['input'];
|
|
20968
21478
|
artifactUrl?: InputMaybe<Scalars['URL']['input']>;
|
|
@@ -26707,13 +27217,15 @@ export declare type EcosystemGlobalInstallationOverrideInput = {
|
|
|
26707
27217
|
};
|
|
26708
27218
|
export declare enum EcosystemGlobalInstallationOverrideKeys {
|
|
26709
27219
|
AllowEgressAnalytics = "ALLOW_EGRESS_ANALYTICS",
|
|
26710
|
-
AllowLogsAccess = "ALLOW_LOGS_ACCESS"
|
|
27220
|
+
AllowLogsAccess = "ALLOW_LOGS_ACCESS",
|
|
27221
|
+
AllowRestApis = "ALLOW_REST_APIS"
|
|
26711
27222
|
}
|
|
26712
27223
|
export declare type EcosystemInstallationConfigInput = {
|
|
26713
27224
|
overrides: Array<EcosystemInstallationOverrides>;
|
|
26714
27225
|
};
|
|
26715
27226
|
export declare enum EcosystemInstallationOverrideKeys {
|
|
26716
|
-
AllowEgressAnalytics = "ALLOW_EGRESS_ANALYTICS"
|
|
27227
|
+
AllowEgressAnalytics = "ALLOW_EGRESS_ANALYTICS",
|
|
27228
|
+
AllowRestApis = "ALLOW_REST_APIS"
|
|
26717
27229
|
}
|
|
26718
27230
|
export declare type EcosystemInstallationOverrides = {
|
|
26719
27231
|
key: EcosystemInstallationOverrideKeys;
|
|
@@ -31104,7 +31616,7 @@ export declare type GraphIntegrationAddTwgCapabilityContainerInput = {
|
|
|
31104
31616
|
export declare type GraphIntegrationAddTwgCapabilityContainerPayload = Payload & {
|
|
31105
31617
|
__typename?: 'GraphIntegrationAddTwgCapabilityContainerPayload';
|
|
31106
31618
|
errors?: Maybe<Array<MutationError>>;
|
|
31107
|
-
id
|
|
31619
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
31108
31620
|
success: Scalars['Boolean']['output'];
|
|
31109
31621
|
};
|
|
31110
31622
|
export declare type GraphIntegrationConsentInput = {
|
|
@@ -31319,12 +31831,22 @@ export declare type GraphIntegrationMcpServer = {
|
|
|
31319
31831
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
31320
31832
|
id: Scalars['ID']['output'];
|
|
31321
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']>;
|
|
31322
31839
|
};
|
|
31323
31840
|
export declare type GraphIntegrationMcpServerNode = Node & {
|
|
31324
31841
|
__typename?: 'GraphIntegrationMcpServerNode';
|
|
31325
31842
|
displayName: Scalars['String']['output'];
|
|
31326
31843
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
31327
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']>;
|
|
31328
31850
|
};
|
|
31329
31851
|
export declare type GraphIntegrationMcpTool = {
|
|
31330
31852
|
__typename?: 'GraphIntegrationMcpTool';
|
|
@@ -31337,6 +31859,28 @@ export declare type GraphIntegrationMcpTool = {
|
|
|
31337
31859
|
status?: Maybe<GraphIntegrationStatus>;
|
|
31338
31860
|
tags: Array<Scalars['String']['output']>;
|
|
31339
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
|
+
};
|
|
31340
31884
|
export declare type GraphIntegrationRemoveTwgCapabilityContainerInput = {
|
|
31341
31885
|
contextAri: Scalars['ID']['input'];
|
|
31342
31886
|
id: Scalars['String']['input'];
|
|
@@ -34183,6 +34727,8 @@ export declare type GraphStore = {
|
|
|
34183
34727
|
conversationHasMessageInverse?: Maybe<GraphStoreSimplifiedConversationHasMessageInverseConnection>;
|
|
34184
34728
|
customerAssociatedIssue?: Maybe<GraphStoreSimplifiedCustomerAssociatedIssueConnection>;
|
|
34185
34729
|
customerAssociatedIssueInverse?: Maybe<GraphStoreSimplifiedCustomerAssociatedIssueInverseConnection>;
|
|
34730
|
+
customerHasExternalConversation?: Maybe<GraphStoreSimplifiedCustomerHasExternalConversationConnection>;
|
|
34731
|
+
customerHasExternalConversationInverse?: Maybe<GraphStoreSimplifiedCustomerHasExternalConversationInverseConnection>;
|
|
34186
34732
|
cypherQuery: GraphStoreCypherQueryConnection;
|
|
34187
34733
|
cypherQueryV2: GraphStoreCypherQueryV2Connection;
|
|
34188
34734
|
cypherQueryV2Batch: GraphStoreCypherQueryV2BatchConnection;
|
|
@@ -34761,6 +35307,8 @@ export declare type GraphStore = {
|
|
|
34761
35307
|
userOwnsFocusAreaInverse?: Maybe<GraphStoreSimplifiedUserOwnsFocusAreaInverseConnection>;
|
|
34762
35308
|
userOwnsPage?: Maybe<GraphStoreSimplifiedUserOwnsPageConnection>;
|
|
34763
35309
|
userOwnsPageInverse?: Maybe<GraphStoreSimplifiedUserOwnsPageInverseConnection>;
|
|
35310
|
+
userReactedToIssueComment?: Maybe<GraphStoreSimplifiedUserReactedToIssueCommentConnection>;
|
|
35311
|
+
userReactedToIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserReactedToIssueCommentInverseConnection>;
|
|
34764
35312
|
userReactionVideo?: Maybe<GraphStoreSimplifiedUserReactionVideoConnection>;
|
|
34765
35313
|
userReactionVideoInverse?: Maybe<GraphStoreSimplifiedUserReactionVideoInverseConnection>;
|
|
34766
35314
|
userReportedIncident?: Maybe<GraphStoreSimplifiedUserReportedIncidentConnection>;
|
|
@@ -35657,6 +36205,20 @@ export declare type GraphStoreCustomerAssociatedIssueInverseArgs = {
|
|
|
35657
36205
|
id: Scalars['ID']['input'];
|
|
35658
36206
|
sort?: InputMaybe<GraphStoreCustomerAssociatedIssueSortInput>;
|
|
35659
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
|
+
};
|
|
35660
36222
|
export declare type GraphStoreCypherQueryArgs = {
|
|
35661
36223
|
additionalInputs?: InputMaybe<Scalars['JSON']['input']>;
|
|
35662
36224
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -39512,6 +40074,20 @@ export declare type GraphStoreUserOwnsPageInverseArgs = {
|
|
|
39512
40074
|
id: Scalars['ID']['input'];
|
|
39513
40075
|
sort?: InputMaybe<GraphStoreUserOwnsPageSortInput>;
|
|
39514
40076
|
};
|
|
40077
|
+
export declare type GraphStoreUserReactedToIssueCommentArgs = {
|
|
40078
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40079
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40080
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40081
|
+
id: Scalars['ID']['input'];
|
|
40082
|
+
sort?: InputMaybe<GraphStoreUserReactedToIssueCommentSortInput>;
|
|
40083
|
+
};
|
|
40084
|
+
export declare type GraphStoreUserReactedToIssueCommentInverseArgs = {
|
|
40085
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40086
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40087
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40088
|
+
id: Scalars['ID']['input'];
|
|
40089
|
+
sort?: InputMaybe<GraphStoreUserReactedToIssueCommentSortInput>;
|
|
40090
|
+
};
|
|
39515
40091
|
export declare type GraphStoreUserReactionVideoArgs = {
|
|
39516
40092
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
39517
40093
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -42088,6 +42664,9 @@ export declare enum GraphStoreCreateVulnerabilityAssociatedIssueVulnerabilityTyp
|
|
|
42088
42664
|
export declare type GraphStoreCustomerAssociatedIssueSortInput = {
|
|
42089
42665
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42090
42666
|
};
|
|
42667
|
+
export declare type GraphStoreCustomerHasExternalConversationSortInput = {
|
|
42668
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42669
|
+
};
|
|
42091
42670
|
export declare type GraphStoreCypherQueryBooleanObject = {
|
|
42092
42671
|
__typename?: 'GraphStoreCypherQueryBooleanObject';
|
|
42093
42672
|
value: Scalars['Boolean']['output'];
|
|
@@ -48686,6 +49265,34 @@ export declare type GraphStoreSimplifiedCustomerAssociatedIssueInverseEdge = {
|
|
|
48686
49265
|
};
|
|
48687
49266
|
export declare type GraphStoreSimplifiedCustomerAssociatedIssueInverseUnion = Customer360Customer;
|
|
48688
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;
|
|
48689
49296
|
export declare type GraphStoreSimplifiedDeploymentAssociatedDeploymentConnection = HasPageInfo & {
|
|
48690
49297
|
__typename?: 'GraphStoreSimplifiedDeploymentAssociatedDeploymentConnection';
|
|
48691
49298
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDeploymentAssociatedDeploymentEdge>>>;
|
|
@@ -54646,6 +55253,34 @@ export declare type GraphStoreSimplifiedUserOwnsPageInverseEdge = {
|
|
|
54646
55253
|
};
|
|
54647
55254
|
export declare type GraphStoreSimplifiedUserOwnsPageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
54648
55255
|
export declare type GraphStoreSimplifiedUserOwnsPageUnion = ConfluencePage;
|
|
55256
|
+
export declare type GraphStoreSimplifiedUserReactedToIssueCommentConnection = HasPageInfo & {
|
|
55257
|
+
__typename?: 'GraphStoreSimplifiedUserReactedToIssueCommentConnection';
|
|
55258
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReactedToIssueCommentEdge>>>;
|
|
55259
|
+
pageInfo: PageInfo;
|
|
55260
|
+
};
|
|
55261
|
+
export declare type GraphStoreSimplifiedUserReactedToIssueCommentEdge = {
|
|
55262
|
+
__typename?: 'GraphStoreSimplifiedUserReactedToIssueCommentEdge';
|
|
55263
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55264
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55265
|
+
id: Scalars['ID']['output'];
|
|
55266
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55267
|
+
node?: Maybe<GraphStoreSimplifiedUserReactedToIssueCommentUnion>;
|
|
55268
|
+
};
|
|
55269
|
+
export declare type GraphStoreSimplifiedUserReactedToIssueCommentInverseConnection = HasPageInfo & {
|
|
55270
|
+
__typename?: 'GraphStoreSimplifiedUserReactedToIssueCommentInverseConnection';
|
|
55271
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReactedToIssueCommentInverseEdge>>>;
|
|
55272
|
+
pageInfo: PageInfo;
|
|
55273
|
+
};
|
|
55274
|
+
export declare type GraphStoreSimplifiedUserReactedToIssueCommentInverseEdge = {
|
|
55275
|
+
__typename?: 'GraphStoreSimplifiedUserReactedToIssueCommentInverseEdge';
|
|
55276
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55277
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55278
|
+
id: Scalars['ID']['output'];
|
|
55279
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55280
|
+
node?: Maybe<GraphStoreSimplifiedUserReactedToIssueCommentInverseUnion>;
|
|
55281
|
+
};
|
|
55282
|
+
export declare type GraphStoreSimplifiedUserReactedToIssueCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
55283
|
+
export declare type GraphStoreSimplifiedUserReactedToIssueCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
54649
55284
|
export declare type GraphStoreSimplifiedUserReactionVideoConnection = HasPageInfo & {
|
|
54650
55285
|
__typename?: 'GraphStoreSimplifiedUserReactionVideoConnection';
|
|
54651
55286
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReactionVideoEdge>>>;
|
|
@@ -56561,6 +57196,9 @@ export declare type GraphStoreUserOwnsFocusAreaSortInput = {
|
|
|
56561
57196
|
export declare type GraphStoreUserOwnsPageSortInput = {
|
|
56562
57197
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
56563
57198
|
};
|
|
57199
|
+
export declare type GraphStoreUserReactedToIssueCommentSortInput = {
|
|
57200
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
57201
|
+
};
|
|
56564
57202
|
export declare type GraphStoreUserReactionVideoSortInput = {
|
|
56565
57203
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
56566
57204
|
};
|
|
@@ -57066,10 +57704,14 @@ export declare type GrowthUnifiedProfileEntitlementProfileResult = {
|
|
|
57066
57704
|
firstProductOnSite?: Maybe<Scalars['Boolean']['output']>;
|
|
57067
57705
|
lastKnownTrial?: Maybe<GrowthUnifiedProfileEntitlementContextTrialResult>;
|
|
57068
57706
|
paidFeatureUsage: Array<GrowthUnifiedProfilePaidFeatureUsageResult>;
|
|
57707
|
+
trialHistory: Array<GrowthUnifiedProfileTrialHistoryResult>;
|
|
57069
57708
|
};
|
|
57070
57709
|
export declare type GrowthUnifiedProfileEntitlementProfileResultPaidFeatureUsageArgs = {
|
|
57071
57710
|
filter?: InputMaybe<GrowthUnifiedProfilePaidFeatureUsageFilterInput>;
|
|
57072
57711
|
};
|
|
57712
|
+
export declare type GrowthUnifiedProfileEntitlementProfileResultTrialHistoryArgs = {
|
|
57713
|
+
filter?: InputMaybe<GrowthUnifiedProfileTrialHistoryFilterInput>;
|
|
57714
|
+
};
|
|
57073
57715
|
export declare enum GrowthUnifiedProfileEntityType {
|
|
57074
57716
|
AjsAnonymousUser = "AJS_ANONYMOUS_USER",
|
|
57075
57717
|
AtlassianAccount = "ATLASSIAN_ACCOUNT",
|
|
@@ -57081,7 +57723,6 @@ export declare enum GrowthUnifiedProfileEntryType {
|
|
|
57081
57723
|
New = "NEW"
|
|
57082
57724
|
}
|
|
57083
57725
|
export declare enum GrowthUnifiedProfileFeatureType {
|
|
57084
|
-
Stateful = "STATEFUL",
|
|
57085
57726
|
Stateless = "STATELESS"
|
|
57086
57727
|
}
|
|
57087
57728
|
export declare type GrowthUnifiedProfileFunctionalOnboardingResult = {
|
|
@@ -57293,6 +57934,7 @@ export declare type GrowthUnifiedProfileProductDetails = {
|
|
|
57293
57934
|
productEdition?: Maybe<Scalars['String']['output']>;
|
|
57294
57935
|
productKey?: Maybe<Scalars['String']['output']>;
|
|
57295
57936
|
productName?: Maybe<Scalars['String']['output']>;
|
|
57937
|
+
productUrl?: Maybe<Scalars['String']['output']>;
|
|
57296
57938
|
provisionedAt?: Maybe<Scalars['String']['output']>;
|
|
57297
57939
|
trialContext?: Maybe<GrowthUnifiedProfileTrialContext>;
|
|
57298
57940
|
};
|
|
@@ -57432,6 +58074,15 @@ export declare type GrowthUnifiedProfileTrialContextInput = {
|
|
|
57432
58074
|
trialTrigger?: InputMaybe<GrowthUnifiedProfileTrialTrigger>;
|
|
57433
58075
|
trialType: GrowthUnifiedProfileTrialType;
|
|
57434
58076
|
};
|
|
58077
|
+
export declare type GrowthUnifiedProfileTrialHistoryFilterInput = {
|
|
58078
|
+
trialType?: InputMaybe<GrowthUnifiedProfileTrialType>;
|
|
58079
|
+
};
|
|
58080
|
+
export declare type GrowthUnifiedProfileTrialHistoryResult = {
|
|
58081
|
+
__typename?: 'GrowthUnifiedProfileTrialHistoryResult';
|
|
58082
|
+
trialEndTimeStamp: Scalars['String']['output'];
|
|
58083
|
+
trialStartTimeStamp: Scalars['String']['output'];
|
|
58084
|
+
trialType: GrowthUnifiedProfileTrialType;
|
|
58085
|
+
};
|
|
57435
58086
|
export declare enum GrowthUnifiedProfileTrialTrigger {
|
|
57436
58087
|
AutoUpgradeUserLimit = "AUTO_UPGRADE_USER_LIMIT",
|
|
57437
58088
|
CrossflowUserLimit = "CROSSFLOW_USER_LIMIT",
|
|
@@ -57512,6 +58163,7 @@ export declare type GrowthUnifiedProfileUserProfile = {
|
|
|
57512
58163
|
__typename?: 'GrowthUnifiedProfileUserProfile';
|
|
57513
58164
|
domainType?: Maybe<GrowthUnifiedProfileDomainType>;
|
|
57514
58165
|
jobFunction?: Maybe<Scalars['String']['output']>;
|
|
58166
|
+
smbUserVisitedPricingPages?: Maybe<Scalars['Boolean']['output']>;
|
|
57515
58167
|
teamType?: Maybe<Scalars['String']['output']>;
|
|
57516
58168
|
userType?: Maybe<GrowthUnifiedProfileEntryType>;
|
|
57517
58169
|
};
|
|
@@ -60677,7 +61329,7 @@ export declare type JiraAddCommentInput = {
|
|
|
60677
61329
|
};
|
|
60678
61330
|
export declare type JiraAddCommentPayload = {
|
|
60679
61331
|
__typename?: 'JiraAddCommentPayload';
|
|
60680
|
-
comment
|
|
61332
|
+
comment?: Maybe<JiraComment>;
|
|
60681
61333
|
errors?: Maybe<Array<MutationError>>;
|
|
60682
61334
|
success: Scalars['Boolean']['output'];
|
|
60683
61335
|
};
|
|
@@ -60880,6 +61532,7 @@ export declare type JiraAffectedServicesInput = {
|
|
|
60880
61532
|
};
|
|
60881
61533
|
export declare type JiraAiAgentSession = {
|
|
60882
61534
|
__typename?: 'JiraAiAgentSession';
|
|
61535
|
+
agent?: Maybe<User>;
|
|
60883
61536
|
conversationId: Scalars['ID']['output'];
|
|
60884
61537
|
};
|
|
60885
61538
|
export declare type JiraAiAgentSessionConnection = {
|
|
@@ -61275,6 +61928,9 @@ export declare type JiraAssociateProjectToFieldSchemePayload = Payload & {
|
|
|
61275
61928
|
errors?: Maybe<Array<MutationError>>;
|
|
61276
61929
|
success: Scalars['Boolean']['output'];
|
|
61277
61930
|
};
|
|
61931
|
+
export declare type JiraAssociatedProjectSearchInput = {
|
|
61932
|
+
name: Scalars['String']['input'];
|
|
61933
|
+
};
|
|
61278
61934
|
export declare type JiraAtlasProject = {
|
|
61279
61935
|
__typename?: 'JiraAtlasProject';
|
|
61280
61936
|
dueDate?: Maybe<Scalars['Date']['output']>;
|
|
@@ -61767,6 +62423,9 @@ export declare type JiraAvailableFieldsEdge = {
|
|
|
61767
62423
|
cursor: Scalars['String']['output'];
|
|
61768
62424
|
node?: Maybe<JiraAvailableField>;
|
|
61769
62425
|
};
|
|
62426
|
+
export declare type JiraAvailableProjectSearchInput = {
|
|
62427
|
+
name: Scalars['String']['input'];
|
|
62428
|
+
};
|
|
61770
62429
|
export declare type JiraAvatar = {
|
|
61771
62430
|
__typename?: 'JiraAvatar';
|
|
61772
62431
|
large?: Maybe<Scalars['String']['output']>;
|
|
@@ -61826,6 +62485,10 @@ export declare type JiraBacklogBoardConfig = {
|
|
|
61826
62485
|
swimlaneStrategy?: Maybe<Scalars['String']['output']>;
|
|
61827
62486
|
trackingStatisticConfig?: Maybe<JiraBacklogTrackingConfig>;
|
|
61828
62487
|
};
|
|
62488
|
+
export declare enum JiraBacklogCardDensity {
|
|
62489
|
+
Compact = "COMPACT",
|
|
62490
|
+
Default = "DEFAULT"
|
|
62491
|
+
}
|
|
61829
62492
|
export declare type JiraBacklogColorConfig = {
|
|
61830
62493
|
__typename?: 'JiraBacklogColorConfig';
|
|
61831
62494
|
canEditCardColorStrategy?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -62128,8 +62791,69 @@ export declare type JiraBacklogVersionData = {
|
|
|
62128
62791
|
};
|
|
62129
62792
|
export declare type JiraBacklogView = {
|
|
62130
62793
|
__typename?: 'JiraBacklogView';
|
|
62794
|
+
assigneeFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
|
|
62795
|
+
cardDensity?: Maybe<JiraBacklogCardDensity>;
|
|
62796
|
+
cardFields?: Maybe<JiraBacklogViewCardFieldConnection>;
|
|
62797
|
+
emptySprintsToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
62798
|
+
epicFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
|
|
62131
62799
|
epicPanelToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
62132
62800
|
id: Scalars['ID']['output'];
|
|
62801
|
+
issueTypeFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
|
|
62802
|
+
labelFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
|
|
62803
|
+
quickFilterToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
62804
|
+
quickFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
|
|
62805
|
+
searchText?: Maybe<Scalars['String']['output']>;
|
|
62806
|
+
sprintCommitmentToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
62807
|
+
versionFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
|
|
62808
|
+
versionPanelToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
62809
|
+
};
|
|
62810
|
+
export declare type JiraBacklogViewAssigneeFiltersArgs = {
|
|
62811
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
62812
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
62813
|
+
};
|
|
62814
|
+
export declare type JiraBacklogViewCardFieldsArgs = {
|
|
62815
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
62816
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
62817
|
+
};
|
|
62818
|
+
export declare type JiraBacklogViewEpicFiltersArgs = {
|
|
62819
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
62820
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
62821
|
+
};
|
|
62822
|
+
export declare type JiraBacklogViewIssueTypeFiltersArgs = {
|
|
62823
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
62824
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
62825
|
+
};
|
|
62826
|
+
export declare type JiraBacklogViewLabelFiltersArgs = {
|
|
62827
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
62828
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
62829
|
+
};
|
|
62830
|
+
export declare type JiraBacklogViewQuickFiltersArgs = {
|
|
62831
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
62832
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
62833
|
+
};
|
|
62834
|
+
export declare type JiraBacklogViewVersionFiltersArgs = {
|
|
62835
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
62836
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
62837
|
+
};
|
|
62838
|
+
export declare type JiraBacklogViewCardField = {
|
|
62839
|
+
__typename?: 'JiraBacklogViewCardField';
|
|
62840
|
+
enabled: Scalars['Boolean']['output'];
|
|
62841
|
+
id: Scalars['ID']['output'];
|
|
62842
|
+
};
|
|
62843
|
+
export declare type JiraBacklogViewCardFieldConnection = {
|
|
62844
|
+
__typename?: 'JiraBacklogViewCardFieldConnection';
|
|
62845
|
+
edges?: Maybe<Array<Maybe<JiraBacklogViewCardFieldEdge>>>;
|
|
62846
|
+
errors?: Maybe<Array<QueryError>>;
|
|
62847
|
+
pageInfo?: Maybe<PageInfo>;
|
|
62848
|
+
};
|
|
62849
|
+
export declare type JiraBacklogViewCardFieldEdge = {
|
|
62850
|
+
__typename?: 'JiraBacklogViewCardFieldEdge';
|
|
62851
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
62852
|
+
node?: Maybe<JiraBacklogViewCardField>;
|
|
62853
|
+
};
|
|
62854
|
+
export declare type JiraBacklogViewCardFieldInput = {
|
|
62855
|
+
enabled: Scalars['Boolean']['input'];
|
|
62856
|
+
id: Scalars['ID']['input'];
|
|
62133
62857
|
};
|
|
62134
62858
|
export declare type JiraBacklogViewInput = {
|
|
62135
62859
|
jiraBacklogViewQueryInput: JiraBacklogViewQueryInput;
|
|
@@ -62137,6 +62861,22 @@ export declare type JiraBacklogViewInput = {
|
|
|
62137
62861
|
export declare type JiraBacklogViewQueryInput = {
|
|
62138
62862
|
viewId?: InputMaybe<Scalars['ID']['input']>;
|
|
62139
62863
|
};
|
|
62864
|
+
export declare type JiraBacklogViewStringFilter = {
|
|
62865
|
+
__typename?: 'JiraBacklogViewStringFilter';
|
|
62866
|
+
id: Scalars['ID']['output'];
|
|
62867
|
+
value: Scalars['String']['output'];
|
|
62868
|
+
};
|
|
62869
|
+
export declare type JiraBacklogViewStringFilterConnection = {
|
|
62870
|
+
__typename?: 'JiraBacklogViewStringFilterConnection';
|
|
62871
|
+
edges?: Maybe<Array<Maybe<JiraBacklogViewStringFilterEdge>>>;
|
|
62872
|
+
errors?: Maybe<Array<QueryError>>;
|
|
62873
|
+
pageInfo?: Maybe<PageInfo>;
|
|
62874
|
+
};
|
|
62875
|
+
export declare type JiraBacklogViewStringFilterEdge = {
|
|
62876
|
+
__typename?: 'JiraBacklogViewStringFilterEdge';
|
|
62877
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
62878
|
+
node?: Maybe<JiraBacklogViewStringFilter>;
|
|
62879
|
+
};
|
|
62140
62880
|
export declare enum JiraBatchWindowPreference {
|
|
62141
62881
|
DefaultBatching = "DEFAULT_BATCHING",
|
|
62142
62882
|
FifteenMinutes = "FIFTEEN_MINUTES",
|
|
@@ -62615,6 +63355,160 @@ export declare type JiraBulkTransitionsInput = {
|
|
|
62615
63355
|
export declare type JiraBulkWatchOrUnwatchInput = {
|
|
62616
63356
|
selectedIssueIds: Array<Scalars['ID']['input']>;
|
|
62617
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
|
+
}
|
|
62618
63512
|
export declare type JiraCmdbField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
|
|
62619
63513
|
__typename?: 'JiraCMDBField';
|
|
62620
63514
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -65602,6 +66496,7 @@ export declare type JiraFieldConfigFilterInput = {
|
|
|
65602
66496
|
aliasFieldIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
65603
66497
|
cloudId: Scalars['ID']['input'];
|
|
65604
66498
|
fieldIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
66499
|
+
fieldScope?: InputMaybe<JiraFieldScopeType>;
|
|
65605
66500
|
fieldStatus?: InputMaybe<JiraFieldStatusType>;
|
|
65606
66501
|
includedFieldCategories?: InputMaybe<Array<JiraFieldCategoryType>>;
|
|
65607
66502
|
includedFieldScopes?: InputMaybe<Array<JiraFieldScopeType>>;
|
|
@@ -65707,6 +66602,9 @@ export declare enum JiraFieldOptionIdsFilterOperation {
|
|
|
65707
66602
|
}
|
|
65708
66603
|
export declare type JiraFieldScheme = Node & {
|
|
65709
66604
|
__typename?: 'JiraFieldScheme';
|
|
66605
|
+
associatedProjects?: Maybe<JiraProjectConnection>;
|
|
66606
|
+
associatedProjectsCount?: Maybe<Scalars['Int']['output']>;
|
|
66607
|
+
availableProjects?: Maybe<JiraProjectConnection>;
|
|
65710
66608
|
description?: Maybe<Scalars['String']['output']>;
|
|
65711
66609
|
fieldsCount?: Maybe<Scalars['Int']['output']>;
|
|
65712
66610
|
id: Scalars['ID']['output'];
|
|
@@ -65715,9 +66613,20 @@ export declare type JiraFieldScheme = Node & {
|
|
|
65715
66613
|
projectsCount?: Maybe<Scalars['Int']['output']>;
|
|
65716
66614
|
schemeId?: Maybe<Scalars['ID']['output']>;
|
|
65717
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
|
+
};
|
|
65718
66626
|
export declare type JiraFieldSchemeAssociatedField = {
|
|
65719
66627
|
__typename?: 'JiraFieldSchemeAssociatedField';
|
|
65720
66628
|
field?: Maybe<JiraField>;
|
|
66629
|
+
fieldConfig?: Maybe<JiraIssueFieldConfig>;
|
|
65721
66630
|
id: Scalars['ID']['output'];
|
|
65722
66631
|
isFieldLocked?: Maybe<Scalars['Boolean']['output']>;
|
|
65723
66632
|
};
|
|
@@ -65739,6 +66648,12 @@ export declare type JiraFieldSchemeAvailableFieldsInput = {
|
|
|
65739
66648
|
nameOrDescriptionFilter?: InputMaybe<Scalars['String']['input']>;
|
|
65740
66649
|
schemeId: Scalars['ID']['input'];
|
|
65741
66650
|
};
|
|
66651
|
+
export declare type JiraFieldSchemeOperations = {
|
|
66652
|
+
__typename?: 'JiraFieldSchemeOperations';
|
|
66653
|
+
canChangeDescription?: Maybe<Scalars['Boolean']['output']>;
|
|
66654
|
+
canChangeRequired?: Maybe<Scalars['Boolean']['output']>;
|
|
66655
|
+
canRemove?: Maybe<Scalars['Boolean']['output']>;
|
|
66656
|
+
};
|
|
65742
66657
|
export declare type JiraFieldSchemePayload = Payload & {
|
|
65743
66658
|
__typename?: 'JiraFieldSchemePayload';
|
|
65744
66659
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -65759,6 +66674,7 @@ export declare type JiraFieldSchemesInput = {
|
|
|
65759
66674
|
nameOrDescriptionFilter?: InputMaybe<Scalars['String']['input']>;
|
|
65760
66675
|
};
|
|
65761
66676
|
export declare enum JiraFieldScopeType {
|
|
66677
|
+
All = "ALL",
|
|
65762
66678
|
Global = "GLOBAL",
|
|
65763
66679
|
Project = "PROJECT"
|
|
65764
66680
|
}
|
|
@@ -66895,6 +67811,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
66895
67811
|
archivedBy?: Maybe<User>;
|
|
66896
67812
|
archivedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
66897
67813
|
assigneeField?: Maybe<JiraSingleSelectUserPickerField>;
|
|
67814
|
+
atlassianProjectField?: Maybe<JiraTownsquareProjectField>;
|
|
66898
67815
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
66899
67816
|
attachmentsWithFilters?: Maybe<JiraAttachmentWithFiltersResult>;
|
|
66900
67817
|
autodevIssueScopingResult?: Maybe<DevAiIssueScopingResult>;
|
|
@@ -67031,7 +67948,9 @@ export declare type JiraIssueAttachmentsArgs = {
|
|
|
67031
67948
|
sortBy?: InputMaybe<JiraAttachmentSortInput>;
|
|
67032
67949
|
};
|
|
67033
67950
|
export declare type JiraIssueAttachmentsWithFiltersArgs = {
|
|
67951
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67034
67952
|
input?: InputMaybe<JiraAttachmentWithFiltersInput>;
|
|
67953
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
67035
67954
|
};
|
|
67036
67955
|
export declare type JiraIssueCanHaveChildIssuesArgs = {
|
|
67037
67956
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -67666,6 +68585,7 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
67666
68585
|
description?: Maybe<Scalars['String']['output']>;
|
|
67667
68586
|
descriptionCustomisations?: Maybe<Array<Maybe<JiraFieldWorkTypeDescriptionCustomization>>>;
|
|
67668
68587
|
fieldId: Scalars['String']['output'];
|
|
68588
|
+
fieldSchemeOperations?: Maybe<JiraFieldSchemeOperations>;
|
|
67669
68589
|
formatConfig?: Maybe<JiraFieldFormatConfig>;
|
|
67670
68590
|
id: Scalars['ID']['output'];
|
|
67671
68591
|
installedByAppName?: Maybe<Scalars['String']['output']>;
|
|
@@ -68732,6 +69652,18 @@ export declare type JiraIssueStreamHubEventPayloadProject = {
|
|
|
68732
69652
|
__typename?: 'JiraIssueStreamHubEventPayloadProject';
|
|
68733
69653
|
id: Scalars['Int']['output'];
|
|
68734
69654
|
};
|
|
69655
|
+
export declare type JiraIssueTownsquareProjectLink = {
|
|
69656
|
+
__typename?: 'JiraIssueTownsquareProjectLink';
|
|
69657
|
+
ari?: Maybe<Scalars['ID']['output']>;
|
|
69658
|
+
issue?: Maybe<JiraIssue>;
|
|
69659
|
+
linkType?: Maybe<JiraIssueTownsquareProjectLinkType>;
|
|
69660
|
+
project?: Maybe<JiraTownsquareProject>;
|
|
69661
|
+
};
|
|
69662
|
+
export declare enum JiraIssueTownsquareProjectLinkType {
|
|
69663
|
+
Explicit = "EXPLICIT",
|
|
69664
|
+
Implicit = "IMPLICIT",
|
|
69665
|
+
None = "NONE"
|
|
69666
|
+
}
|
|
68735
69667
|
export declare type JiraIssueTransitionComment = {
|
|
68736
69668
|
__typename?: 'JiraIssueTransitionComment';
|
|
68737
69669
|
adminRichTextConfig?: Maybe<JiraAdminRichTextFieldConfig>;
|
|
@@ -69137,6 +70069,7 @@ export declare type JiraJourneyItemConfigurationInput = {
|
|
|
69137
70069
|
};
|
|
69138
70070
|
export declare type JiraJourneyParentIssue = {
|
|
69139
70071
|
__typename?: 'JiraJourneyParentIssue';
|
|
70072
|
+
jiraStatuses?: Maybe<Array<JiraStatus>>;
|
|
69140
70073
|
project?: Maybe<JiraProject>;
|
|
69141
70074
|
validationErrors?: Maybe<Array<JiraJourneyValidationError>>;
|
|
69142
70075
|
value?: Maybe<JiraJourneyParentIssueValueType>;
|
|
@@ -69237,6 +70170,7 @@ export declare type JiraJourneyWorkItem = JiraJourneyItemCommon & {
|
|
|
69237
70170
|
fieldValues?: Maybe<Array<JiraJourneyWorkItemFieldValueKeyValuePair>>;
|
|
69238
70171
|
id: Scalars['ID']['output'];
|
|
69239
70172
|
issueType?: Maybe<JiraIssueType>;
|
|
70173
|
+
jiraStatuses?: Maybe<Array<JiraStatus>>;
|
|
69240
70174
|
name?: Maybe<Scalars['String']['output']>;
|
|
69241
70175
|
project?: Maybe<JiraProject>;
|
|
69242
70176
|
requestType?: Maybe<JiraServiceManagementRequestType>;
|
|
@@ -69267,6 +70201,14 @@ export declare type JiraJourneyWorkdayIntegrationTriggerConfigurationInput = {
|
|
|
69267
70201
|
ruleId?: InputMaybe<Scalars['ID']['input']>;
|
|
69268
70202
|
type?: InputMaybe<JiraJourneyTriggerType>;
|
|
69269
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
|
+
};
|
|
69270
70212
|
export declare enum JiraJqlAutocompleteType {
|
|
69271
70213
|
Basic = "BASIC",
|
|
69272
70214
|
Cascadingoption = "CASCADINGOPTION",
|
|
@@ -73903,6 +74845,7 @@ export declare type JiraQuery = {
|
|
|
73903
74845
|
bulkOperationProgress?: Maybe<JiraIssueBulkOperationProgress>;
|
|
73904
74846
|
bulkOperationsMetadata?: Maybe<JiraIssueBulkOperationsMetadata>;
|
|
73905
74847
|
canPerform?: Maybe<Scalars['Boolean']['output']>;
|
|
74848
|
+
cfoAnalytics?: Maybe<JiraCfoAnalyticsResult>;
|
|
73906
74849
|
childIssuesLimit?: Maybe<Scalars['Long']['output']>;
|
|
73907
74850
|
cmdbSelectedObjectAttributes?: Maybe<JiraCmdbAttributeConnection>;
|
|
73908
74851
|
containerNavigation?: Maybe<JiraContainerNavigationResult>;
|
|
@@ -73936,6 +74879,7 @@ export declare type JiraQuery = {
|
|
|
73936
74879
|
getOutgoingEmailSettings?: Maybe<JiraOutgoingEmailSettings>;
|
|
73937
74880
|
getPermissionSchemeGrants?: Maybe<JiraPermissionGrantConnection>;
|
|
73938
74881
|
getPermissionSchemeGrantsHierarchy?: Maybe<Array<JiraPermissionGrants>>;
|
|
74882
|
+
getProjectLinkInheritanceSources?: Maybe<Array<Maybe<JiraIssueTownsquareProjectLink>>>;
|
|
73939
74883
|
getProjectsByPermissionScheme?: Maybe<JiraProjectConnection>;
|
|
73940
74884
|
globalAppNavigationItems?: Maybe<JiraNavigationItemConnection>;
|
|
73941
74885
|
globalTimeTrackingSettings?: Maybe<JiraTimeTrackingSettings>;
|
|
@@ -74213,6 +75157,15 @@ export declare type JiraQueryCanPerformArgs = {
|
|
|
74213
75157
|
cloudId: Scalars['ID']['input'];
|
|
74214
75158
|
type: JiraActionType;
|
|
74215
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
|
+
};
|
|
74216
75169
|
export declare type JiraQueryChildIssuesLimitArgs = {
|
|
74217
75170
|
cloudId: Scalars['ID']['input'];
|
|
74218
75171
|
};
|
|
@@ -74373,6 +75326,9 @@ export declare type JiraQueryGetPermissionSchemeGrantsHierarchyArgs = {
|
|
|
74373
75326
|
permissionKey: Scalars['String']['input'];
|
|
74374
75327
|
schemeId: Scalars['ID']['input'];
|
|
74375
75328
|
};
|
|
75329
|
+
export declare type JiraQueryGetProjectLinkInheritanceSourcesArgs = {
|
|
75330
|
+
issueId: Scalars['ID']['input'];
|
|
75331
|
+
};
|
|
74376
75332
|
export declare type JiraQueryGetProjectsByPermissionSchemeArgs = {
|
|
74377
75333
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
74378
75334
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -77309,6 +78265,28 @@ export declare type JiraSetApplicationPropertyInput = {
|
|
|
77309
78265
|
key: Scalars['String']['input'];
|
|
77310
78266
|
value: Scalars['String']['input'];
|
|
77311
78267
|
};
|
|
78268
|
+
export declare type JiraSetBacklogViewCardDensityInput = {
|
|
78269
|
+
cardDensity: JiraBacklogCardDensity;
|
|
78270
|
+
viewId: Scalars['ID']['input'];
|
|
78271
|
+
};
|
|
78272
|
+
export declare type JiraSetBacklogViewCardFieldsInput = {
|
|
78273
|
+
cardFields: Array<JiraBacklogViewCardFieldInput>;
|
|
78274
|
+
viewId: Scalars['ID']['input'];
|
|
78275
|
+
};
|
|
78276
|
+
export declare type JiraSetBacklogViewPayload = Payload & {
|
|
78277
|
+
__typename?: 'JiraSetBacklogViewPayload';
|
|
78278
|
+
backlogView?: Maybe<JiraBacklogView>;
|
|
78279
|
+
errors?: Maybe<Array<MutationError>>;
|
|
78280
|
+
success: Scalars['Boolean']['output'];
|
|
78281
|
+
};
|
|
78282
|
+
export declare type JiraSetBacklogViewStringFiltersInput = {
|
|
78283
|
+
values: Array<Scalars['String']['input']>;
|
|
78284
|
+
viewId: Scalars['ID']['input'];
|
|
78285
|
+
};
|
|
78286
|
+
export declare type JiraSetBacklogViewTextInput = {
|
|
78287
|
+
text: Scalars['String']['input'];
|
|
78288
|
+
viewId: Scalars['ID']['input'];
|
|
78289
|
+
};
|
|
77312
78290
|
export declare type JiraSetBoardIssueCardCoverInput = {
|
|
77313
78291
|
coverType: JiraBackgroundType;
|
|
77314
78292
|
coverValue: Scalars['String']['input'];
|
|
@@ -77371,7 +78349,7 @@ export declare type JiraSetBoardViewColumnsOrderPayload = Payload & {
|
|
|
77371
78349
|
success: Scalars['Boolean']['output'];
|
|
77372
78350
|
};
|
|
77373
78351
|
export declare type JiraSetBoardViewCompletedIssueSearchCutOffInput = {
|
|
77374
|
-
completedIssueSearchCutOffInDays
|
|
78352
|
+
completedIssueSearchCutOffInDays?: InputMaybe<Scalars['Int']['input']>;
|
|
77375
78353
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
77376
78354
|
viewId: Scalars['ID']['input'];
|
|
77377
78355
|
};
|
|
@@ -77578,6 +78556,10 @@ export declare type JiraSetViewGroupByPayload = Payload & {
|
|
|
77578
78556
|
success: Scalars['Boolean']['output'];
|
|
77579
78557
|
view?: Maybe<JiraView>;
|
|
77580
78558
|
};
|
|
78559
|
+
export declare type JiraSetViewSettingToggleInput = {
|
|
78560
|
+
toggleValue: Scalars['Boolean']['input'];
|
|
78561
|
+
viewId: Scalars['ID']['input'];
|
|
78562
|
+
};
|
|
77581
78563
|
export declare type JiraShareableEntityAnonymousAccessGrant = {
|
|
77582
78564
|
__typename?: 'JiraShareableEntityAnonymousAccessGrant';
|
|
77583
78565
|
type?: Maybe<JiraShareableEntityGrant>;
|
|
@@ -78507,6 +79489,7 @@ export declare type JiraSubtaskSummary = {
|
|
|
78507
79489
|
__typename?: 'JiraSubtaskSummary';
|
|
78508
79490
|
totalCompletedCount?: Maybe<Scalars['Int']['output']>;
|
|
78509
79491
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
79492
|
+
totalInProgressCount?: Maybe<Scalars['Int']['output']>;
|
|
78510
79493
|
};
|
|
78511
79494
|
export declare type JiraSubtaskSummaryField = JiraIssueField & Node & {
|
|
78512
79495
|
__typename?: 'JiraSubtaskSummaryField';
|
|
@@ -78613,9 +79596,14 @@ export declare type JiraSuggestionAction = {
|
|
|
78613
79596
|
__typename?: 'JiraSuggestionAction';
|
|
78614
79597
|
default?: Maybe<Scalars['Boolean']['output']>;
|
|
78615
79598
|
id?: Maybe<Scalars['String']['output']>;
|
|
78616
|
-
inputSchema?: Maybe<
|
|
79599
|
+
inputSchema?: Maybe<JiraSuggestionActionInputSchema>;
|
|
78617
79600
|
type?: Maybe<JiraSuggestionActionType>;
|
|
78618
79601
|
};
|
|
79602
|
+
export declare type JiraSuggestionActionInputSchema = {
|
|
79603
|
+
__typename?: 'JiraSuggestionActionInputSchema';
|
|
79604
|
+
properties?: Maybe<Scalars['JSON']['output']>;
|
|
79605
|
+
required?: Maybe<Array<Scalars['String']['output']>>;
|
|
79606
|
+
};
|
|
78619
79607
|
export declare enum JiraSuggestionActionType {
|
|
78620
79608
|
ChangeDuplicateWorkItemStatus = "CHANGE_DUPLICATE_WORK_ITEM_STATUS",
|
|
78621
79609
|
ChangeStaleWorkItemStatus = "CHANGE_STALE_WORK_ITEM_STATUS",
|
|
@@ -78888,6 +79876,39 @@ export declare type JiraToolchain = {
|
|
|
78888
79876
|
export declare type JiraToolchainHasViewDevToolsPermissionArgs = {
|
|
78889
79877
|
projectKey: Scalars['String']['input'];
|
|
78890
79878
|
};
|
|
79879
|
+
export declare type JiraTownsquareProject = {
|
|
79880
|
+
__typename?: 'JiraTownsquareProject';
|
|
79881
|
+
dueDate?: Maybe<Scalars['Date']['output']>;
|
|
79882
|
+
dueDateConfidence?: Maybe<Scalars['String']['output']>;
|
|
79883
|
+
hasPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
79884
|
+
iconName?: Maybe<Scalars['String']['output']>;
|
|
79885
|
+
id: Scalars['ID']['output'];
|
|
79886
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
79887
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
79888
|
+
ownerAaid?: Maybe<Scalars['String']['output']>;
|
|
79889
|
+
privateProject?: Maybe<Scalars['Boolean']['output']>;
|
|
79890
|
+
startDate?: Maybe<Scalars['Date']['output']>;
|
|
79891
|
+
state?: Maybe<Scalars['String']['output']>;
|
|
79892
|
+
workspaceAri?: Maybe<Scalars['String']['output']>;
|
|
79893
|
+
};
|
|
79894
|
+
export declare type JiraTownsquareProjectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
79895
|
+
__typename?: 'JiraTownsquareProjectField';
|
|
79896
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
79897
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
79898
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
79899
|
+
fieldId: Scalars['String']['output'];
|
|
79900
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
79901
|
+
id: Scalars['ID']['output'];
|
|
79902
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
79903
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
79904
|
+
isLinkEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
79905
|
+
isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
|
|
79906
|
+
issue?: Maybe<JiraIssue>;
|
|
79907
|
+
name: Scalars['String']['output'];
|
|
79908
|
+
project?: Maybe<JiraTownsquareProject>;
|
|
79909
|
+
type: Scalars['String']['output'];
|
|
79910
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
79911
|
+
};
|
|
78891
79912
|
export declare type JiraTransition = Node & {
|
|
78892
79913
|
__typename?: 'JiraTransition';
|
|
78893
79914
|
hasPreConditions?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -79068,7 +80089,7 @@ export declare type JiraUpdateCommentInput = {
|
|
|
79068
80089
|
};
|
|
79069
80090
|
export declare type JiraUpdateCommentPayload = {
|
|
79070
80091
|
__typename?: 'JiraUpdateCommentPayload';
|
|
79071
|
-
comment
|
|
80092
|
+
comment?: Maybe<JiraComment>;
|
|
79072
80093
|
errors?: Maybe<Array<MutationError>>;
|
|
79073
80094
|
success: Scalars['Boolean']['output'];
|
|
79074
80095
|
};
|
|
@@ -81052,15 +82073,6 @@ export declare type JiraWorklogPayload = Payload & {
|
|
|
81052
82073
|
export declare type JiraWorklogSortInput = {
|
|
81053
82074
|
order: SortDirection;
|
|
81054
82075
|
};
|
|
81055
|
-
export declare type JpdInsightCreatedEvent = {
|
|
81056
|
-
__typename?: 'JpdInsightCreatedEvent';
|
|
81057
|
-
actorUserId: Scalars['ID']['output'];
|
|
81058
|
-
insight: PolarisInsight;
|
|
81059
|
-
insightAri: Scalars['ID']['output'];
|
|
81060
|
-
issueAri: Scalars['ID']['output'];
|
|
81061
|
-
performedAt: Scalars['String']['output'];
|
|
81062
|
-
projectAri: Scalars['ID']['output'];
|
|
81063
|
-
};
|
|
81064
82076
|
export declare type JpdInsightDeletedEvent = {
|
|
81065
82077
|
__typename?: 'JpdInsightDeletedEvent';
|
|
81066
82078
|
actorUserId: Scalars['ID']['output'];
|
|
@@ -81069,33 +82081,8 @@ export declare type JpdInsightDeletedEvent = {
|
|
|
81069
82081
|
performedAt: Scalars['String']['output'];
|
|
81070
82082
|
projectAri: Scalars['ID']['output'];
|
|
81071
82083
|
};
|
|
81072
|
-
export declare type JpdInsightUpdatedEvent = {
|
|
81073
|
-
__typename?: 'JpdInsightUpdatedEvent';
|
|
81074
|
-
actorUserId: Scalars['ID']['output'];
|
|
81075
|
-
insight: PolarisInsight;
|
|
81076
|
-
insightAri: Scalars['ID']['output'];
|
|
81077
|
-
issueAri: Scalars['ID']['output'];
|
|
81078
|
-
performedAt: Scalars['String']['output'];
|
|
81079
|
-
projectAri: Scalars['ID']['output'];
|
|
81080
|
-
};
|
|
81081
|
-
export declare type JpdPlayContributionCreatedEvent = {
|
|
81082
|
-
__typename?: 'JpdPlayContributionCreatedEvent';
|
|
81083
|
-
contributionAri: Scalars['ID']['output'];
|
|
81084
|
-
contributionId: Scalars['Int']['output'];
|
|
81085
|
-
projectAri: Scalars['ID']['output'];
|
|
81086
|
-
subjectAri: Scalars['ID']['output'];
|
|
81087
|
-
updatedByUserId: Scalars['ID']['output'];
|
|
81088
|
-
updatedTime: Scalars['String']['output'];
|
|
81089
|
-
};
|
|
81090
82084
|
export declare type JpdPlayContributionDeletedEvent = {
|
|
81091
82085
|
__typename?: 'JpdPlayContributionDeletedEvent';
|
|
81092
|
-
projectAri: Scalars['ID']['output'];
|
|
81093
|
-
subjectAri: Scalars['ID']['output'];
|
|
81094
|
-
updatedByUserId: Scalars['ID']['output'];
|
|
81095
|
-
updatedTime: Scalars['String']['output'];
|
|
81096
|
-
};
|
|
81097
|
-
export declare type JpdPlayContributionUpdatedEvent = {
|
|
81098
|
-
__typename?: 'JpdPlayContributionUpdatedEvent';
|
|
81099
82086
|
contributionAri: Scalars['ID']['output'];
|
|
81100
82087
|
contributionId: Scalars['Int']['output'];
|
|
81101
82088
|
projectAri: Scalars['ID']['output'];
|
|
@@ -81106,6 +82093,8 @@ export declare type JpdPlayContributionUpdatedEvent = {
|
|
|
81106
82093
|
export declare type JpdPlayEvent = {
|
|
81107
82094
|
__typename?: 'JpdPlayEvent';
|
|
81108
82095
|
parameters: JpdPlayParameters;
|
|
82096
|
+
playAri: Scalars['ID']['output'];
|
|
82097
|
+
playId: Scalars['Int']['output'];
|
|
81109
82098
|
projectAri: Scalars['ID']['output'];
|
|
81110
82099
|
updatedByUserId: Scalars['ID']['output'];
|
|
81111
82100
|
updatedTime: Scalars['String']['output'];
|
|
@@ -81116,15 +82105,15 @@ export declare type JpdPlayParameters = {
|
|
|
81116
82105
|
};
|
|
81117
82106
|
export declare type JpdSubscriptions = {
|
|
81118
82107
|
__typename?: 'JpdSubscriptions';
|
|
81119
|
-
onInsightCreated?: Maybe<
|
|
82108
|
+
onInsightCreated?: Maybe<PolarisInsight>;
|
|
81120
82109
|
onInsightDeleted?: Maybe<JpdInsightDeletedEvent>;
|
|
81121
|
-
onInsightUpdated?: Maybe<
|
|
81122
|
-
onIssueInsightCreated?: Maybe<
|
|
82110
|
+
onInsightUpdated?: Maybe<PolarisInsight>;
|
|
82111
|
+
onIssueInsightCreated?: Maybe<PolarisInsight>;
|
|
81123
82112
|
onIssueInsightDeleted?: Maybe<JpdInsightDeletedEvent>;
|
|
81124
|
-
onIssueInsightUpdated?: Maybe<
|
|
81125
|
-
onPlayContributionCreated?: Maybe<
|
|
82113
|
+
onIssueInsightUpdated?: Maybe<PolarisInsight>;
|
|
82114
|
+
onPlayContributionCreated?: Maybe<PolarisPlayContribution>;
|
|
81126
82115
|
onPlayContributionDeleted?: Maybe<JpdPlayContributionDeletedEvent>;
|
|
81127
|
-
onPlayContributionUpdated?: Maybe<
|
|
82116
|
+
onPlayContributionUpdated?: Maybe<PolarisPlayContribution>;
|
|
81128
82117
|
onPlayUpdated?: Maybe<JpdPlayEvent>;
|
|
81129
82118
|
onViewCommentEvents?: Maybe<JpdViewCommentEvent>;
|
|
81130
82119
|
onViewCreated?: Maybe<JpdViewCreatedEvent>;
|
|
@@ -81232,14 +82221,12 @@ export declare type JpdViewSetCreatedEvent = {
|
|
|
81232
82221
|
__typename?: 'JpdViewSetCreatedEvent';
|
|
81233
82222
|
projectAri: Scalars['ID']['output'];
|
|
81234
82223
|
viewSetAri: Scalars['ID']['output'];
|
|
81235
|
-
viewSetId: Scalars['Int']['output'];
|
|
81236
82224
|
viewSetUuid: Scalars['ID']['output'];
|
|
81237
82225
|
};
|
|
81238
82226
|
export declare type JpdViewSetDeletedEvent = {
|
|
81239
82227
|
__typename?: 'JpdViewSetDeletedEvent';
|
|
81240
82228
|
projectAri: Scalars['ID']['output'];
|
|
81241
82229
|
viewSetAri: Scalars['ID']['output'];
|
|
81242
|
-
viewSetId: Scalars['Int']['output'];
|
|
81243
82230
|
viewSetUuid: Scalars['ID']['output'];
|
|
81244
82231
|
};
|
|
81245
82232
|
export declare type JpdViewSetUpdatedEvent = {
|
|
@@ -81247,7 +82234,6 @@ export declare type JpdViewSetUpdatedEvent = {
|
|
|
81247
82234
|
changes?: Maybe<Array<Scalars['String']['output']>>;
|
|
81248
82235
|
projectAri: Scalars['ID']['output'];
|
|
81249
82236
|
viewSetAri: Scalars['ID']['output'];
|
|
81250
|
-
viewSetId: Scalars['Int']['output'];
|
|
81251
82237
|
viewSetUuid: Scalars['ID']['output'];
|
|
81252
82238
|
};
|
|
81253
82239
|
export declare type JpdViewUpdatedEvent = {
|
|
@@ -83560,6 +84546,11 @@ export declare enum LoomTranscriptLanguage {
|
|
|
83560
84546
|
Yo = "yo",
|
|
83561
84547
|
Zh = "zh"
|
|
83562
84548
|
}
|
|
84549
|
+
export declare type LoomUnauthenticatedUserPrimaryAuthType = {
|
|
84550
|
+
__typename?: 'LoomUnauthenticatedUserPrimaryAuthType';
|
|
84551
|
+
authType: Scalars['String']['output'];
|
|
84552
|
+
redirectUri?: Maybe<Scalars['String']['output']>;
|
|
84553
|
+
};
|
|
83563
84554
|
export declare type LoomUserPrimaryAuthType = {
|
|
83564
84555
|
__typename?: 'LoomUserPrimaryAuthType';
|
|
83565
84556
|
authType: Scalars['String']['output'];
|
|
@@ -85711,7 +86702,9 @@ export declare type MarketplaceStoreEdition = {
|
|
|
85711
86702
|
approvalDetails?: Maybe<MarketplaceStoreApprovalDetails>;
|
|
85712
86703
|
features: Array<MarketplaceStoreEditionFeature>;
|
|
85713
86704
|
id: Scalars['ID']['output'];
|
|
86705
|
+
isDecoupled?: Maybe<Scalars['Boolean']['output']>;
|
|
85714
86706
|
isDefault: Scalars['Boolean']['output'];
|
|
86707
|
+
parentProduct?: Maybe<Scalars['String']['output']>;
|
|
85715
86708
|
pricingPlan: MarketplaceStorePricingPlan;
|
|
85716
86709
|
type: MarketplaceStoreEditionType;
|
|
85717
86710
|
};
|
|
@@ -87055,11 +88048,13 @@ export declare type MercuryDeleteStrategicEventCommentPayload = Payload & {
|
|
|
87055
88048
|
success: Scalars['Boolean']['output'];
|
|
87056
88049
|
};
|
|
87057
88050
|
export declare enum MercuryEntityType {
|
|
88051
|
+
ChangeProposal = "CHANGE_PROPOSAL",
|
|
87058
88052
|
Comment = "COMMENT",
|
|
87059
88053
|
FocusArea = "FOCUS_AREA",
|
|
87060
88054
|
FocusAreaStatusUpdate = "FOCUS_AREA_STATUS_UPDATE",
|
|
87061
88055
|
Program = "PROGRAM",
|
|
87062
|
-
ProgramStatusUpdate = "PROGRAM_STATUS_UPDATE"
|
|
88056
|
+
ProgramStatusUpdate = "PROGRAM_STATUS_UPDATE",
|
|
88057
|
+
StrategicEvent = "STRATEGIC_EVENT"
|
|
87063
88058
|
}
|
|
87064
88059
|
export declare enum MercuryEventType {
|
|
87065
88060
|
Archive = "ARCHIVE",
|
|
@@ -88759,6 +89754,7 @@ export declare type MercuryUnrankChangeProposalInViewPayload = Payload & {
|
|
|
88759
89754
|
__typename?: 'MercuryUnrankChangeProposalInViewPayload';
|
|
88760
89755
|
errors?: Maybe<Array<MutationError>>;
|
|
88761
89756
|
success: Scalars['Boolean']['output'];
|
|
89757
|
+
updatedChangeProposalsView?: Maybe<MercuryChangeProposalsView>;
|
|
88762
89758
|
};
|
|
88763
89759
|
export declare type MercuryUpdateChangeFocusAreaInput = {
|
|
88764
89760
|
focusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -88821,6 +89817,7 @@ export declare type MercuryUpdateChangeProposalRankInViewPayload = Payload & {
|
|
|
88821
89817
|
__typename?: 'MercuryUpdateChangeProposalRankInViewPayload';
|
|
88822
89818
|
errors?: Maybe<Array<MutationError>>;
|
|
88823
89819
|
success: Scalars['Boolean']['output'];
|
|
89820
|
+
updatedChangeProposalsView?: Maybe<MercuryChangeProposalsView>;
|
|
88824
89821
|
};
|
|
88825
89822
|
export declare type MercuryUpdateChangeProposalsViewNameInput = {
|
|
88826
89823
|
id: Scalars['ID']['input'];
|
|
@@ -88828,9 +89825,9 @@ export declare type MercuryUpdateChangeProposalsViewNameInput = {
|
|
|
88828
89825
|
};
|
|
88829
89826
|
export declare type MercuryUpdateChangeProposalsViewNamePayload = Payload & {
|
|
88830
89827
|
__typename?: 'MercuryUpdateChangeProposalsViewNamePayload';
|
|
88831
|
-
changeProposalsView?: Maybe<MercuryChangeProposalsView>;
|
|
88832
89828
|
errors?: Maybe<Array<MutationError>>;
|
|
88833
89829
|
success: Scalars['Boolean']['output'];
|
|
89830
|
+
updatedChangeProposalsView?: Maybe<MercuryChangeProposalsView>;
|
|
88834
89831
|
};
|
|
88835
89832
|
export declare type MercuryUpdateChangeProposalsViewSettingsInput = {
|
|
88836
89833
|
id: Scalars['ID']['input'];
|
|
@@ -88838,9 +89835,9 @@ export declare type MercuryUpdateChangeProposalsViewSettingsInput = {
|
|
|
88838
89835
|
};
|
|
88839
89836
|
export declare type MercuryUpdateChangeProposalsViewSettingsPayload = {
|
|
88840
89837
|
__typename?: 'MercuryUpdateChangeProposalsViewSettingsPayload';
|
|
88841
|
-
changeProposalsView?: Maybe<MercuryChangeProposalsView>;
|
|
88842
89838
|
errors?: Maybe<Array<MutationError>>;
|
|
88843
89839
|
success: Scalars['Boolean']['output'];
|
|
89840
|
+
updatedChangeProposalsView?: Maybe<MercuryChangeProposalsView>;
|
|
88844
89841
|
};
|
|
88845
89842
|
export declare type MercuryUpdateChangeQuantityInput = {
|
|
88846
89843
|
quantity?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -89285,11 +90282,14 @@ export declare type Mutation = {
|
|
|
89285
90282
|
admin_updateInvitePolicy?: Maybe<AdminUpdateInvitePolicyResponsePayload>;
|
|
89286
90283
|
agentStudio_addGroupsToCreatePermission?: Maybe<AgentStudioAddGroupsToCreatePermissionPayload>;
|
|
89287
90284
|
agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
|
|
90285
|
+
agentStudio_createBatchEvaluationJob: AgentStudioCreateBatchEvaluationJobPayload;
|
|
89288
90286
|
agentStudio_createScenario?: Maybe<AgentStudioCreateScenarioPayload>;
|
|
89289
90287
|
agentStudio_deleteAgent?: Maybe<AgentStudioDeleteAgentPayload>;
|
|
90288
|
+
agentStudio_deleteDatasetItem: AgentStudioDeleteDatasetItemPayload;
|
|
89290
90289
|
agentStudio_deleteScenario?: Maybe<AgentStudioDeleteScenarioPayload>;
|
|
89291
90290
|
agentStudio_removeActorRoles?: Maybe<AgentStudioUpdateAgentPermissionPayload>;
|
|
89292
90291
|
agentStudio_removeGroupsFromCreatePermission?: Maybe<AgentStudioRemoveGroupsFromCreatePermissionPayload>;
|
|
90292
|
+
agentStudio_runBatchEvaluationJob?: Maybe<AgentStudioBatchEvalRunJobPayload>;
|
|
89293
90293
|
agentStudio_setWidgetByContainerAri?: Maybe<AgentStudioSetWidgetByContainerAriPayload>;
|
|
89294
90294
|
agentStudio_updateActorRoles?: Maybe<AgentStudioUpdateAgentPermissionPayload>;
|
|
89295
90295
|
agentStudio_updateAgentActions?: Maybe<AgentStudioUpdateAgentActionsPayload>;
|
|
@@ -89300,6 +90300,7 @@ export declare type Mutation = {
|
|
|
89300
90300
|
agentStudio_updateCreatePermissionMode?: Maybe<AgentStudioUpdateCreatePermissionModePayload>;
|
|
89301
90301
|
agentStudio_updateScenario?: Maybe<AgentStudioUpdateScenarioPayload>;
|
|
89302
90302
|
agentStudio_updateScenarioMappingsForContainer?: Maybe<AgentStudioUpdateScenarioMappingsPayload>;
|
|
90303
|
+
agentStudio_uploadDatasetCsv?: Maybe<AgentStudioBatchEvalUploadDatasetPayload>;
|
|
89303
90304
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
89304
90305
|
appStorage?: Maybe<AppStorageMutation>;
|
|
89305
90306
|
appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
|
|
@@ -89309,6 +90310,7 @@ export declare type Mutation = {
|
|
|
89309
90310
|
archivePages?: Maybe<BulkArchivePagePayload>;
|
|
89310
90311
|
archivePolarisInsights?: Maybe<ArchivePolarisInsightsPayload>;
|
|
89311
90312
|
archiveSpace?: Maybe<ArchiveSpacePayload>;
|
|
90313
|
+
assetsDM_associateObjectTag?: Maybe<AssetsDmObjectTagAssociateResponse>;
|
|
89312
90314
|
assetsDM_autoColumnMapping?: Maybe<AssetsDmAutoColumnMappingResponse>;
|
|
89313
90315
|
assetsDM_configureDataSourceMapping?: Maybe<AssetsDmDataSourceConfigureMappingResponse>;
|
|
89314
90316
|
assetsDM_createObjectTag?: Maybe<AssetsDmObjectTagCreateResponse>;
|
|
@@ -89316,10 +90318,12 @@ export declare type Mutation = {
|
|
|
89316
90318
|
assetsDM_createSavedSearch?: Maybe<AssetsDmSavedSearchesCreateResponse>;
|
|
89317
90319
|
assetsDM_dataSource?: Maybe<AssetsDmDataSourceResponse>;
|
|
89318
90320
|
assetsDM_dataSourceCleansingRulesConfigure?: Maybe<AssetsDmDataSourceCleansingRulesConfigureResponse>;
|
|
90321
|
+
assetsDM_dataSourceCleansingRulesRunCleanse?: Maybe<AssetsDmDataSourceCleansingRulesRunCleanseResponse>;
|
|
89319
90322
|
assetsDM_dataSourceRunMerge?: Maybe<AssetsDmDataSourceRunMergeResponse>;
|
|
89320
90323
|
assetsDM_dataSourceRunTransform?: Maybe<AssetsDmDataSourceRunTransformResponse>;
|
|
89321
90324
|
assetsDM_deleteObjectTag?: Maybe<AssetsDmObjectTagDeleteResponse>;
|
|
89322
90325
|
assetsDM_deleteSavedSearch?: Maybe<AssetsDmSavedSearchesDeleteResponse>;
|
|
90326
|
+
assetsDM_dissociateObjectTag?: Maybe<AssetsDmObjectTagDissociateResponse>;
|
|
89323
90327
|
assetsDM_editObjectTag?: Maybe<AssetsDmObjectTagEditResponse>;
|
|
89324
90328
|
assetsDM_generateAdapterToken?: Maybe<AssetsDmGenerateAdapterTokenResponse>;
|
|
89325
90329
|
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
@@ -89331,6 +90335,7 @@ export declare type Mutation = {
|
|
|
89331
90335
|
avp_copyDashboardRow?: Maybe<AvpCopyDashboardRowPayload>;
|
|
89332
90336
|
avp_createChart?: Maybe<AvpCreateChartPayload>;
|
|
89333
90337
|
avp_createDashboard?: Maybe<AvpCreateDashboardPayload>;
|
|
90338
|
+
avp_createDashboardFilter?: Maybe<AvpCreateDashboardFilterPayload>;
|
|
89334
90339
|
avp_deleteChart?: Maybe<AvpDeleteChartPayload>;
|
|
89335
90340
|
avp_moveCanvasElement?: Maybe<AvpMoveCanvasElementPayload>;
|
|
89336
90341
|
avp_moveCanvasElementToNewRow?: Maybe<AvpMoveCanvasElementToNewRowPayload>;
|
|
@@ -89371,6 +90376,7 @@ export declare type Mutation = {
|
|
|
89371
90376
|
confluence_copyNote?: Maybe<ConfluenceCopyNotePayload>;
|
|
89372
90377
|
confluence_copySpaceSecurityConfiguration?: Maybe<ConfluenceCopySpaceSecurityConfigurationPayload>;
|
|
89373
90378
|
confluence_createAnswer?: Maybe<ConfluenceCreateAnswerPayload>;
|
|
90379
|
+
confluence_createCalendar?: Maybe<ConfluenceCreateCalendarPayload>;
|
|
89374
90380
|
confluence_createCommentOnAnswer?: Maybe<ConfluenceCreateCommentOnAnswerPayload>;
|
|
89375
90381
|
confluence_createCommentOnQuestion?: Maybe<ConfluenceCreateCommentOnQuestionPayload>;
|
|
89376
90382
|
confluence_createCsvExportTask?: Maybe<ConfluenceCreateCsvExportTaskPayload>;
|
|
@@ -89402,9 +90408,11 @@ export declare type Mutation = {
|
|
|
89402
90408
|
confluence_nbmBulkUpdateVerificationEntry?: Maybe<ConfluenceNbmBulkUpdateVerificationEntryPayload>;
|
|
89403
90409
|
confluence_nbmRetryScanLongTask?: Maybe<ConfluenceNbmRetryScanLongTaskPayload>;
|
|
89404
90410
|
confluence_nbmStartScanLongTask?: Maybe<ConfluenceNbmStartScanLongTaskPayload>;
|
|
90411
|
+
confluence_patchCalendar?: Maybe<ConfluencePatchCalendarPayload>;
|
|
89405
90412
|
confluence_reopenComment?: Maybe<ConfluenceReopenCommentPayload>;
|
|
89406
90413
|
confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
|
|
89407
90414
|
confluence_resolveCommentsByContentId?: Maybe<ConfluenceResolveCommentByContentIdPayload>;
|
|
90415
|
+
confluence_restoreContentVersion?: Maybe<ConfluenceRestoreContentVersionPayload>;
|
|
89408
90416
|
confluence_setSubCalendarReminder?: Maybe<ConfluenceSetSubCalendarReminderPayload>;
|
|
89409
90417
|
confluence_subscribeCalendars?: Maybe<ConfluenceSubscribeCalendarPayload>;
|
|
89410
90418
|
confluence_unmarkCommentAsDangling?: Maybe<ConfluenceUnmarkCommentAsDanglingPayload>;
|
|
@@ -89448,6 +90456,7 @@ export declare type Mutation = {
|
|
|
89448
90456
|
createAdminAnnouncementBanner?: Maybe<ConfluenceAdminAnnouncementBannerPayload>;
|
|
89449
90457
|
createApp?: Maybe<CreateAppResponse>;
|
|
89450
90458
|
createAppContainer?: Maybe<CreateAppContainerPayload>;
|
|
90459
|
+
createAppCustomScopes?: Maybe<CreateAppCustomScopesPayload>;
|
|
89451
90460
|
createAppDeployment?: Maybe<CreateAppDeploymentResponse>;
|
|
89452
90461
|
createAppDeploymentUrl?: Maybe<CreateAppDeploymentUrlResponse>;
|
|
89453
90462
|
createAppTunnels?: Maybe<CreateAppTunnelResponse>;
|
|
@@ -89661,6 +90670,20 @@ export declare type Mutation = {
|
|
|
89661
90670
|
jira_reorderProjectsSidebarMenuItem?: Maybe<JiraProjectsSidebarMenu>;
|
|
89662
90671
|
jira_restoreGlobalCustomFields?: Maybe<JiraRestoreGlobalCustomFieldsPayload>;
|
|
89663
90672
|
jira_scheduleTimelineItem?: Maybe<JiraScheduleTimelineItemPayload>;
|
|
90673
|
+
jira_setBacklogViewAssigneeFilters?: Maybe<JiraSetBacklogViewPayload>;
|
|
90674
|
+
jira_setBacklogViewCardDensity?: Maybe<JiraSetBacklogViewPayload>;
|
|
90675
|
+
jira_setBacklogViewCardFields?: Maybe<JiraSetBacklogViewPayload>;
|
|
90676
|
+
jira_setBacklogViewEmptySprintsToggle?: Maybe<JiraSetBacklogViewPayload>;
|
|
90677
|
+
jira_setBacklogViewEpicFilters?: Maybe<JiraSetBacklogViewPayload>;
|
|
90678
|
+
jira_setBacklogViewEpicPanelToggle?: Maybe<JiraSetBacklogViewPayload>;
|
|
90679
|
+
jira_setBacklogViewIssueTypeFilters?: Maybe<JiraSetBacklogViewPayload>;
|
|
90680
|
+
jira_setBacklogViewLabelFilters?: Maybe<JiraSetBacklogViewPayload>;
|
|
90681
|
+
jira_setBacklogViewQuickFilterToggle?: Maybe<JiraSetBacklogViewPayload>;
|
|
90682
|
+
jira_setBacklogViewQuickFilters?: Maybe<JiraSetBacklogViewPayload>;
|
|
90683
|
+
jira_setBacklogViewSearchText?: Maybe<JiraSetBacklogViewPayload>;
|
|
90684
|
+
jira_setBacklogViewSprintCommitmentToggle?: Maybe<JiraSetBacklogViewPayload>;
|
|
90685
|
+
jira_setBacklogViewVersionFilters?: Maybe<JiraSetBacklogViewPayload>;
|
|
90686
|
+
jira_setBacklogViewVersionPanelToggle?: Maybe<JiraSetBacklogViewPayload>;
|
|
89664
90687
|
jira_setBoardIssueCardCover?: Maybe<JiraSetBoardIssueCardCoverPayload>;
|
|
89665
90688
|
jira_setBoardViewCardFieldSelected?: Maybe<JiraSetBoardViewCardFieldSelectedPayload>;
|
|
89666
90689
|
jira_setBoardViewCardOptionState?: Maybe<JiraSetBoardViewCardOptionStatePayload>;
|
|
@@ -89875,6 +90898,7 @@ export declare type Mutation = {
|
|
|
89875
90898
|
stakeholderComms_removeStakeholderGroup?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
89876
90899
|
stakeholderComms_removeStakeholderGroups?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
89877
90900
|
stakeholderComms_removeStakeholderMembers?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
90901
|
+
stakeholderComms_resendStakeholderInvite?: Maybe<StakeholderCommsResendInviteResponse>;
|
|
89878
90902
|
stakeholderComms_updateDraftPage?: Maybe<StakeholderCommsPageResponse>;
|
|
89879
90903
|
stakeholderComms_updatePage?: Maybe<StakeholderCommsPageResponse>;
|
|
89880
90904
|
stakeholderComms_updateStakeholder?: Maybe<StakeholderCommsStakeholderResponse>;
|
|
@@ -90052,6 +91076,12 @@ export declare type MutationAgentStudio_CreateAgentArgs = {
|
|
|
90052
91076
|
cloudId: Scalars['String']['input'];
|
|
90053
91077
|
input: AgentStudioCreateAgentInput;
|
|
90054
91078
|
};
|
|
91079
|
+
export declare type MutationAgentStudio_CreateBatchEvaluationJobArgs = {
|
|
91080
|
+
cloudId: Scalars['String']['input'];
|
|
91081
|
+
input: AgentStudioCreateBatchEvaluationJobInput;
|
|
91082
|
+
productType: AgentStudioProductType;
|
|
91083
|
+
projectContainerAri: Scalars['ID']['input'];
|
|
91084
|
+
};
|
|
90055
91085
|
export declare type MutationAgentStudio_CreateScenarioArgs = {
|
|
90056
91086
|
cloudId: Scalars['String']['input'];
|
|
90057
91087
|
input: AgentStudioCreateScenarioInput;
|
|
@@ -90059,6 +91089,12 @@ export declare type MutationAgentStudio_CreateScenarioArgs = {
|
|
|
90059
91089
|
export declare type MutationAgentStudio_DeleteAgentArgs = {
|
|
90060
91090
|
id: Scalars['ID']['input'];
|
|
90061
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
|
+
};
|
|
90062
91098
|
export declare type MutationAgentStudio_DeleteScenarioArgs = {
|
|
90063
91099
|
id: Scalars['ID']['input'];
|
|
90064
91100
|
};
|
|
@@ -90070,6 +91106,12 @@ export declare type MutationAgentStudio_RemoveGroupsFromCreatePermissionArgs = {
|
|
|
90070
91106
|
cloudId: Scalars['ID']['input'];
|
|
90071
91107
|
groupARIs: Array<Scalars['ID']['input']>;
|
|
90072
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
|
+
};
|
|
90073
91115
|
export declare type MutationAgentStudio_SetWidgetByContainerAriArgs = {
|
|
90074
91116
|
cloudId: Scalars['String']['input'];
|
|
90075
91117
|
containerAri: Scalars['ID']['input'];
|
|
@@ -90112,6 +91154,12 @@ export declare type MutationAgentStudio_UpdateScenarioMappingsForContainerArgs =
|
|
|
90112
91154
|
containerId: Scalars['String']['input'];
|
|
90113
91155
|
scenarioIds: Array<Scalars['ID']['input']>;
|
|
90114
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
|
+
};
|
|
90115
91163
|
export declare type MutationAppStorage_AdminArgs = {
|
|
90116
91164
|
appId: Scalars['ID']['input'];
|
|
90117
91165
|
};
|
|
@@ -90128,6 +91176,11 @@ export declare type MutationArchivePolarisInsightsArgs = {
|
|
|
90128
91176
|
export declare type MutationArchiveSpaceArgs = {
|
|
90129
91177
|
input: ArchiveSpaceInput;
|
|
90130
91178
|
};
|
|
91179
|
+
export declare type MutationAssetsDm_AssociateObjectTagArgs = {
|
|
91180
|
+
cloudId: Scalars['ID']['input'];
|
|
91181
|
+
input: AssetsDmObjectTagAssociateInput;
|
|
91182
|
+
workspaceId: Scalars['ID']['input'];
|
|
91183
|
+
};
|
|
90131
91184
|
export declare type MutationAssetsDm_AutoColumnMappingArgs = {
|
|
90132
91185
|
autoColumnMappingInput?: InputMaybe<AssetsDmAutoColumnMappingInput>;
|
|
90133
91186
|
cloudId: Scalars['ID']['input'];
|
|
@@ -90174,6 +91227,11 @@ export declare type MutationAssetsDm_DataSourceCleansingRulesConfigureArgs = {
|
|
|
90174
91227
|
dataSourceId: Scalars['ID']['input'];
|
|
90175
91228
|
workspaceId: Scalars['ID']['input'];
|
|
90176
91229
|
};
|
|
91230
|
+
export declare type MutationAssetsDm_DataSourceCleansingRulesRunCleanseArgs = {
|
|
91231
|
+
cloudId: Scalars['ID']['input'];
|
|
91232
|
+
dataSourceId: Scalars['ID']['input'];
|
|
91233
|
+
workspaceId: Scalars['ID']['input'];
|
|
91234
|
+
};
|
|
90177
91235
|
export declare type MutationAssetsDm_DataSourceRunMergeArgs = {
|
|
90178
91236
|
cloudId: Scalars['ID']['input'];
|
|
90179
91237
|
dataSourceIds: Array<Scalars['ID']['input']>;
|
|
@@ -90194,6 +91252,11 @@ export declare type MutationAssetsDm_DeleteSavedSearchArgs = {
|
|
|
90194
91252
|
savedSearchId: Scalars['ID']['input'];
|
|
90195
91253
|
workspaceId: Scalars['ID']['input'];
|
|
90196
91254
|
};
|
|
91255
|
+
export declare type MutationAssetsDm_DissociateObjectTagArgs = {
|
|
91256
|
+
cloudId: Scalars['ID']['input'];
|
|
91257
|
+
input: AssetsDmObjectTagDissociateInput;
|
|
91258
|
+
workspaceId: Scalars['ID']['input'];
|
|
91259
|
+
};
|
|
90197
91260
|
export declare type MutationAssetsDm_EditObjectTagArgs = {
|
|
90198
91261
|
cloudId: Scalars['ID']['input'];
|
|
90199
91262
|
input: AssetsDmObjectTagEditInput;
|
|
@@ -90231,6 +91294,9 @@ export declare type MutationAvp_CreateChartArgs = {
|
|
|
90231
91294
|
export declare type MutationAvp_CreateDashboardArgs = {
|
|
90232
91295
|
input: AvpCreateDashboardInput;
|
|
90233
91296
|
};
|
|
91297
|
+
export declare type MutationAvp_CreateDashboardFilterArgs = {
|
|
91298
|
+
input: AvpCreateDashboardFilterInput;
|
|
91299
|
+
};
|
|
90234
91300
|
export declare type MutationAvp_DeleteChartArgs = {
|
|
90235
91301
|
input: AvpDeleteChartInput;
|
|
90236
91302
|
};
|
|
@@ -90358,6 +91424,10 @@ export declare type MutationConfluence_CreateAnswerArgs = {
|
|
|
90358
91424
|
cloudId: Scalars['ID']['input'];
|
|
90359
91425
|
input: ConfluenceCreateAnswerInput;
|
|
90360
91426
|
};
|
|
91427
|
+
export declare type MutationConfluence_CreateCalendarArgs = {
|
|
91428
|
+
cloudId: Scalars['ID']['input'];
|
|
91429
|
+
input: ConfluenceCreateCalendarInput;
|
|
91430
|
+
};
|
|
90361
91431
|
export declare type MutationConfluence_CreateCommentOnAnswerArgs = {
|
|
90362
91432
|
cloudId: Scalars['ID']['input'];
|
|
90363
91433
|
input: ConfluenceCreateCommentOnAnswerInput;
|
|
@@ -90478,6 +91548,10 @@ export declare type MutationConfluence_NbmStartScanLongTaskArgs = {
|
|
|
90478
91548
|
cloudId: Scalars['ID']['input'];
|
|
90479
91549
|
input: ConfluenceNbmStartScanLongTaskInput;
|
|
90480
91550
|
};
|
|
91551
|
+
export declare type MutationConfluence_PatchCalendarArgs = {
|
|
91552
|
+
cloudId: Scalars['ID']['input'];
|
|
91553
|
+
input: ConfluencePatchCalendarInput;
|
|
91554
|
+
};
|
|
90481
91555
|
export declare type MutationConfluence_ReopenCommentArgs = {
|
|
90482
91556
|
cloudId: Scalars['ID']['input'];
|
|
90483
91557
|
commentId: Scalars['ID']['input'];
|
|
@@ -90491,6 +91565,10 @@ export declare type MutationConfluence_ResolveCommentsByContentIdArgs = {
|
|
|
90491
91565
|
contentId: Scalars['ID']['input'];
|
|
90492
91566
|
resolveView?: InputMaybe<ConfluenceCommentResolveAllLocation>;
|
|
90493
91567
|
};
|
|
91568
|
+
export declare type MutationConfluence_RestoreContentVersionArgs = {
|
|
91569
|
+
cloudId: Scalars['ID']['input'];
|
|
91570
|
+
input?: InputMaybe<ConfluenceRestoreContentVersionInput>;
|
|
91571
|
+
};
|
|
90494
91572
|
export declare type MutationConfluence_SetSubCalendarReminderArgs = {
|
|
90495
91573
|
cloudId: Scalars['ID']['input'];
|
|
90496
91574
|
input: ConfluenceSetSubCalendarReminderInput;
|
|
@@ -90649,6 +91727,9 @@ export declare type MutationCreateAppArgs = {
|
|
|
90649
91727
|
export declare type MutationCreateAppContainerArgs = {
|
|
90650
91728
|
input: AppContainerInput;
|
|
90651
91729
|
};
|
|
91730
|
+
export declare type MutationCreateAppCustomScopesArgs = {
|
|
91731
|
+
input: CreateAppCustomScopesInput;
|
|
91732
|
+
};
|
|
90652
91733
|
export declare type MutationCreateAppDeploymentArgs = {
|
|
90653
91734
|
input: CreateAppDeploymentInput;
|
|
90654
91735
|
};
|
|
@@ -91354,6 +92435,48 @@ export declare type MutationJira_ScheduleTimelineItemArgs = {
|
|
|
91354
92435
|
cloudId: Scalars['ID']['input'];
|
|
91355
92436
|
input: JiraScheduleTimelineItemInput;
|
|
91356
92437
|
};
|
|
92438
|
+
export declare type MutationJira_SetBacklogViewAssigneeFiltersArgs = {
|
|
92439
|
+
input: JiraSetBacklogViewStringFiltersInput;
|
|
92440
|
+
};
|
|
92441
|
+
export declare type MutationJira_SetBacklogViewCardDensityArgs = {
|
|
92442
|
+
input: JiraSetBacklogViewCardDensityInput;
|
|
92443
|
+
};
|
|
92444
|
+
export declare type MutationJira_SetBacklogViewCardFieldsArgs = {
|
|
92445
|
+
input: JiraSetBacklogViewCardFieldsInput;
|
|
92446
|
+
};
|
|
92447
|
+
export declare type MutationJira_SetBacklogViewEmptySprintsToggleArgs = {
|
|
92448
|
+
input: JiraSetViewSettingToggleInput;
|
|
92449
|
+
};
|
|
92450
|
+
export declare type MutationJira_SetBacklogViewEpicFiltersArgs = {
|
|
92451
|
+
input: JiraSetBacklogViewStringFiltersInput;
|
|
92452
|
+
};
|
|
92453
|
+
export declare type MutationJira_SetBacklogViewEpicPanelToggleArgs = {
|
|
92454
|
+
input: JiraSetViewSettingToggleInput;
|
|
92455
|
+
};
|
|
92456
|
+
export declare type MutationJira_SetBacklogViewIssueTypeFiltersArgs = {
|
|
92457
|
+
input: JiraSetBacklogViewStringFiltersInput;
|
|
92458
|
+
};
|
|
92459
|
+
export declare type MutationJira_SetBacklogViewLabelFiltersArgs = {
|
|
92460
|
+
input: JiraSetBacklogViewStringFiltersInput;
|
|
92461
|
+
};
|
|
92462
|
+
export declare type MutationJira_SetBacklogViewQuickFilterToggleArgs = {
|
|
92463
|
+
input: JiraSetViewSettingToggleInput;
|
|
92464
|
+
};
|
|
92465
|
+
export declare type MutationJira_SetBacklogViewQuickFiltersArgs = {
|
|
92466
|
+
input: JiraSetBacklogViewStringFiltersInput;
|
|
92467
|
+
};
|
|
92468
|
+
export declare type MutationJira_SetBacklogViewSearchTextArgs = {
|
|
92469
|
+
input: JiraSetBacklogViewTextInput;
|
|
92470
|
+
};
|
|
92471
|
+
export declare type MutationJira_SetBacklogViewSprintCommitmentToggleArgs = {
|
|
92472
|
+
input: JiraSetViewSettingToggleInput;
|
|
92473
|
+
};
|
|
92474
|
+
export declare type MutationJira_SetBacklogViewVersionFiltersArgs = {
|
|
92475
|
+
input: JiraSetBacklogViewStringFiltersInput;
|
|
92476
|
+
};
|
|
92477
|
+
export declare type MutationJira_SetBacklogViewVersionPanelToggleArgs = {
|
|
92478
|
+
input: JiraSetViewSettingToggleInput;
|
|
92479
|
+
};
|
|
91357
92480
|
export declare type MutationJira_SetBoardIssueCardCoverArgs = {
|
|
91358
92481
|
input: JiraSetBoardIssueCardCoverInput;
|
|
91359
92482
|
};
|
|
@@ -91967,6 +93090,7 @@ export declare type MutationStakeholderComms_BatchProcessDraftComponentsArgs = {
|
|
|
91967
93090
|
batchComponentProcessRequest: StakeholderCommsBatchComponentProcessRequest;
|
|
91968
93091
|
};
|
|
91969
93092
|
export declare type MutationStakeholderComms_BulkCreateStakeholdersArgs = {
|
|
93093
|
+
joiningGroupId?: InputMaybe<Scalars['String']['input']>;
|
|
91970
93094
|
stakeholders: Array<StakeholderCommsCreateStakeholderInput>;
|
|
91971
93095
|
};
|
|
91972
93096
|
export declare type MutationStakeholderComms_BulkDeleteStakeholdersArgs = {
|
|
@@ -91979,6 +93103,7 @@ export declare type MutationStakeholderComms_CreatePageArgs = {
|
|
|
91979
93103
|
page: StakeholderCommsCreatePageInputType;
|
|
91980
93104
|
};
|
|
91981
93105
|
export declare type MutationStakeholderComms_CreateStakeholderArgs = {
|
|
93106
|
+
joiningGroupId?: InputMaybe<Scalars['String']['input']>;
|
|
91982
93107
|
stakeholder: StakeholderCommsCreateStakeholderInput;
|
|
91983
93108
|
};
|
|
91984
93109
|
export declare type MutationStakeholderComms_CreateStakeholderGroupAndMembersArgs = {
|
|
@@ -92004,6 +93129,9 @@ export declare type MutationStakeholderComms_RemoveStakeholderMembersArgs = {
|
|
|
92004
93129
|
groupId: Scalars['String']['input'];
|
|
92005
93130
|
stakeholderIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
92006
93131
|
};
|
|
93132
|
+
export declare type MutationStakeholderComms_ResendStakeholderInviteArgs = {
|
|
93133
|
+
resendInviteInput: StakeholderCommsResendInviteInput;
|
|
93134
|
+
};
|
|
92007
93135
|
export declare type MutationStakeholderComms_UpdateDraftPageArgs = {
|
|
92008
93136
|
page: StakeholderCommsUpdatePageInputType;
|
|
92009
93137
|
};
|
|
@@ -95166,12 +96294,21 @@ export declare type Query = {
|
|
|
95166
96294
|
agentAI_contextPanel?: Maybe<AgentAiContextPanelResult>;
|
|
95167
96295
|
agentAI_summarizeIssue?: Maybe<AgentAiIssueSummaryResult>;
|
|
95168
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>;
|
|
95169
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>;
|
|
95170
96306
|
agentStudio_getAgentActorRoles?: Maybe<AgentStudioActorRoles>;
|
|
95171
96307
|
agentStudio_getAgents?: Maybe<AgentStudioAgentsConnection>;
|
|
95172
96308
|
agentStudio_getByExternalReference?: Maybe<AgentStudioAgentResult>;
|
|
95173
96309
|
agentStudio_getCreateAgentPermissions?: Maybe<AgentStudioAgentCreatePermissionsConnection>;
|
|
95174
96310
|
agentStudio_getToolsByIdAndSource?: Maybe<Array<AgentStudioTool>>;
|
|
96311
|
+
agentStudio_getWidgetContainersByAgentId?: Maybe<AgentStudioWidgetContainersByAgentIdResult>;
|
|
95175
96312
|
agentStudio_scenarioById?: Maybe<AgentStudioScenarioResult>;
|
|
95176
96313
|
agentStudio_scenarioListByContainerId?: Maybe<AgentStudioScenariosResult>;
|
|
95177
96314
|
agentStudio_scenariosByIds?: Maybe<Array<Maybe<AgentStudioScenario>>>;
|
|
@@ -95197,6 +96334,7 @@ export declare type Query = {
|
|
|
95197
96334
|
appContainerServices?: Maybe<AppContainerServices>;
|
|
95198
96335
|
appContainers?: Maybe<Array<AppContainer>>;
|
|
95199
96336
|
appContributors: Array<AppContributor>;
|
|
96337
|
+
appCustomScopes?: Maybe<AppCustomScopeConnection>;
|
|
95200
96338
|
appDeployment?: Maybe<AppDeployment>;
|
|
95201
96339
|
appHostServiceScopes: Array<Maybe<AppHostServiceScope>>;
|
|
95202
96340
|
appHostServices?: Maybe<Array<AppHostService>>;
|
|
@@ -95222,6 +96360,8 @@ export declare type Query = {
|
|
|
95222
96360
|
assetsDM_dataSourceMerge?: Maybe<AssetsDmDataSourceMergeResponse>;
|
|
95223
96361
|
assetsDM_dataSourceTransform?: Maybe<AssetsDmDataSourceTransform>;
|
|
95224
96362
|
assetsDM_datasourceCleansingRules?: Maybe<AssetsDmDataSourceCleansingRulesResponse>;
|
|
96363
|
+
assetsDM_getCleansingExecutive?: Maybe<AssetsDmDataSourceCleansingCleansingExecutive>;
|
|
96364
|
+
assetsDM_getDataSourceForCleansing?: Maybe<AssetsDmGetDataSourceForCleansingResponse>;
|
|
95225
96365
|
assetsDM_objectClassMetadata?: Maybe<AssetsDmObjectClassMetadata>;
|
|
95226
96366
|
assetsDM_objectClasses?: Maybe<Array<Maybe<AssetsDmObjectClass>>>;
|
|
95227
96367
|
assetsDM_objectTags?: Maybe<AssetsDmObjectTags>;
|
|
@@ -95328,6 +96468,7 @@ export declare type Query = {
|
|
|
95328
96468
|
confluence_isWatchingLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
95329
96469
|
confluence_latestKnowledgeGraphObjectV2?: Maybe<KnowledgeGraphObjectResponseV2>;
|
|
95330
96470
|
confluence_loomEntryPoints?: Maybe<ConfluenceLoomEntryPoints>;
|
|
96471
|
+
confluence_macroPlaceholderAdf?: Maybe<ConfluenceMacroPlaceholderAdf>;
|
|
95331
96472
|
confluence_macrosByIds?: Maybe<Array<Maybe<Macro>>>;
|
|
95332
96473
|
confluence_mediaTokenData?: Maybe<ConfluenceMediaTokenData>;
|
|
95333
96474
|
confluence_nbmScanList?: Maybe<ConfluenceNbmScanConnection>;
|
|
@@ -95338,6 +96479,7 @@ export declare type Query = {
|
|
|
95338
96479
|
confluence_pdfExportDownloadLink?: Maybe<ConfluencePdfExportDownloadLink>;
|
|
95339
96480
|
confluence_pdfExportTask?: Maybe<ConfluencePdfExportTask>;
|
|
95340
96481
|
confluence_pendingRequestExists?: Maybe<ConfluencePendingAccessRequest>;
|
|
96482
|
+
confluence_popularCalendars?: Maybe<ConfluenceCalendarConnection>;
|
|
95341
96483
|
confluence_publicLinkSpaceHomePage?: Maybe<PublicLinkPage>;
|
|
95342
96484
|
confluence_question?: Maybe<ConfluenceQuestion>;
|
|
95343
96485
|
confluence_questions?: Maybe<Array<Maybe<ConfluenceQuestion>>>;
|
|
@@ -95399,6 +96541,7 @@ export declare type Query = {
|
|
|
95399
96541
|
contributorsLinkedToAtlasProject?: Maybe<GraphStoreCypherQueryConnection>;
|
|
95400
96542
|
contributorsLinkedToConfluencePage?: Maybe<GraphStoreCypherQueryConnection>;
|
|
95401
96543
|
contributorsLinkedToConfluencePageV2?: Maybe<GraphStoreCypherQueryConnection>;
|
|
96544
|
+
convoai_homeThreads?: Maybe<ConvoAiHomeThreadsResult>;
|
|
95402
96545
|
convoai_jiraEchoAiFeature?: Maybe<Scalars['String']['output']>;
|
|
95403
96546
|
convoai_jiraRelated3pLinksSuggestionsByIssueId?: Maybe<ConvoAiJira3pRelatedLinksResult>;
|
|
95404
96547
|
convoai_jiraRelatedResourcesSuggestions?: Maybe<ConvoAiJiraIssueRelatedResourcesResult>;
|
|
@@ -95412,6 +96555,8 @@ export declare type Query = {
|
|
|
95412
96555
|
cpls_customContributionTargets: Array<CplsCustomContributionTarget>;
|
|
95413
96556
|
cqlMetaData?: Maybe<Confluence_CqlMetaData>;
|
|
95414
96557
|
crossProjectIssueMentionsInComments?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
96558
|
+
crossProjectIssueMentionsInCommentsV2?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
96559
|
+
crossProjectIssueMentionsInDescription?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
95415
96560
|
crossProjectIssuesLinkedToSamePullRequest?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
95416
96561
|
crossProjectIssuesMentionedInExternalConversations?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
95417
96562
|
crossProjectIssuesMentionedInExternalMessages?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
@@ -95549,6 +96694,7 @@ export declare type Query = {
|
|
|
95549
96694
|
graphIntegration_mcpAdminManagementMcpServers?: Maybe<GraphIntegrationMcpAdminManagementMcpServerConnection>;
|
|
95550
96695
|
graphIntegration_mcpAdminManagementMcpTools?: Maybe<GraphIntegrationMcpAdminManagementMcpToolConnection>;
|
|
95551
96696
|
graphIntegration_mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
96697
|
+
graphIntegration_mcpTools?: Maybe<Array<Maybe<GraphIntegrationMcpToolNode>>>;
|
|
95552
96698
|
graphIntegration_twgCapabilityContainer?: Maybe<GraphIntegrationTwgCapabilityContainer>;
|
|
95553
96699
|
graphIntegration_twgCapabilityContainersInContext?: Maybe<GraphIntegrationTwgCapabilityContainerConnection>;
|
|
95554
96700
|
graphStore?: Maybe<GraphStore>;
|
|
@@ -95649,6 +96795,7 @@ export declare type Query = {
|
|
|
95649
96795
|
logAccessByContexts?: Maybe<Array<InstallationContextWithInstallationIdResponse>>;
|
|
95650
96796
|
lookAndFeel?: Maybe<LookAndFeelSettings>;
|
|
95651
96797
|
loomToken?: Maybe<LoomToken>;
|
|
96798
|
+
loomUnauthenticated_primaryAuthTypeForEmail?: Maybe<LoomUnauthenticatedUserPrimaryAuthType>;
|
|
95652
96799
|
loomUserStatus?: Maybe<LoomUserStatus>;
|
|
95653
96800
|
loom_comment?: Maybe<LoomComment>;
|
|
95654
96801
|
loom_comments?: Maybe<Array<Maybe<LoomComment>>>;
|
|
@@ -95771,6 +96918,7 @@ export declare type Query = {
|
|
|
95771
96918
|
pushNotificationSettings?: Maybe<ConfluencePushNotificationSettings>;
|
|
95772
96919
|
queuesprioritygroups_priorityGroups?: Maybe<QueuesPriorityGroupsResults>;
|
|
95773
96920
|
quickReload?: Maybe<QuickReload>;
|
|
96921
|
+
radar_availableCustomFieldsFromLastSync?: Maybe<RadarAvailableCustomFieldsFromLastSync>;
|
|
95774
96922
|
radar_connectors?: Maybe<Array<RadarConnector>>;
|
|
95775
96923
|
radar_fieldValues?: Maybe<RadarFieldValuesConnection>;
|
|
95776
96924
|
radar_groupMetrics?: Maybe<RadarGroupMetricsConnection>;
|
|
@@ -95851,6 +96999,7 @@ export declare type Query = {
|
|
|
95851
96999
|
stakeholderComms_getPageById?: Maybe<StakeholderCommsPageResponse>;
|
|
95852
97000
|
stakeholderComms_getPageByName?: Maybe<StakeholderCommsPageResponse>;
|
|
95853
97001
|
stakeholderComms_getPageUptimePercentage?: Maybe<StakeholderCommsPageUptimePercentageResponse>;
|
|
97002
|
+
stakeholderComms_getPagesSummaryByCloudId?: Maybe<StakeholderCommsPagesSummaryByCloudIdResponse>;
|
|
95854
97003
|
stakeholderComms_getStakeholder?: Maybe<StakeholderCommsStakeholderResponse>;
|
|
95855
97004
|
stakeholderComms_getStakeholderGroup?: Maybe<StakeholderCommsStakeholderGroup>;
|
|
95856
97005
|
stakeholderComms_getStakeholderGroupByMembership?: Maybe<Array<Maybe<StakeholderCommsStakeholderGroup>>>;
|
|
@@ -95860,6 +97009,9 @@ export declare type Query = {
|
|
|
95860
97009
|
stakeholderComms_getStakeholderGroupsWithStakeholders?: Maybe<StakeholderCommsStakeholderGroupAndStakeholdersConnection>;
|
|
95861
97010
|
stakeholderComms_getStakeholdersByAssignment?: Maybe<StakeholderCommsPaginatedStakeholderResults>;
|
|
95862
97011
|
stakeholderComms_getStakeholdersByAssignmentV2?: Maybe<StakeholderCommsStakeholderConnection>;
|
|
97012
|
+
stakeholderComms_getWorkspaceAriMappingByCustomDomain?: Maybe<StakeholderCommsWorkspaceAriMappingResponse>;
|
|
97013
|
+
stakeholderComms_getWorkspaceAriMappingByPageId?: Maybe<StakeholderCommsWorkspaceAriMappingResponse>;
|
|
97014
|
+
stakeholderComms_getWorkspaceAriMappingByStatuspageDomain?: Maybe<StakeholderCommsWorkspaceAriMappingResponse>;
|
|
95863
97015
|
stakeholderComms_isPageNameUnique?: Maybe<Scalars['Boolean']['output']>;
|
|
95864
97016
|
stakeholderComms_isStakeholderGroupNameUnique?: Maybe<Scalars['Boolean']['output']>;
|
|
95865
97017
|
stakeholderComms_listStakeholders?: Maybe<StakeholderCommsStakeholderConnection>;
|
|
@@ -96006,6 +97158,7 @@ export declare type QueryAdmin_UsersArgs = {
|
|
|
96006
97158
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
96007
97159
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
96008
97160
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
97161
|
+
orgId: Scalars['String']['input'];
|
|
96009
97162
|
searchUserInput?: InputMaybe<AdminSearchUserInput>;
|
|
96010
97163
|
};
|
|
96011
97164
|
export declare type QueryAdmin_WorkspaceByIdArgs = {
|
|
@@ -96046,6 +97199,31 @@ export declare type QueryAgentAi_SummarizeIssueArgs = {
|
|
|
96046
97199
|
export declare type QueryAgentStudio_AgentByIdArgs = {
|
|
96047
97200
|
id: Scalars['ID']['input'];
|
|
96048
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
|
+
};
|
|
96049
97227
|
export declare type QueryAgentStudio_ConversationReportByAgentIdArgs = {
|
|
96050
97228
|
cloudId: Scalars['String']['input'];
|
|
96051
97229
|
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -96053,6 +97231,29 @@ export declare type QueryAgentStudio_ConversationReportByAgentIdArgs = {
|
|
|
96053
97231
|
period?: InputMaybe<AgentStudioConversationReportPeriod>;
|
|
96054
97232
|
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
96055
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
|
+
};
|
|
96056
97257
|
export declare type QueryAgentStudio_GetAgentActorRolesArgs = {
|
|
96057
97258
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
96058
97259
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -96076,6 +97277,10 @@ export declare type QueryAgentStudio_GetToolsByIdAndSourceArgs = {
|
|
|
96076
97277
|
cloudId: Scalars['String']['input'];
|
|
96077
97278
|
toolsToFetch: Array<AgentStudioToolIdAndSource>;
|
|
96078
97279
|
};
|
|
97280
|
+
export declare type QueryAgentStudio_GetWidgetContainersByAgentIdArgs = {
|
|
97281
|
+
agentId: Scalars['ID']['input'];
|
|
97282
|
+
cloudId: Scalars['String']['input'];
|
|
97283
|
+
};
|
|
96079
97284
|
export declare type QueryAgentStudio_ScenarioByIdArgs = {
|
|
96080
97285
|
containerId: Scalars['ID']['input'];
|
|
96081
97286
|
id: Scalars['ID']['input'];
|
|
@@ -96188,6 +97393,12 @@ export declare type QueryAppContainersArgs = {
|
|
|
96188
97393
|
export declare type QueryAppContributorsArgs = {
|
|
96189
97394
|
id: Scalars['ID']['input'];
|
|
96190
97395
|
};
|
|
97396
|
+
export declare type QueryAppCustomScopesArgs = {
|
|
97397
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
97398
|
+
appId: Scalars['ID']['input'];
|
|
97399
|
+
environmentId: Scalars['ID']['input'];
|
|
97400
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
97401
|
+
};
|
|
96191
97402
|
export declare type QueryAppDeploymentArgs = {
|
|
96192
97403
|
appId: Scalars['ID']['input'];
|
|
96193
97404
|
environmentKey: Scalars['String']['input'];
|
|
@@ -96321,6 +97532,16 @@ export declare type QueryAssetsDm_DatasourceCleansingRulesArgs = {
|
|
|
96321
97532
|
dataSourceId: Scalars['ID']['input'];
|
|
96322
97533
|
workspaceId: Scalars['ID']['input'];
|
|
96323
97534
|
};
|
|
97535
|
+
export declare type QueryAssetsDm_GetCleansingExecutiveArgs = {
|
|
97536
|
+
cloudId: Scalars['ID']['input'];
|
|
97537
|
+
dataSourceId: Scalars['ID']['input'];
|
|
97538
|
+
workspaceId: Scalars['ID']['input'];
|
|
97539
|
+
};
|
|
97540
|
+
export declare type QueryAssetsDm_GetDataSourceForCleansingArgs = {
|
|
97541
|
+
cloudId: Scalars['ID']['input'];
|
|
97542
|
+
dataSourceId: Scalars['ID']['input'];
|
|
97543
|
+
workspaceId: Scalars['ID']['input'];
|
|
97544
|
+
};
|
|
96324
97545
|
export declare type QueryAssetsDm_ObjectClassMetadataArgs = {
|
|
96325
97546
|
cloudId: Scalars['ID']['input'];
|
|
96326
97547
|
objectId: Scalars['ID']['input'];
|
|
@@ -96794,6 +98015,10 @@ export declare type QueryConfluence_LatestKnowledgeGraphObjectV2Args = {
|
|
|
96794
98015
|
export declare type QueryConfluence_LoomEntryPointsArgs = {
|
|
96795
98016
|
cloudId: Scalars['ID']['input'];
|
|
96796
98017
|
};
|
|
98018
|
+
export declare type QueryConfluence_MacroPlaceholderAdfArgs = {
|
|
98019
|
+
id: Scalars['ID']['input'];
|
|
98020
|
+
macroDefinition: ConfluenceMacroDefinitionInput;
|
|
98021
|
+
};
|
|
96797
98022
|
export declare type QueryConfluence_MacrosByIdsArgs = {
|
|
96798
98023
|
cloudId: Scalars['ID']['input'];
|
|
96799
98024
|
contentId: Scalars['ID']['input'];
|
|
@@ -96842,6 +98067,13 @@ export declare type QueryConfluence_PendingRequestExistsArgs = {
|
|
|
96842
98067
|
cloudId: Scalars['ID']['input'];
|
|
96843
98068
|
contentId: Scalars['ID']['input'];
|
|
96844
98069
|
};
|
|
98070
|
+
export declare type QueryConfluence_PopularCalendarsArgs = {
|
|
98071
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
98072
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
98073
|
+
cloudId: Scalars['ID']['input'];
|
|
98074
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
98075
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
98076
|
+
};
|
|
96845
98077
|
export declare type QueryConfluence_PublicLinkSpaceHomePageArgs = {
|
|
96846
98078
|
cloudId: Scalars['ID']['input'];
|
|
96847
98079
|
spaceKey: Scalars['String']['input'];
|
|
@@ -97175,6 +98407,15 @@ export declare type QueryContributorsLinkedToConfluencePageV2Args = {
|
|
|
97175
98407
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
97176
98408
|
pageId: Scalars['ID']['input'];
|
|
97177
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
|
+
};
|
|
97178
98419
|
export declare type QueryConvoai_JiraEchoAiFeatureArgs = {
|
|
97179
98420
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
97180
98421
|
text?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -97186,7 +98427,7 @@ export declare type QueryConvoai_JiraRelated3pLinksSuggestionsByIssueIdArgs = {
|
|
|
97186
98427
|
id: Scalars['ID']['input'];
|
|
97187
98428
|
issueKey: Scalars['String']['input'];
|
|
97188
98429
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
97189
|
-
projectId?: InputMaybe<Scalars['
|
|
98430
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
97190
98431
|
};
|
|
97191
98432
|
export declare type QueryConvoai_JiraRelatedResourcesSuggestionsArgs = {
|
|
97192
98433
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -97259,6 +98500,16 @@ export declare type QueryCrossProjectIssueMentionsInCommentsArgs = {
|
|
|
97259
98500
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
97260
98501
|
projectId: Scalars['ID']['input'];
|
|
97261
98502
|
};
|
|
98503
|
+
export declare type QueryCrossProjectIssueMentionsInCommentsV2Args = {
|
|
98504
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
98505
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
98506
|
+
projectId: Scalars['ID']['input'];
|
|
98507
|
+
};
|
|
98508
|
+
export declare type QueryCrossProjectIssueMentionsInDescriptionArgs = {
|
|
98509
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
98510
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
98511
|
+
projectId: Scalars['ID']['input'];
|
|
98512
|
+
};
|
|
97262
98513
|
export declare type QueryCrossProjectIssuesLinkedToSamePullRequestArgs = {
|
|
97263
98514
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
97264
98515
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -97797,6 +99048,9 @@ export declare type QueryGraphIntegration_McpAdminManagementMcpToolsArgs = {
|
|
|
97797
99048
|
export declare type QueryGraphIntegration_McpServersArgs = {
|
|
97798
99049
|
ids: Array<Scalars['ID']['input']>;
|
|
97799
99050
|
};
|
|
99051
|
+
export declare type QueryGraphIntegration_McpToolsArgs = {
|
|
99052
|
+
ids: Array<Scalars['ID']['input']>;
|
|
99053
|
+
};
|
|
97800
99054
|
export declare type QueryGraphIntegration_TwgCapabilityContainerArgs = {
|
|
97801
99055
|
contextAri: Scalars['ID']['input'];
|
|
97802
99056
|
id: Scalars['String']['input'];
|
|
@@ -98122,6 +99376,9 @@ export declare type QueryLogAccessByContextsArgs = {
|
|
|
98122
99376
|
export declare type QueryLookAndFeelArgs = {
|
|
98123
99377
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
98124
99378
|
};
|
|
99379
|
+
export declare type QueryLoomUnauthenticated_PrimaryAuthTypeForEmailArgs = {
|
|
99380
|
+
email: Scalars['String']['input'];
|
|
99381
|
+
};
|
|
98125
99382
|
export declare type QueryLoom_CommentArgs = {
|
|
98126
99383
|
id: Scalars['ID']['input'];
|
|
98127
99384
|
};
|
|
@@ -98532,6 +99789,9 @@ export declare type QueryQuickReloadArgs = {
|
|
|
98532
99789
|
pageId: Scalars['Long']['input'];
|
|
98533
99790
|
since: Scalars['Long']['input'];
|
|
98534
99791
|
};
|
|
99792
|
+
export declare type QueryRadar_AvailableCustomFieldsFromLastSyncArgs = {
|
|
99793
|
+
cloudId: Scalars['ID']['input'];
|
|
99794
|
+
};
|
|
98535
99795
|
export declare type QueryRadar_ConnectorsArgs = {
|
|
98536
99796
|
cloudId: Scalars['ID']['input'];
|
|
98537
99797
|
};
|
|
@@ -98873,6 +100133,9 @@ export declare type QueryStakeholderComms_GetPageByNameArgs = {
|
|
|
98873
100133
|
export declare type QueryStakeholderComms_GetPageUptimePercentageArgs = {
|
|
98874
100134
|
pageId?: InputMaybe<Scalars['String']['input']>;
|
|
98875
100135
|
};
|
|
100136
|
+
export declare type QueryStakeholderComms_GetPagesSummaryByCloudIdArgs = {
|
|
100137
|
+
cloudId: Scalars['String']['input'];
|
|
100138
|
+
};
|
|
98876
100139
|
export declare type QueryStakeholderComms_GetStakeholderArgs = {
|
|
98877
100140
|
stakeholderIdInput: StakeholderCommsStakeholderIdInput;
|
|
98878
100141
|
};
|
|
@@ -98906,6 +100169,15 @@ export declare type QueryStakeholderComms_GetStakeholdersByAssignmentArgs = {
|
|
|
98906
100169
|
export declare type QueryStakeholderComms_GetStakeholdersByAssignmentV2Args = {
|
|
98907
100170
|
stakeholderConnectionInput: StakeholderCommsStakeholderConnectionInput;
|
|
98908
100171
|
};
|
|
100172
|
+
export declare type QueryStakeholderComms_GetWorkspaceAriMappingByCustomDomainArgs = {
|
|
100173
|
+
customDomain: Scalars['String']['input'];
|
|
100174
|
+
};
|
|
100175
|
+
export declare type QueryStakeholderComms_GetWorkspaceAriMappingByPageIdArgs = {
|
|
100176
|
+
id: Scalars['String']['input'];
|
|
100177
|
+
};
|
|
100178
|
+
export declare type QueryStakeholderComms_GetWorkspaceAriMappingByStatuspageDomainArgs = {
|
|
100179
|
+
statuspageDomain: Scalars['String']['input'];
|
|
100180
|
+
};
|
|
98909
100181
|
export declare type QueryStakeholderComms_IsPageNameUniqueArgs = {
|
|
98910
100182
|
name: Scalars['String']['input'];
|
|
98911
100183
|
};
|
|
@@ -99203,6 +100475,11 @@ export declare type RadarAriFieldValue = {
|
|
|
99203
100475
|
value?: Maybe<RadarAriObject>;
|
|
99204
100476
|
};
|
|
99205
100477
|
export declare type RadarAriObject = MercuryChangeProposal | MercuryFocusArea | RadarPosition | RadarWorker | TeamV2;
|
|
100478
|
+
export declare type RadarAvailableCustomFieldsFromLastSync = {
|
|
100479
|
+
__typename?: 'RadarAvailableCustomFieldsFromLastSync';
|
|
100480
|
+
availablePositionCustomFields: Array<Scalars['String']['output']>;
|
|
100481
|
+
availableWorkerCustomFields: Array<Scalars['String']['output']>;
|
|
100482
|
+
};
|
|
99206
100483
|
export declare type RadarBooleanFieldValue = {
|
|
99207
100484
|
__typename?: 'RadarBooleanFieldValue';
|
|
99208
100485
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -101442,6 +102719,16 @@ export declare type SearchAnalyticsInput = {
|
|
|
101442
102719
|
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
101443
102720
|
sourceProduct?: InputMaybe<Scalars['String']['input']>;
|
|
101444
102721
|
};
|
|
102722
|
+
export declare type SearchAssetsFilter = {
|
|
102723
|
+
objectSchemaFilter?: InputMaybe<SearchAssetsObjectSchemaFilter>;
|
|
102724
|
+
objectTypeFilter?: InputMaybe<SearchAssetsObjectTypeFilter>;
|
|
102725
|
+
};
|
|
102726
|
+
export declare type SearchAssetsObjectSchemaFilter = {
|
|
102727
|
+
schemaARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
102728
|
+
};
|
|
102729
|
+
export declare type SearchAssetsObjectTypeFilter = {
|
|
102730
|
+
typeARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
102731
|
+
};
|
|
101445
102732
|
export declare type SearchBoardFilter = {
|
|
101446
102733
|
negateProjectFilter?: InputMaybe<Scalars['Boolean']['input']>;
|
|
101447
102734
|
projectARI?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -101457,6 +102744,7 @@ export declare enum SearchCombinationType {
|
|
|
101457
102744
|
}
|
|
101458
102745
|
export declare type SearchCommonFilter = {
|
|
101459
102746
|
contributorsFilter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
102747
|
+
participants?: InputMaybe<SearchParticipants>;
|
|
101460
102748
|
range?: InputMaybe<SearchCommonRangeFilter>;
|
|
101461
102749
|
};
|
|
101462
102750
|
export declare type SearchCommonRangeFilter = {
|
|
@@ -101638,6 +102926,7 @@ export declare type SearchFieldLookAndFeel = {
|
|
|
101638
102926
|
color?: Maybe<Scalars['String']['output']>;
|
|
101639
102927
|
};
|
|
101640
102928
|
export declare type SearchFilterInput = {
|
|
102929
|
+
assetsFilters?: InputMaybe<SearchAssetsFilter>;
|
|
101641
102930
|
commonFilters?: InputMaybe<SearchCommonFilter>;
|
|
101642
102931
|
compassFilters?: InputMaybe<SearchCompassFilter>;
|
|
101643
102932
|
confluenceFilters?: InputMaybe<SearchConfluenceFilter>;
|
|
@@ -101834,6 +103123,32 @@ export declare type SearchResult = {
|
|
|
101834
103123
|
type: SearchResultType;
|
|
101835
103124
|
url: Scalars['URL']['output'];
|
|
101836
103125
|
};
|
|
103126
|
+
export declare type SearchResultAssetsObjectSchema = SearchResult & {
|
|
103127
|
+
__typename?: 'SearchResultAssetsObjectSchema';
|
|
103128
|
+
description: Scalars['String']['output'];
|
|
103129
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
103130
|
+
id: Scalars['ID']['output'];
|
|
103131
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
103132
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
103133
|
+
schemaAri: Scalars['ID']['output'];
|
|
103134
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
103135
|
+
title: Scalars['String']['output'];
|
|
103136
|
+
type: SearchResultType;
|
|
103137
|
+
url: Scalars['URL']['output'];
|
|
103138
|
+
};
|
|
103139
|
+
export declare type SearchResultAssetsObjectType = SearchResult & {
|
|
103140
|
+
__typename?: 'SearchResultAssetsObjectType';
|
|
103141
|
+
description: Scalars['String']['output'];
|
|
103142
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
103143
|
+
id: Scalars['ID']['output'];
|
|
103144
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
103145
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
103146
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
103147
|
+
title: Scalars['String']['output'];
|
|
103148
|
+
type: SearchResultType;
|
|
103149
|
+
typeAri: Scalars['ID']['output'];
|
|
103150
|
+
url: Scalars['URL']['output'];
|
|
103151
|
+
};
|
|
101837
103152
|
export declare type SearchResultAtlasGoal = SearchResult & {
|
|
101838
103153
|
__typename?: 'SearchResultAtlasGoal';
|
|
101839
103154
|
description: Scalars['String']['output'];
|
|
@@ -102206,6 +103521,18 @@ export declare type SearchResultSlackMessage = SearchL2FeatureProvider & SearchR
|
|
|
102206
103521
|
type: SearchResultType;
|
|
102207
103522
|
url: Scalars['URL']['output'];
|
|
102208
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
|
+
};
|
|
102209
103536
|
export declare type SearchResultTrelloBoard = SearchResult & {
|
|
102210
103537
|
__typename?: 'SearchResultTrelloBoard';
|
|
102211
103538
|
description: Scalars['String']['output'];
|
|
@@ -102233,6 +103560,7 @@ export declare type SearchResultTrelloCard = SearchResult & {
|
|
|
102233
103560
|
url: Scalars['URL']['output'];
|
|
102234
103561
|
};
|
|
102235
103562
|
export declare enum SearchResultType {
|
|
103563
|
+
Ask = "ask",
|
|
102236
103564
|
Attachment = "attachment",
|
|
102237
103565
|
Blogpost = "blogpost",
|
|
102238
103566
|
Board = "board",
|
|
@@ -102251,6 +103579,8 @@ export declare enum SearchResultType {
|
|
|
102251
103579
|
Issue = "issue",
|
|
102252
103580
|
Learning = "learning",
|
|
102253
103581
|
Message = "message",
|
|
103582
|
+
ObjectSchema = "object_schema",
|
|
103583
|
+
ObjectType = "object_type",
|
|
102254
103584
|
Page = "page",
|
|
102255
103585
|
Plan = "plan",
|
|
102256
103586
|
Presentation = "presentation",
|
|
@@ -102284,6 +103614,7 @@ export declare type SearchThirdPartyFilter = {
|
|
|
102284
103614
|
excludeSubtypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
102285
103615
|
integrations?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
102286
103616
|
labels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
103617
|
+
lastUpdatedBy?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
102287
103618
|
participants?: InputMaybe<SearchParticipants>;
|
|
102288
103619
|
range?: InputMaybe<Array<InputMaybe<SearchThirdPartyRangeFilter>>>;
|
|
102289
103620
|
subtypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
@@ -120355,6 +121686,7 @@ export declare type ShepherdCreateTestAlertPayload = Payload & {
|
|
|
120355
121686
|
export declare type ShepherdCreateWebhookInput = {
|
|
120356
121687
|
authHeader?: InputMaybe<Scalars['String']['input']>;
|
|
120357
121688
|
callbackURL: Scalars['URL']['input'];
|
|
121689
|
+
category?: InputMaybe<ShepherdWebhookSubscriptionCategory>;
|
|
120358
121690
|
destinationType?: InputMaybe<ShepherdWebhookDestinationType>;
|
|
120359
121691
|
status?: InputMaybe<ShepherdSubscriptionStatus>;
|
|
120360
121692
|
};
|
|
@@ -121145,6 +122477,7 @@ export declare type ShepherdWebhookSubscription = Node & ShepherdSubscription &
|
|
|
121145
122477
|
__typename?: 'ShepherdWebhookSubscription';
|
|
121146
122478
|
authHeaderTruncated?: Maybe<Scalars['String']['output']>;
|
|
121147
122479
|
callbackURL: Scalars['String']['output'];
|
|
122480
|
+
category: ShepherdWebhookSubscriptionCategory;
|
|
121148
122481
|
createdBy: Scalars['String']['output'];
|
|
121149
122482
|
createdOn: Scalars['DateTime']['output'];
|
|
121150
122483
|
destinationType: ShepherdWebhookDestinationType;
|
|
@@ -121153,6 +122486,10 @@ export declare type ShepherdWebhookSubscription = Node & ShepherdSubscription &
|
|
|
121153
122486
|
updatedBy?: Maybe<Scalars['String']['output']>;
|
|
121154
122487
|
updatedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
121155
122488
|
};
|
|
122489
|
+
export declare enum ShepherdWebhookSubscriptionCategory {
|
|
122490
|
+
MicrosoftTeams = "MICROSOFT_TEAMS",
|
|
122491
|
+
Webhook = "WEBHOOK"
|
|
122492
|
+
}
|
|
121156
122493
|
export declare type ShepherdWorkspace = Node & {
|
|
121157
122494
|
__typename?: 'ShepherdWorkspace';
|
|
121158
122495
|
bitbucketWorkspaces?: Maybe<Array<ShepherdBitbucketWorkspace>>;
|
|
@@ -122463,7 +123800,9 @@ export declare type SpfAskActivityUpdatedDocument = SpfAskActivityUpdatedValue &
|
|
|
122463
123800
|
export declare type SpfAskActivityUpdatedImpactedWork = SpfAskActivityUpdatedValue & {
|
|
122464
123801
|
__typename?: 'SpfAskActivityUpdatedImpactedWork';
|
|
122465
123802
|
attribute: SpfAskActivityAttribute;
|
|
123803
|
+
newImpactedWork?: Maybe<SpfImpactedWork>;
|
|
122466
123804
|
newValue?: Maybe<Scalars['String']['output']>;
|
|
123805
|
+
oldImpactedWork?: Maybe<SpfImpactedWork>;
|
|
122467
123806
|
oldValue?: Maybe<Scalars['String']['output']>;
|
|
122468
123807
|
};
|
|
122469
123808
|
export declare type SpfAskActivityUpdatedLink = SpfAskActivityUpdatedValue & {
|
|
@@ -123085,6 +124424,7 @@ export declare type StakeholderCommsCreatePageInputType = {
|
|
|
123085
124424
|
allowRssAtomFields?: InputMaybe<Scalars['Boolean']['input']>;
|
|
123086
124425
|
blackHole?: InputMaybe<Scalars['Boolean']['input']>;
|
|
123087
124426
|
bodyConfig?: InputMaybe<StakeholderCommsBodyConfigInput>;
|
|
124427
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
123088
124428
|
colours?: InputMaybe<StakeholderCommsColoursInput>;
|
|
123089
124429
|
components?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
123090
124430
|
createdAt?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -123112,6 +124452,7 @@ export declare type StakeholderCommsCreatePageInputType = {
|
|
|
123112
124452
|
timezone?: InputMaybe<Scalars['String']['input']>;
|
|
123113
124453
|
updatedAt?: InputMaybe<Scalars['String']['input']>;
|
|
123114
124454
|
url?: InputMaybe<Scalars['String']['input']>;
|
|
124455
|
+
version?: InputMaybe<Scalars['Int']['input']>;
|
|
123115
124456
|
};
|
|
123116
124457
|
export declare type StakeholderCommsCreateStakeholderGroupInput = {
|
|
123117
124458
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -123127,12 +124468,14 @@ export declare type StakeholderCommsCreateStakeholderInput = {
|
|
|
123127
124468
|
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
123128
124469
|
addedFrom: StakeholderCommsAddedFromType;
|
|
123129
124470
|
assignmentType: StakeholderCommsAssignmentType;
|
|
124471
|
+
atlassianTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
123130
124472
|
emailId?: InputMaybe<Scalars['String']['input']>;
|
|
123131
124473
|
externalAssignmentId: Scalars['String']['input'];
|
|
123132
124474
|
phoneCountry?: InputMaybe<Scalars['String']['input']>;
|
|
123133
124475
|
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
|
123134
124476
|
preference: StakeholderCommsPreferencesInput;
|
|
123135
124477
|
skipConfirmation: Scalars['Boolean']['input'];
|
|
124478
|
+
stakeholderGroupId?: InputMaybe<Scalars['String']['input']>;
|
|
123136
124479
|
stakeholderType: StakeholderCommsStakeholderType;
|
|
123137
124480
|
webhook?: InputMaybe<Scalars['String']['input']>;
|
|
123138
124481
|
};
|
|
@@ -123264,6 +124607,7 @@ export declare type StakeholderCommsPage = {
|
|
|
123264
124607
|
allowRssAtomFields?: Maybe<Scalars['Boolean']['output']>;
|
|
123265
124608
|
blackHole?: Maybe<Scalars['Boolean']['output']>;
|
|
123266
124609
|
bodyConfig?: Maybe<StakeholderCommsBodyConfigType>;
|
|
124610
|
+
cloudId?: Maybe<Scalars['String']['output']>;
|
|
123267
124611
|
colours?: Maybe<StakeholderCommsColoursType>;
|
|
123268
124612
|
components?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
123269
124613
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -123315,6 +124659,16 @@ export declare type StakeholderCommsPageResponse = {
|
|
|
123315
124659
|
error?: Maybe<Scalars['String']['output']>;
|
|
123316
124660
|
page?: Maybe<StakeholderCommsPage>;
|
|
123317
124661
|
};
|
|
124662
|
+
export declare type StakeholderCommsPageSummary = {
|
|
124663
|
+
__typename?: 'StakeholderCommsPageSummary';
|
|
124664
|
+
componentCount?: Maybe<Scalars['Int']['output']>;
|
|
124665
|
+
customDomain?: Maybe<Scalars['String']['output']>;
|
|
124666
|
+
domain?: Maybe<Scalars['String']['output']>;
|
|
124667
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
124668
|
+
isDraft?: Maybe<Scalars['Boolean']['output']>;
|
|
124669
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
124670
|
+
stakeholderCount?: Maybe<Scalars['Int']['output']>;
|
|
124671
|
+
};
|
|
123318
124672
|
export declare enum StakeholderCommsPageTheme {
|
|
123319
124673
|
AllSystemsGlow = "ALL_SYSTEMS_GLOW",
|
|
123320
124674
|
Blank = "BLANK",
|
|
@@ -123331,6 +124685,11 @@ export declare type StakeholderCommsPageUptimePercentageResponse = {
|
|
|
123331
124685
|
pageId?: Maybe<Scalars['String']['output']>;
|
|
123332
124686
|
uptimePercentage?: Maybe<Scalars['Float']['output']>;
|
|
123333
124687
|
};
|
|
124688
|
+
export declare type StakeholderCommsPagesSummaryByCloudIdResponse = {
|
|
124689
|
+
__typename?: 'StakeholderCommsPagesSummaryByCloudIdResponse';
|
|
124690
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
124691
|
+
pages: Array<StakeholderCommsPageSummary>;
|
|
124692
|
+
};
|
|
123334
124693
|
export declare type StakeholderCommsPaginatedAssignmentByStakeholderInput = {
|
|
123335
124694
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
123336
124695
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -123366,6 +124725,15 @@ export declare type StakeholderCommsPreferencesInput = {
|
|
|
123366
124725
|
sms?: InputMaybe<StakeholderCommsModePreferenceInput>;
|
|
123367
124726
|
webhook?: InputMaybe<StakeholderCommsModePreferenceInput>;
|
|
123368
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
|
+
};
|
|
123369
124737
|
export declare enum StakeholderCommsSearchField {
|
|
123370
124738
|
EmailId = "EMAIL_ID"
|
|
123371
124739
|
}
|
|
@@ -123386,6 +124754,7 @@ export declare type StakeholderCommsStakeholder = {
|
|
|
123386
124754
|
__typename?: 'StakeholderCommsStakeholder';
|
|
123387
124755
|
aaid?: Maybe<Scalars['String']['output']>;
|
|
123388
124756
|
ari?: Maybe<Scalars['String']['output']>;
|
|
124757
|
+
atlassianTeamId?: Maybe<Scalars['String']['output']>;
|
|
123389
124758
|
avatar?: Maybe<Scalars['String']['output']>;
|
|
123390
124759
|
groups?: Maybe<Array<StakeholderCommsGroups>>;
|
|
123391
124760
|
id: Scalars['ID']['output'];
|
|
@@ -123393,6 +124762,7 @@ export declare type StakeholderCommsStakeholder = {
|
|
|
123393
124762
|
name?: Maybe<Scalars['String']['output']>;
|
|
123394
124763
|
notificationPreference?: Maybe<StakeholderCommsNotificationPreference>;
|
|
123395
124764
|
skipConfirmation?: Maybe<Scalars['Boolean']['output']>;
|
|
124765
|
+
stakeholderGroupId?: Maybe<Scalars['String']['output']>;
|
|
123396
124766
|
status?: Maybe<StakeholderCommsStakeholderStatus>;
|
|
123397
124767
|
type?: Maybe<StakeholderCommsStakeholderType>;
|
|
123398
124768
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -123529,7 +124899,9 @@ export declare type StakeholderCommsStakeholderGroupsAndStakeholders = {
|
|
|
123529
124899
|
export declare type StakeholderCommsStakeholderIdInput = {
|
|
123530
124900
|
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
123531
124901
|
ari?: InputMaybe<Scalars['String']['input']>;
|
|
124902
|
+
atlassianTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
123532
124903
|
emailId?: InputMaybe<Scalars['String']['input']>;
|
|
124904
|
+
stakeholderGroupId?: InputMaybe<Scalars['String']['input']>;
|
|
123533
124905
|
stakeholderId?: InputMaybe<Scalars['ID']['input']>;
|
|
123534
124906
|
stakeholderType?: InputMaybe<StakeholderCommsStakeholderType>;
|
|
123535
124907
|
};
|
|
@@ -123545,6 +124917,7 @@ export declare enum StakeholderCommsStakeholderStatus {
|
|
|
123545
124917
|
}
|
|
123546
124918
|
export declare enum StakeholderCommsStakeholderType {
|
|
123547
124919
|
External = "EXTERNAL",
|
|
124920
|
+
Group = "GROUP",
|
|
123548
124921
|
Internal = "INTERNAL",
|
|
123549
124922
|
Team = "TEAM"
|
|
123550
124923
|
}
|
|
@@ -123554,6 +124927,7 @@ export declare type StakeholderCommsUpdatePageInputType = {
|
|
|
123554
124927
|
allowRssAtomFields?: InputMaybe<Scalars['Boolean']['input']>;
|
|
123555
124928
|
blackHole?: InputMaybe<Scalars['Boolean']['input']>;
|
|
123556
124929
|
bodyConfig?: InputMaybe<StakeholderCommsBodyConfigInput>;
|
|
124930
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
123557
124931
|
colours?: InputMaybe<StakeholderCommsColoursInput>;
|
|
123558
124932
|
components?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
123559
124933
|
createdAt?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -123603,6 +124977,18 @@ export declare enum StakeholderCommsUptimeStyle {
|
|
|
123603
124977
|
DetailCard = "DETAIL_CARD",
|
|
123604
124978
|
OnlyStatus = "ONLY_STATUS"
|
|
123605
124979
|
}
|
|
124980
|
+
export declare type StakeholderCommsWorkspaceAriMapping = {
|
|
124981
|
+
__typename?: 'StakeholderCommsWorkspaceAriMapping';
|
|
124982
|
+
customDomain?: Maybe<Scalars['String']['output']>;
|
|
124983
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
124984
|
+
statuspageDomain?: Maybe<Scalars['String']['output']>;
|
|
124985
|
+
workspaceAri?: Maybe<Scalars['String']['output']>;
|
|
124986
|
+
};
|
|
124987
|
+
export declare type StakeholderCommsWorkspaceAriMappingResponse = {
|
|
124988
|
+
__typename?: 'StakeholderCommsWorkspaceAriMappingResponse';
|
|
124989
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
124990
|
+
workspaceAriMapping?: Maybe<StakeholderCommsWorkspaceAriMapping>;
|
|
124991
|
+
};
|
|
123606
124992
|
export declare type StalePagePayload = {
|
|
123607
124993
|
__typename?: 'StalePagePayload';
|
|
123608
124994
|
lastActivityDate: Scalars['String']['output'];
|
|
@@ -123728,13 +125114,16 @@ export declare type SubjectsByTypeUserWithRestrictionsArgs = {
|
|
|
123728
125114
|
export declare type Subscription = {
|
|
123729
125115
|
__typename?: 'Subscription';
|
|
123730
125116
|
confluence_onContentModified?: Maybe<ConfluenceContentModified>;
|
|
125117
|
+
convoai_onAgentSessionUpdate?: Maybe<ConvoAiAgentSessionUpdate>;
|
|
123731
125118
|
devOps?: Maybe<AriGraphSubscriptions>;
|
|
123732
125119
|
devai_onAutodevJobLogGroupsUpdated?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
123733
125120
|
devai_onAutodevJobLogsListUpdated?: Maybe<DevAiAutodevLogConnection>;
|
|
123734
125121
|
devai_onAutodevJobLogsUpdated?: Maybe<DevAiAutodevLogEdge>;
|
|
123735
125122
|
devai_onBoysenberrySessionCreatedByIssueKeyAndCloudId?: Maybe<DevAiRovoDevSession>;
|
|
125123
|
+
devai_onBoysenberrySessionCreatedByWorkspaceAri?: Maybe<DevAiRovoDevSession>;
|
|
123736
125124
|
devai_onBoysenberrySessionCreatedOnJiraIssue?: Maybe<DevAiRovoDevSessionConnection>;
|
|
123737
125125
|
devai_onBoysenberrySessionUpdated?: Maybe<DevAiRovoDevSession>;
|
|
125126
|
+
devai_onBoysenberrySessionUpdatedByWorkspaceAri?: Maybe<DevAiRovoDevSession>;
|
|
123738
125127
|
devai_onTechnicalPlannerJobUpdated?: Maybe<DevAiTechnicalPlannerJob>;
|
|
123739
125128
|
ecosystem?: Maybe<EcosystemSubscription>;
|
|
123740
125129
|
jira?: Maybe<JiraSubscription>;
|
|
@@ -123751,6 +125140,10 @@ export declare type Subscription = {
|
|
|
123751
125140
|
export declare type SubscriptionConfluence_OnContentModifiedArgs = {
|
|
123752
125141
|
id: Scalars['ID']['input'];
|
|
123753
125142
|
};
|
|
125143
|
+
export declare type SubscriptionConvoai_OnAgentSessionUpdateArgs = {
|
|
125144
|
+
cloudId: Scalars['ID']['input'];
|
|
125145
|
+
conversationId: Scalars['ID']['input'];
|
|
125146
|
+
};
|
|
123754
125147
|
export declare type SubscriptionDevai_OnAutodevJobLogGroupsUpdatedArgs = {
|
|
123755
125148
|
cloudId: Scalars['ID']['input'];
|
|
123756
125149
|
jobId: Scalars['ID']['input'];
|
|
@@ -123767,6 +125160,9 @@ export declare type SubscriptionDevai_OnBoysenberrySessionCreatedByIssueKeyAndCl
|
|
|
123767
125160
|
cloudId: Scalars['ID']['input'];
|
|
123768
125161
|
issueKey: Scalars['String']['input'];
|
|
123769
125162
|
};
|
|
125163
|
+
export declare type SubscriptionDevai_OnBoysenberrySessionCreatedByWorkspaceAriArgs = {
|
|
125164
|
+
workspaceAri: Scalars['ID']['input'];
|
|
125165
|
+
};
|
|
123770
125166
|
export declare type SubscriptionDevai_OnBoysenberrySessionCreatedOnJiraIssueArgs = {
|
|
123771
125167
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
123772
125168
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -123776,6 +125172,9 @@ export declare type SubscriptionDevai_OnBoysenberrySessionCreatedOnJiraIssueArgs
|
|
|
123776
125172
|
export declare type SubscriptionDevai_OnBoysenberrySessionUpdatedArgs = {
|
|
123777
125173
|
sessionAri: Scalars['ID']['input'];
|
|
123778
125174
|
};
|
|
125175
|
+
export declare type SubscriptionDevai_OnBoysenberrySessionUpdatedByWorkspaceAriArgs = {
|
|
125176
|
+
workspaceAri: Scalars['ID']['input'];
|
|
125177
|
+
};
|
|
123779
125178
|
export declare type SubscriptionDevai_OnTechnicalPlannerJobUpdatedArgs = {
|
|
123780
125179
|
cloudId: Scalars['ID']['input'];
|
|
123781
125180
|
jobId: Scalars['ID']['input'];
|
|
@@ -123842,6 +125241,7 @@ export declare type SupportRequest = {
|
|
|
123842
125241
|
lastComment: SupportRequestComments;
|
|
123843
125242
|
migrationPhase?: Maybe<Scalars['String']['output']>;
|
|
123844
125243
|
migrationProducts?: Maybe<Scalars['String']['output']>;
|
|
125244
|
+
orgParticipants?: Maybe<Array<SupportRequestOrganization>>;
|
|
123845
125245
|
participants: Array<SupportRequestUser>;
|
|
123846
125246
|
planToMigrate?: Maybe<Scalars['String']['output']>;
|
|
123847
125247
|
projectName: Scalars['String']['output'];
|
|
@@ -124598,6 +125998,7 @@ export declare type TeamV2 = Node & {
|
|
|
124598
125998
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
124599
125999
|
hierarchy?: Maybe<TeamHierarchy>;
|
|
124600
126000
|
id: Scalars['ID']['output'];
|
|
126001
|
+
isCurrentUserMemberOfTeam?: Maybe<Scalars['Boolean']['output']>;
|
|
124601
126002
|
isVerified?: Maybe<Scalars['Boolean']['output']>;
|
|
124602
126003
|
largeAvatarImageUrl?: Maybe<Scalars['String']['output']>;
|
|
124603
126004
|
largeHeaderImageUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -124733,6 +126134,7 @@ export declare type TenantContextActivationId = {
|
|
|
124733
126134
|
__typename?: 'TenantContextActivationId';
|
|
124734
126135
|
active?: Maybe<Scalars['String']['output']>;
|
|
124735
126136
|
product?: Maybe<Scalars['String']['output']>;
|
|
126137
|
+
targetRegion?: Maybe<Scalars['String']['output']>;
|
|
124736
126138
|
};
|
|
124737
126139
|
export declare type TenantContextCustomDomain = {
|
|
124738
126140
|
__typename?: 'TenantContextCustomDomain';
|
|
@@ -125424,6 +126826,7 @@ export declare type TownsquareGoal = Node & {
|
|
|
125424
126826
|
description?: Maybe<Scalars['String']['output']>;
|
|
125425
126827
|
draftUpdate?: Maybe<TownsquareDraftUpdate>;
|
|
125426
126828
|
dueDate?: Maybe<TownsquareTargetDate>;
|
|
126829
|
+
focusAreas?: Maybe<GraphStoreSimplifiedFocusAreaHasAtlasGoalInverseConnection>;
|
|
125427
126830
|
goalType?: Maybe<TownsquareGoalType>;
|
|
125428
126831
|
icon?: Maybe<TownsquareGoalIcon>;
|
|
125429
126832
|
iconData?: Maybe<Scalars['String']['output']>;
|
|
@@ -125458,6 +126861,10 @@ export declare type TownsquareGoalCommentsArgs = {
|
|
|
125458
126861
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
125459
126862
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
125460
126863
|
};
|
|
126864
|
+
export declare type TownsquareGoalFocusAreasArgs = {
|
|
126865
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
126866
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
126867
|
+
};
|
|
125461
126868
|
export declare type TownsquareGoalMetricTargetsArgs = {
|
|
125462
126869
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
125463
126870
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -126017,6 +127424,7 @@ export declare type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
|
126017
127424
|
description?: Maybe<TownsquareProjectDescription>;
|
|
126018
127425
|
draftUpdate?: Maybe<TownsquareDraftUpdate>;
|
|
126019
127426
|
dueDate?: Maybe<TownsquareTargetDate>;
|
|
127427
|
+
focusAreas?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectInverseConnection>;
|
|
126020
127428
|
fusion?: Maybe<TownsquareFusionDetails>;
|
|
126021
127429
|
goals?: Maybe<TownsquareGoalConnection>;
|
|
126022
127430
|
highlights?: Maybe<TownsquareHighlightConnection>;
|
|
@@ -126080,6 +127488,10 @@ export declare type TownsquareProjectDependenciesArgs = {
|
|
|
126080
127488
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
126081
127489
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
126082
127490
|
};
|
|
127491
|
+
export declare type TownsquareProjectFocusAreasArgs = {
|
|
127492
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
127493
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
127494
|
+
};
|
|
126083
127495
|
export declare type TownsquareProjectGoalsArgs = {
|
|
126084
127496
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
126085
127497
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -126977,6 +128389,7 @@ export declare type TrelloAction = {
|
|
|
126977
128389
|
id: Scalars['ID']['output'];
|
|
126978
128390
|
limits?: Maybe<TrelloActionLimits>;
|
|
126979
128391
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
128392
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
126980
128393
|
type?: Maybe<Scalars['String']['output']>;
|
|
126981
128394
|
};
|
|
126982
128395
|
export declare type TrelloActionAttachmentEntity = {
|
|
@@ -127106,6 +128519,7 @@ export declare type TrelloAddAttachmentToCardAction = TrelloAction & TrelloCardA
|
|
|
127106
128519
|
id: Scalars['ID']['output'];
|
|
127107
128520
|
limits?: Maybe<TrelloActionLimits>;
|
|
127108
128521
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
128522
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
127109
128523
|
type?: Maybe<Scalars['String']['output']>;
|
|
127110
128524
|
};
|
|
127111
128525
|
export declare type TrelloAddAttachmentToCardActionDisplayEntities = {
|
|
@@ -127139,6 +128553,7 @@ export declare type TrelloAddChecklistToCardAction = TrelloAction & TrelloCardAc
|
|
|
127139
128553
|
id: Scalars['ID']['output'];
|
|
127140
128554
|
limits?: Maybe<TrelloActionLimits>;
|
|
127141
128555
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
128556
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
127142
128557
|
type?: Maybe<Scalars['String']['output']>;
|
|
127143
128558
|
};
|
|
127144
128559
|
export declare type TrelloAddChecklistToCardDisplayEntities = {
|
|
@@ -127164,6 +128579,7 @@ export declare type TrelloAddMemberToCardAction = TrelloAction & TrelloCardActio
|
|
|
127164
128579
|
limits?: Maybe<TrelloActionLimits>;
|
|
127165
128580
|
member?: Maybe<TrelloMember>;
|
|
127166
128581
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
128582
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
127167
128583
|
type?: Maybe<Scalars['String']['output']>;
|
|
127168
128584
|
};
|
|
127169
128585
|
export declare type TrelloAddMemberToCardPayload = Payload & {
|
|
@@ -128233,6 +129649,7 @@ export declare type TrelloCommentCardAction = TrelloAction & TrelloCardActionDat
|
|
|
128233
129649
|
id: Scalars['ID']['output'];
|
|
128234
129650
|
limits?: Maybe<TrelloActionLimits>;
|
|
128235
129651
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
129652
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
128236
129653
|
type?: Maybe<Scalars['String']['output']>;
|
|
128237
129654
|
};
|
|
128238
129655
|
export declare type TrelloCommentCardActionDisplayEntities = {
|
|
@@ -128262,6 +129679,7 @@ export declare type TrelloCopyCardAction = TrelloAction & TrelloCardActionData &
|
|
|
128262
129679
|
limits?: Maybe<TrelloActionLimits>;
|
|
128263
129680
|
list?: Maybe<TrelloList>;
|
|
128264
129681
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
129682
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
128265
129683
|
type?: Maybe<Scalars['String']['output']>;
|
|
128266
129684
|
};
|
|
128267
129685
|
export declare type TrelloCopyCardActionDisplayEntities = {
|
|
@@ -128283,6 +129701,7 @@ export declare type TrelloCopyCommentCardAction = TrelloAction & TrelloCardActio
|
|
|
128283
129701
|
id: Scalars['ID']['output'];
|
|
128284
129702
|
limits?: Maybe<TrelloActionLimits>;
|
|
128285
129703
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
129704
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
128286
129705
|
sourceCard?: Maybe<TrelloCopiedCardSource>;
|
|
128287
129706
|
type?: Maybe<Scalars['String']['output']>;
|
|
128288
129707
|
};
|
|
@@ -128307,6 +129726,7 @@ export declare type TrelloCopyInboxCardAction = TrelloAction & TrelloCardActionD
|
|
|
128307
129726
|
limits?: Maybe<TrelloActionLimits>;
|
|
128308
129727
|
list?: Maybe<TrelloList>;
|
|
128309
129728
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
129729
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
128310
129730
|
type?: Maybe<Scalars['String']['output']>;
|
|
128311
129731
|
};
|
|
128312
129732
|
export declare type TrelloCopyInboxCardActionDisplayEntities = {
|
|
@@ -128343,6 +129763,7 @@ export declare type TrelloCreateCardAction = TrelloAction & TrelloCardActionData
|
|
|
128343
129763
|
id: Scalars['ID']['output'];
|
|
128344
129764
|
limits?: Maybe<TrelloActionLimits>;
|
|
128345
129765
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
129766
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
128346
129767
|
type?: Maybe<Scalars['String']['output']>;
|
|
128347
129768
|
};
|
|
128348
129769
|
export declare type TrelloCreateCardActionDisplayEntities = {
|
|
@@ -128366,6 +129787,7 @@ export declare type TrelloCreateCardFromCheckItemAction = TrelloAction & TrelloC
|
|
|
128366
129787
|
limits?: Maybe<TrelloActionLimits>;
|
|
128367
129788
|
list?: Maybe<TrelloList>;
|
|
128368
129789
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
129790
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
128369
129791
|
type?: Maybe<Scalars['String']['output']>;
|
|
128370
129792
|
};
|
|
128371
129793
|
export declare type TrelloCreateCardFromCheckItemActionDisplayEntities = {
|
|
@@ -128387,6 +129809,7 @@ export declare type TrelloCreateCardFromEmailAction = TrelloAction & TrelloCardA
|
|
|
128387
129809
|
id: Scalars['ID']['output'];
|
|
128388
129810
|
limits?: Maybe<TrelloActionLimits>;
|
|
128389
129811
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
129812
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
128390
129813
|
type?: Maybe<Scalars['String']['output']>;
|
|
128391
129814
|
};
|
|
128392
129815
|
export declare type TrelloCreateCardFromEmailActionDisplayEntities = {
|
|
@@ -128422,6 +129845,7 @@ export declare type TrelloCreateInboxCardAction = TrelloAction & TrelloCardActio
|
|
|
128422
129845
|
id: Scalars['ID']['output'];
|
|
128423
129846
|
limits?: Maybe<TrelloActionLimits>;
|
|
128424
129847
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
129848
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
128425
129849
|
type?: Maybe<Scalars['String']['output']>;
|
|
128426
129850
|
};
|
|
128427
129851
|
export declare type TrelloCreateInboxCardActionDisplayEntities = {
|
|
@@ -128597,6 +130021,7 @@ export declare type TrelloDeleteAttachmentFromCardAction = TrelloAction & Trello
|
|
|
128597
130021
|
id: Scalars['ID']['output'];
|
|
128598
130022
|
limits?: Maybe<TrelloActionLimits>;
|
|
128599
130023
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
130024
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
128600
130025
|
type?: Maybe<Scalars['String']['output']>;
|
|
128601
130026
|
};
|
|
128602
130027
|
export declare type TrelloDeleteAttachmentFromCardActionDisplayEntities = {
|
|
@@ -129037,6 +130462,18 @@ export declare type TrelloMemberWorkspaceFilter = {
|
|
|
129037
130462
|
membershipType?: InputMaybe<TrelloWorkspaceMembershipType>;
|
|
129038
130463
|
tier?: InputMaybe<TrelloWorkspaceTier>;
|
|
129039
130464
|
};
|
|
130465
|
+
export declare type TrelloMergeCardsInput = {
|
|
130466
|
+
cardIds: Array<Scalars['ID']['input']>;
|
|
130467
|
+
targetBoardId: Scalars['ID']['input'];
|
|
130468
|
+
targetListId: Scalars['ID']['input'];
|
|
130469
|
+
};
|
|
130470
|
+
export declare type TrelloMergeCardsPayload = Payload & {
|
|
130471
|
+
__typename?: 'TrelloMergeCardsPayload';
|
|
130472
|
+
archivedCardIds: Array<Scalars['ID']['output']>;
|
|
130473
|
+
card?: Maybe<TrelloCard>;
|
|
130474
|
+
errors?: Maybe<Array<MutationError>>;
|
|
130475
|
+
success: Scalars['Boolean']['output'];
|
|
130476
|
+
};
|
|
129040
130477
|
export declare type TrelloMirrorCard = {
|
|
129041
130478
|
__typename?: 'TrelloMirrorCard';
|
|
129042
130479
|
id: Scalars['ID']['output'];
|
|
@@ -129068,6 +130505,7 @@ export declare type TrelloMoveCardAction = TrelloAction & TrelloCardActionData &
|
|
|
129068
130505
|
listAfter?: Maybe<TrelloList>;
|
|
129069
130506
|
listBefore?: Maybe<TrelloList>;
|
|
129070
130507
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
130508
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
129071
130509
|
type?: Maybe<Scalars['String']['output']>;
|
|
129072
130510
|
};
|
|
129073
130511
|
export declare type TrelloMoveCardActionDisplayEntities = {
|
|
@@ -129095,6 +130533,7 @@ export declare type TrelloMoveCardToBoardAction = TrelloAction & TrelloCardActio
|
|
|
129095
130533
|
id: Scalars['ID']['output'];
|
|
129096
130534
|
limits?: Maybe<TrelloActionLimits>;
|
|
129097
130535
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
130536
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
129098
130537
|
type?: Maybe<Scalars['String']['output']>;
|
|
129099
130538
|
};
|
|
129100
130539
|
export declare type TrelloMoveInboxCardToBoardAction = TrelloAction & TrelloCardActionData & {
|
|
@@ -129109,6 +130548,7 @@ export declare type TrelloMoveInboxCardToBoardAction = TrelloAction & TrelloCard
|
|
|
129109
130548
|
id: Scalars['ID']['output'];
|
|
129110
130549
|
limits?: Maybe<TrelloActionLimits>;
|
|
129111
130550
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
130551
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
129112
130552
|
type?: Maybe<Scalars['String']['output']>;
|
|
129113
130553
|
};
|
|
129114
130554
|
export declare type TrelloMoveInboxCardToBoardEntities = {
|
|
@@ -129133,6 +130573,7 @@ export declare type TrelloMutationApi = {
|
|
|
129133
130573
|
deletePlannerCalendarEvent?: Maybe<TrelloDeletePlannerCalendarEventPayload>;
|
|
129134
130574
|
deleteWorkspaceTag?: Maybe<TrelloDeleteWorkspaceTagPayload>;
|
|
129135
130575
|
editPlannerCalendarEvent?: Maybe<TrelloEditPlannerCalendarEventPayload>;
|
|
130576
|
+
mergeCards?: Maybe<TrelloMergeCardsPayload>;
|
|
129136
130577
|
pinCard?: Maybe<TrelloPinCardPayload>;
|
|
129137
130578
|
removeBoardStar?: Maybe<TrelloRemoveBoardStarPayload>;
|
|
129138
130579
|
removeCardFromPlannerCalendarEvent?: Maybe<TrelloRemoveCardFromPlannerCalendarEventPayload>;
|
|
@@ -129204,6 +130645,9 @@ export declare type TrelloMutationApiDeleteWorkspaceTagArgs = {
|
|
|
129204
130645
|
export declare type TrelloMutationApiEditPlannerCalendarEventArgs = {
|
|
129205
130646
|
input: TrelloEditPlannerCalendarEventInput;
|
|
129206
130647
|
};
|
|
130648
|
+
export declare type TrelloMutationApiMergeCardsArgs = {
|
|
130649
|
+
input: TrelloMergeCardsInput;
|
|
130650
|
+
};
|
|
129207
130651
|
export declare type TrelloMutationApiPinCardArgs = {
|
|
129208
130652
|
input: TrelloPinCardInput;
|
|
129209
130653
|
};
|
|
@@ -129283,9 +130727,9 @@ export declare type TrelloOAuth2Client = {
|
|
|
129283
130727
|
__typename?: 'TrelloOAuth2Client';
|
|
129284
130728
|
callbackUrls?: Maybe<Array<Scalars['URL']['output']>>;
|
|
129285
130729
|
clientId: Scalars['String']['output'];
|
|
129286
|
-
clientSecret
|
|
129287
|
-
clientType
|
|
129288
|
-
profile
|
|
130730
|
+
clientSecret?: Maybe<Scalars['String']['output']>;
|
|
130731
|
+
clientType?: Maybe<Scalars['String']['output']>;
|
|
130732
|
+
profile?: Maybe<Scalars['String']['output']>;
|
|
129289
130733
|
scopes?: Maybe<Array<TrelloOAuth2Scope>>;
|
|
129290
130734
|
};
|
|
129291
130735
|
export declare type TrelloOAuth2Scope = {
|
|
@@ -129909,6 +131353,10 @@ export declare type TrelloReaction = {
|
|
|
129909
131353
|
member?: Maybe<TrelloMember>;
|
|
129910
131354
|
objectId: Scalars['ID']['output'];
|
|
129911
131355
|
};
|
|
131356
|
+
export declare type TrelloReactionDeleted = {
|
|
131357
|
+
__typename?: 'TrelloReactionDeleted';
|
|
131358
|
+
objectId: Scalars['ID']['output'];
|
|
131359
|
+
};
|
|
129912
131360
|
export declare type TrelloReactionLimits = {
|
|
129913
131361
|
__typename?: 'TrelloReactionLimits';
|
|
129914
131362
|
perAction?: Maybe<TrelloLimitProps>;
|
|
@@ -129947,6 +131395,7 @@ export declare type TrelloRemoveChecklistFromCardAction = TrelloAction & TrelloC
|
|
|
129947
131395
|
id: Scalars['ID']['output'];
|
|
129948
131396
|
limits?: Maybe<TrelloActionLimits>;
|
|
129949
131397
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
131398
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
129950
131399
|
type?: Maybe<Scalars['String']['output']>;
|
|
129951
131400
|
};
|
|
129952
131401
|
export declare type TrelloRemoveChecklistFromCardDisplayEntities = {
|
|
@@ -129968,6 +131417,7 @@ export declare type TrelloRemoveMemberFromCardAction = TrelloAction & TrelloCard
|
|
|
129968
131417
|
limits?: Maybe<TrelloActionLimits>;
|
|
129969
131418
|
member?: Maybe<TrelloMember>;
|
|
129970
131419
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
131420
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
129971
131421
|
type?: Maybe<Scalars['String']['output']>;
|
|
129972
131422
|
};
|
|
129973
131423
|
export declare type TrelloRemoveMemberFromCardPayload = Payload & {
|
|
@@ -130244,6 +131694,7 @@ export declare type TrelloUpdateCardClosedAction = TrelloAction & TrelloCardActi
|
|
|
130244
131694
|
id: Scalars['ID']['output'];
|
|
130245
131695
|
limits?: Maybe<TrelloActionLimits>;
|
|
130246
131696
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
131697
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
130247
131698
|
type?: Maybe<Scalars['String']['output']>;
|
|
130248
131699
|
};
|
|
130249
131700
|
export declare type TrelloUpdateCardClosedActionDisplayEntities = {
|
|
@@ -130263,6 +131714,7 @@ export declare type TrelloUpdateCardCompleteAction = TrelloAction & TrelloCardAc
|
|
|
130263
131714
|
id: Scalars['ID']['output'];
|
|
130264
131715
|
limits?: Maybe<TrelloActionLimits>;
|
|
130265
131716
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
131717
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
130266
131718
|
type?: Maybe<Scalars['String']['output']>;
|
|
130267
131719
|
};
|
|
130268
131720
|
export declare type TrelloUpdateCardCompleteActionDisplayEntities = {
|
|
@@ -130282,6 +131734,7 @@ export declare type TrelloUpdateCardDueAction = TrelloAction & TrelloCardActionD
|
|
|
130282
131734
|
id: Scalars['ID']['output'];
|
|
130283
131735
|
limits?: Maybe<TrelloActionLimits>;
|
|
130284
131736
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
131737
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
130285
131738
|
type?: Maybe<Scalars['String']['output']>;
|
|
130286
131739
|
};
|
|
130287
131740
|
export declare type TrelloUpdateCardDueActionDisplayEntities = {
|
|
@@ -130322,6 +131775,7 @@ export declare type TrelloUpdateCardRecurrenceRuleAction = TrelloAction & Trello
|
|
|
130322
131775
|
id: Scalars['ID']['output'];
|
|
130323
131776
|
limits?: Maybe<TrelloActionLimits>;
|
|
130324
131777
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
131778
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
130325
131779
|
type?: Maybe<Scalars['String']['output']>;
|
|
130326
131780
|
};
|
|
130327
131781
|
export declare type TrelloUpdateCardRecurrenceRuleActionDisplayEntities = {
|
|
@@ -130343,6 +131797,7 @@ export declare type TrelloUpdateCheckItemStateOnCardAction = TrelloAction & Trel
|
|
|
130343
131797
|
id: Scalars['ID']['output'];
|
|
130344
131798
|
limits?: Maybe<TrelloActionLimits>;
|
|
130345
131799
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
131800
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
130346
131801
|
type?: Maybe<Scalars['String']['output']>;
|
|
130347
131802
|
};
|
|
130348
131803
|
export declare type TrelloUpdateCheckItemStateOnCardActionDisplayEntities = {
|
|
@@ -130365,6 +131820,7 @@ export declare type TrelloUpdateCustomFieldItemAction = TrelloAction & TrelloCar
|
|
|
130365
131820
|
id: Scalars['ID']['output'];
|
|
130366
131821
|
limits?: Maybe<TrelloActionLimits>;
|
|
130367
131822
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
131823
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
130368
131824
|
type?: Maybe<Scalars['String']['output']>;
|
|
130369
131825
|
};
|
|
130370
131826
|
export declare type TrelloUpdateCustomFieldItemActionDisplayEntities = {
|
|
@@ -133964,6 +135420,7 @@ export declare type WorkSuggestionsByProjectsResponseStuckIssueSuggestionsArgs =
|
|
|
133964
135420
|
export declare type WorkSuggestionsByVersionResponse = {
|
|
133965
135421
|
__typename?: 'WorkSuggestionsByVersionResponse';
|
|
133966
135422
|
blockingIssueSuggestions?: Maybe<Array<WorkSuggestionsBlockingIssueTask>>;
|
|
135423
|
+
issueCandidateSuggestions?: Maybe<Array<WorkSuggestionsVersionIssueCandidateTask>>;
|
|
133967
135424
|
issueMissingDetailsSuggestions?: Maybe<Array<WorkSuggestionsIssueMissingDetailsTask>>;
|
|
133968
135425
|
};
|
|
133969
135426
|
export declare type WorkSuggestionsCommon = {
|
|
@@ -134371,6 +135828,37 @@ export declare type WorkSuggestionsUserProfile = {
|
|
|
134371
135828
|
persona?: Maybe<WorkSuggestionsUserPersona>;
|
|
134372
135829
|
projectAris?: Maybe<Array<Scalars['ID']['output']>>;
|
|
134373
135830
|
};
|
|
135831
|
+
export declare enum WorkSuggestionsVersionCandidateIncludeReason {
|
|
135832
|
+
IssueIsBlocked = "ISSUE_IS_BLOCKED",
|
|
135833
|
+
IssueIsBlocking = "ISSUE_IS_BLOCKING",
|
|
135834
|
+
IssueIsSibling = "ISSUE_IS_SIBLING",
|
|
135835
|
+
Unknown = "UNKNOWN"
|
|
135836
|
+
}
|
|
135837
|
+
export declare type WorkSuggestionsVersionIssueCandidateTask = WorkSuggestionsVersionTask & {
|
|
135838
|
+
__typename?: 'WorkSuggestionsVersionIssueCandidateTask';
|
|
135839
|
+
id: Scalars['String']['output'];
|
|
135840
|
+
includeReason?: Maybe<WorkSuggestionsVersionCandidateIncludeReason>;
|
|
135841
|
+
issueId: Scalars['String']['output'];
|
|
135842
|
+
issueKey: Scalars['String']['output'];
|
|
135843
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
135844
|
+
parentIssues?: Maybe<Array<WorkSuggestionsVersionRelatedIssue>>;
|
|
135845
|
+
relatedIssuesInVersion?: Maybe<Array<WorkSuggestionsVersionRelatedIssue>>;
|
|
135846
|
+
title: Scalars['String']['output'];
|
|
135847
|
+
url: Scalars['String']['output'];
|
|
135848
|
+
};
|
|
135849
|
+
export declare type WorkSuggestionsVersionRelatedIssue = {
|
|
135850
|
+
__typename?: 'WorkSuggestionsVersionRelatedIssue';
|
|
135851
|
+
issueId: Scalars['String']['output'];
|
|
135852
|
+
issueKey: Scalars['String']['output'];
|
|
135853
|
+
title: Scalars['String']['output'];
|
|
135854
|
+
url: Scalars['String']['output'];
|
|
135855
|
+
};
|
|
135856
|
+
export declare type WorkSuggestionsVersionTask = {
|
|
135857
|
+
id: Scalars['String']['output'];
|
|
135858
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
135859
|
+
title: Scalars['String']['output'];
|
|
135860
|
+
url: Scalars['String']['output'];
|
|
135861
|
+
};
|
|
134374
135862
|
export declare enum WorkSuggestionsVulnerabilityStatus {
|
|
134375
135863
|
Closed = "CLOSED",
|
|
134376
135864
|
Ignored = "IGNORED",
|