@forge/cli-shared 9.4.0-next.7 → 9.4.0-next.8-experimental-3dcad97
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 +25 -0
- package/out/graphql/graphql-types.d.ts +1587 -323
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +217 -98
- 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
|
@@ -269,6 +269,11 @@ export type AiOpsFaultyChangeAttributes = {
|
|
|
269
269
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
270
270
|
url?: Maybe<Scalars['String']['output']>;
|
|
271
271
|
};
|
|
272
|
+
export type AiOpsFaultyChangeTag = {
|
|
273
|
+
__typename?: 'AIOpsFaultyChangeTag';
|
|
274
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
275
|
+
type?: Maybe<AiOpsHypothesisEvidenceType>;
|
|
276
|
+
};
|
|
272
277
|
export declare enum AiOpsFaultyChangeType {
|
|
273
278
|
Commit = "COMMIT",
|
|
274
279
|
Deployment = "DEPLOYMENT",
|
|
@@ -323,6 +328,25 @@ export type AiOpsFeatureFlagDetail = {
|
|
|
323
328
|
timestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
324
329
|
url?: Maybe<Scalars['String']['output']>;
|
|
325
330
|
};
|
|
331
|
+
export type AiOpsHypothesisEvidence = {
|
|
332
|
+
__typename?: 'AIOpsHypothesisEvidence';
|
|
333
|
+
attributes?: Maybe<Scalars['String']['output']>;
|
|
334
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
335
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
336
|
+
type?: Maybe<AiOpsHypothesisEvidenceType>;
|
|
337
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
338
|
+
};
|
|
339
|
+
export declare enum AiOpsHypothesisEvidenceType {
|
|
340
|
+
Alert = "ALERT",
|
|
341
|
+
Commit = "COMMIT",
|
|
342
|
+
Deployment = "DEPLOYMENT",
|
|
343
|
+
Ff = "FF",
|
|
344
|
+
Incident = "INCIDENT",
|
|
345
|
+
Kb = "KB",
|
|
346
|
+
Log = "LOG",
|
|
347
|
+
Metric = "METRIC",
|
|
348
|
+
Pr = "PR"
|
|
349
|
+
}
|
|
326
350
|
export type AiOpsIncidentActivity = AiOpsServiceActivity & {
|
|
327
351
|
__typename?: 'AIOpsIncidentActivity';
|
|
328
352
|
entityId: Scalars['ID']['output'];
|
|
@@ -605,6 +629,7 @@ export type AiOpsInvestigationCompleted = {
|
|
|
605
629
|
};
|
|
606
630
|
export type AiOpsInvestigationInProgress = {
|
|
607
631
|
__typename?: 'AIOpsInvestigationInProgress';
|
|
632
|
+
currentActivity?: Maybe<Scalars['String']['output']>;
|
|
608
633
|
tasks?: Maybe<Array<AiOpsInvestigationTask>>;
|
|
609
634
|
};
|
|
610
635
|
export type AiOpsInvestigationInputContext = {
|
|
@@ -644,6 +669,7 @@ export type AiOpsInvestigationTask = {
|
|
|
644
669
|
progressInfo?: Maybe<Array<AiOpsInvestigationProgressItem>>;
|
|
645
670
|
startedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
646
671
|
state?: Maybe<AiOpsInvestigationTaskState>;
|
|
672
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
647
673
|
taskId: Scalars['String']['output'];
|
|
648
674
|
title?: Maybe<Scalars['String']['output']>;
|
|
649
675
|
type?: Maybe<AiOpsInvestigationTaskType>;
|
|
@@ -651,6 +677,7 @@ export type AiOpsInvestigationTask = {
|
|
|
651
677
|
export type AiOpsInvestigationTaskOutput = AiOpsAnalysisScopeTaskOutput | AiOpsChangeImpactTaskOutput | AiOpsRootCauseTaskOutput;
|
|
652
678
|
export declare enum AiOpsInvestigationTaskState {
|
|
653
679
|
Completed = "COMPLETED",
|
|
680
|
+
Failed = "FAILED",
|
|
654
681
|
InProgress = "IN_PROGRESS",
|
|
655
682
|
Pending = "PENDING"
|
|
656
683
|
}
|
|
@@ -667,7 +694,9 @@ export type AiOpsInvestigationTerminated = {
|
|
|
667
694
|
export type AiOpsLikelyRootCause = {
|
|
668
695
|
__typename?: 'AIOpsLikelyRootCause';
|
|
669
696
|
confidenceLabel?: Maybe<AiOpsLikelyRootCauseConfidenceLabel>;
|
|
697
|
+
evidence?: Maybe<Array<AiOpsHypothesisEvidence>>;
|
|
670
698
|
faultyChange?: Maybe<AiOpsFaultyChange>;
|
|
699
|
+
faultyChangeTags?: Maybe<Array<AiOpsFaultyChangeTag>>;
|
|
671
700
|
faultyService?: Maybe<DevOpsService>;
|
|
672
701
|
faultyServiceAssetObject?: Maybe<AiOpsAssetServiceObject>;
|
|
673
702
|
reasoning?: Maybe<Scalars['String']['output']>;
|
|
@@ -2578,6 +2607,7 @@ export declare enum AvpIntegrationId {
|
|
|
2578
2607
|
JsmOperationsGlobal = "JSM_OPERATIONS_GLOBAL",
|
|
2579
2608
|
JsmOperationsTeam = "JSM_OPERATIONS_TEAM",
|
|
2580
2609
|
JsmSummaryPage = "JSM_SUMMARY_PAGE",
|
|
2610
|
+
Mercury = "MERCURY",
|
|
2581
2611
|
Townsquare = "TOWNSQUARE"
|
|
2582
2612
|
}
|
|
2583
2613
|
export type AvpJiraDashboardMigrationStatus = {
|
|
@@ -2943,6 +2973,18 @@ export type AvpRemoveDashboardRowPayload = Payload & {
|
|
|
2943
2973
|
errors?: Maybe<Array<MutationError>>;
|
|
2944
2974
|
success: Scalars['Boolean']['output'];
|
|
2945
2975
|
};
|
|
2976
|
+
export type AvpReplaceEmptyCanvasElementInput = {
|
|
2977
|
+
dashboardAri: Scalars['ID']['input'];
|
|
2978
|
+
sourceElementId: Scalars['ID']['input'];
|
|
2979
|
+
sourceRowId: Scalars['ID']['input'];
|
|
2980
|
+
targetElementId: Scalars['ID']['input'];
|
|
2981
|
+
};
|
|
2982
|
+
export type AvpReplaceEmptyCanvasElementPayload = Payload & {
|
|
2983
|
+
__typename?: 'AVPReplaceEmptyCanvasElementPayload';
|
|
2984
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
2985
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2986
|
+
success: Scalars['Boolean']['output'];
|
|
2987
|
+
};
|
|
2946
2988
|
export type AvpSearchDashboardsInput = {
|
|
2947
2989
|
ascending?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2948
2990
|
category?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -4514,6 +4556,16 @@ export type AdminDomainClaim = {
|
|
|
4514
4556
|
timestamp: Scalars['String']['output'];
|
|
4515
4557
|
verificationType?: Maybe<AdminDomainVerificationType>;
|
|
4516
4558
|
};
|
|
4559
|
+
export type AdminDomainClaimConnection = {
|
|
4560
|
+
__typename?: 'AdminDomainClaimConnection';
|
|
4561
|
+
edges?: Maybe<Array<AdminDomainClaimEdge>>;
|
|
4562
|
+
pageInfo: PageInfo;
|
|
4563
|
+
};
|
|
4564
|
+
export type AdminDomainClaimEdge = {
|
|
4565
|
+
__typename?: 'AdminDomainClaimEdge';
|
|
4566
|
+
cursor: Scalars['String']['output'];
|
|
4567
|
+
node: AdminDomainClaim;
|
|
4568
|
+
};
|
|
4517
4569
|
export declare enum AdminDomainClaimStatus {
|
|
4518
4570
|
Deleted = "DELETED",
|
|
4519
4571
|
MissingToken = "MISSING_TOKEN",
|
|
@@ -5527,8 +5579,12 @@ export type AdminUnitLinkedResource = {
|
|
|
5527
5579
|
};
|
|
5528
5580
|
export type AdminUnitLinkedResourceLinksArgs = {
|
|
5529
5581
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
5582
|
+
filter?: InputMaybe<AdminUnitLinkedResourceFilter>;
|
|
5530
5583
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
5531
5584
|
};
|
|
5585
|
+
export type AdminUnitLinkedResourceFilter = {
|
|
5586
|
+
atis?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5587
|
+
};
|
|
5532
5588
|
export type AdminUnitLinkedTo = {
|
|
5533
5589
|
__typename?: 'AdminUnitLinkedTo';
|
|
5534
5590
|
id: Scalars['ID']['output'];
|
|
@@ -6488,7 +6544,7 @@ export type AgentStudioBatchEvaluationProject = {
|
|
|
6488
6544
|
export type AgentStudioBulkDeleteAgentsInput = {
|
|
6489
6545
|
ids: Array<Scalars['ID']['input']>;
|
|
6490
6546
|
};
|
|
6491
|
-
export type AgentStudioBulkDeleteAgentsPayload = {
|
|
6547
|
+
export type AgentStudioBulkDeleteAgentsPayload = Payload & {
|
|
6492
6548
|
__typename?: 'AgentStudioBulkDeleteAgentsPayload';
|
|
6493
6549
|
agents?: Maybe<Array<AgentStudioAgent>>;
|
|
6494
6550
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -6499,7 +6555,7 @@ export type AgentStudioBulkUpdateAgentOwnerInput = {
|
|
|
6499
6555
|
creatorId?: InputMaybe<Scalars['ID']['input']>;
|
|
6500
6556
|
ids: Array<Scalars['ID']['input']>;
|
|
6501
6557
|
};
|
|
6502
|
-
export type AgentStudioBulkUpdateAgentOwnerPayload = {
|
|
6558
|
+
export type AgentStudioBulkUpdateAgentOwnerPayload = Payload & {
|
|
6503
6559
|
__typename?: 'AgentStudioBulkUpdateAgentOwnerPayload';
|
|
6504
6560
|
agents?: Maybe<Array<AgentStudioAgent>>;
|
|
6505
6561
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -7830,6 +7886,7 @@ export type AgentWorkspaceAgentAvailability = {
|
|
|
7830
7886
|
agentName: Scalars['String']['output'];
|
|
7831
7887
|
id: Scalars['ID']['output'];
|
|
7832
7888
|
status: AgentWorkspaceAvailabilityStatus;
|
|
7889
|
+
statusExpiresAt?: Maybe<Scalars['DateTime']['output']>;
|
|
7833
7890
|
teamARIs: Array<Scalars['ID']['output']>;
|
|
7834
7891
|
teamIds: Array<Scalars['ID']['output']>;
|
|
7835
7892
|
teamNames: Array<Scalars['String']['output']>;
|
|
@@ -8027,6 +8084,7 @@ export type AgentWorkspaceAvailabilityStatusInput = {
|
|
|
8027
8084
|
cloudId: Scalars['ID']['input'];
|
|
8028
8085
|
projectId: Scalars['ID']['input'];
|
|
8029
8086
|
status: AgentWorkspaceAvailabilityStatus;
|
|
8087
|
+
statusExpiresAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
8030
8088
|
};
|
|
8031
8089
|
export type AgentWorkspaceAvailabilityStatusPayload = {
|
|
8032
8090
|
__typename?: 'AgentWorkspaceAvailabilityStatusPayload';
|
|
@@ -8084,6 +8142,20 @@ export type AgentWorkspaceBulkUpsertDraftedRoutingTableEntryInput = {
|
|
|
8084
8142
|
serviceFieldId: Scalars['ID']['input'];
|
|
8085
8143
|
serviceId: Scalars['ID']['input'];
|
|
8086
8144
|
};
|
|
8145
|
+
export type AgentWorkspaceBulkUpsertDraftedTeamRoutingTableEntriesInput = {
|
|
8146
|
+
cloudId: Scalars['ID']['input'];
|
|
8147
|
+
draftId?: InputMaybe<Scalars['ID']['input']>;
|
|
8148
|
+
entries: Array<AgentWorkspaceBulkUpsertDraftedTeamRoutingTableEntryInput>;
|
|
8149
|
+
projectKey: Scalars['String']['input'];
|
|
8150
|
+
};
|
|
8151
|
+
export type AgentWorkspaceBulkUpsertDraftedTeamRoutingTableEntriesPayload = {
|
|
8152
|
+
__typename?: 'AgentWorkspaceBulkUpsertDraftedTeamRoutingTableEntriesPayload';
|
|
8153
|
+
entries: Array<AgentWorkspaceDraftedTeamRoutingTableEntry>;
|
|
8154
|
+
};
|
|
8155
|
+
export type AgentWorkspaceBulkUpsertDraftedTeamRoutingTableEntryInput = {
|
|
8156
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
8157
|
+
teamAri: Scalars['ID']['input'];
|
|
8158
|
+
};
|
|
8087
8159
|
export type AgentWorkspaceCancelRoutingTableGenerationInput = {
|
|
8088
8160
|
generationId: Scalars['ID']['input'];
|
|
8089
8161
|
projectAri: Scalars['ID']['input'];
|
|
@@ -8270,10 +8342,12 @@ export type AgentWorkspaceCreateDraftedRoutingTableEntriesV2Input = {
|
|
|
8270
8342
|
};
|
|
8271
8343
|
export type AgentWorkspaceCreateDraftedTeamRoutingTableEntriesInput = {
|
|
8272
8344
|
cloudId: Scalars['ID']['input'];
|
|
8345
|
+
draftId?: InputMaybe<Scalars['ID']['input']>;
|
|
8273
8346
|
projectKey: Scalars['String']['input'];
|
|
8274
8347
|
};
|
|
8275
8348
|
export type AgentWorkspaceCreateDraftedTeamRoutingTableEntriesPayload = {
|
|
8276
8349
|
__typename?: 'AgentWorkspaceCreateDraftedTeamRoutingTableEntriesPayload';
|
|
8350
|
+
draftId: Scalars['ID']['output'];
|
|
8277
8351
|
entries: Array<AgentWorkspaceDraftedTeamRoutingTableEntry>;
|
|
8278
8352
|
rowsInserted: Scalars['Int']['output'];
|
|
8279
8353
|
};
|
|
@@ -8404,6 +8478,7 @@ export type AgentWorkspaceDraftedTeamRoutingTableEntry = {
|
|
|
8404
8478
|
__typename?: 'AgentWorkspaceDraftedTeamRoutingTableEntry';
|
|
8405
8479
|
confidence?: Maybe<Scalars['Float']['output']>;
|
|
8406
8480
|
description?: Maybe<Scalars['String']['output']>;
|
|
8481
|
+
draftId: Scalars['ID']['output'];
|
|
8407
8482
|
generationId?: Maybe<Scalars['ID']['output']>;
|
|
8408
8483
|
lastModifiedAt: Scalars['String']['output'];
|
|
8409
8484
|
lastModifiedBy: Scalars['ID']['output'];
|
|
@@ -9000,6 +9075,9 @@ export type AgentWorkspaceSetTeamCapacitiesPayload = {
|
|
|
9000
9075
|
export type AgentWorkspaceSetWorkforceTeamAccessLevelsPayload = {
|
|
9001
9076
|
__typename?: 'AgentWorkspaceSetWorkforceTeamAccessLevelsPayload';
|
|
9002
9077
|
accessLevels: Array<AgentWorkspaceWorkforceTeamAccessLevelResult>;
|
|
9078
|
+
errorCount: Scalars['Int']['output'];
|
|
9079
|
+
errors: Array<AgentWorkspaceWorkforceTeamAccessError>;
|
|
9080
|
+
success: Scalars['Boolean']['output'];
|
|
9003
9081
|
};
|
|
9004
9082
|
export type AgentWorkspaceSetWorkloadJqlInput = {
|
|
9005
9083
|
jql: Scalars['String']['input'];
|
|
@@ -9402,6 +9480,13 @@ export type AgentWorkspaceStartGenerateRoutingTablePayload = {
|
|
|
9402
9480
|
generationId: Scalars['ID']['output'];
|
|
9403
9481
|
status: AgentWorkspaceRoutingTableGenerationStatus;
|
|
9404
9482
|
};
|
|
9483
|
+
export type AgentWorkspaceStartGenerateTeamRoutingTableInput = {
|
|
9484
|
+
cloudId: Scalars['ID']['input'];
|
|
9485
|
+
draftId: Scalars['ID']['input'];
|
|
9486
|
+
maxIssues?: InputMaybe<Scalars['Int']['input']>;
|
|
9487
|
+
projectKey: Scalars['String']['input'];
|
|
9488
|
+
selectedTeamAris?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
9489
|
+
};
|
|
9405
9490
|
export type AgentWorkspaceStartSmartRoutingDryRunInput = {
|
|
9406
9491
|
cloudId: Scalars['ID']['input'];
|
|
9407
9492
|
projectKey: Scalars['String']['input'];
|
|
@@ -9430,6 +9515,7 @@ export type AgentWorkspaceSubmitDraftedRoutingTablePayload = {
|
|
|
9430
9515
|
};
|
|
9431
9516
|
export type AgentWorkspaceSubmitDraftedTeamRoutingTableInput = {
|
|
9432
9517
|
cloudId: Scalars['ID']['input'];
|
|
9518
|
+
draftId?: InputMaybe<Scalars['ID']['input']>;
|
|
9433
9519
|
projectKey: Scalars['String']['input'];
|
|
9434
9520
|
};
|
|
9435
9521
|
export type AgentWorkspaceSubmitDraftedTeamRoutingTablePayload = {
|
|
@@ -9671,6 +9757,7 @@ export type AgentWorkspaceUpsertDraftedRoutingTableEntryPayload = {
|
|
|
9671
9757
|
export type AgentWorkspaceUpsertDraftedTeamRoutingTableEntryInput = {
|
|
9672
9758
|
cloudId: Scalars['ID']['input'];
|
|
9673
9759
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
9760
|
+
draftId?: InputMaybe<Scalars['ID']['input']>;
|
|
9674
9761
|
projectKey: Scalars['String']['input'];
|
|
9675
9762
|
teamAri: Scalars['ID']['input'];
|
|
9676
9763
|
};
|
|
@@ -9722,6 +9809,12 @@ export type AgentWorkspaceWfoSummaryViewResult = {
|
|
|
9722
9809
|
errors?: Maybe<Array<QueryError>>;
|
|
9723
9810
|
summaryView?: Maybe<AgentWorkspaceWfoSummaryView>;
|
|
9724
9811
|
};
|
|
9812
|
+
export type AgentWorkspaceWorkforceTeamAccessError = {
|
|
9813
|
+
__typename?: 'AgentWorkspaceWorkforceTeamAccessError';
|
|
9814
|
+
code: Scalars['String']['output'];
|
|
9815
|
+
field?: Maybe<Scalars['String']['output']>;
|
|
9816
|
+
message: Scalars['String']['output'];
|
|
9817
|
+
};
|
|
9725
9818
|
export declare enum AgentWorkspaceWorkforceTeamAccessLevel {
|
|
9726
9819
|
TeamAdmin = "TEAM_ADMIN",
|
|
9727
9820
|
TeamMember = "TEAM_MEMBER"
|
|
@@ -10540,6 +10633,11 @@ export type AppAuditConnection = {
|
|
|
10540
10633
|
nodes?: Maybe<Array<Maybe<AuditEvent>>>;
|
|
10541
10634
|
pageInfo?: Maybe<AuditsPageInfo>;
|
|
10542
10635
|
};
|
|
10636
|
+
export declare enum AppBuildStatus {
|
|
10637
|
+
Failed = "FAILED",
|
|
10638
|
+
Processing = "PROCESSING",
|
|
10639
|
+
Ready = "READY"
|
|
10640
|
+
}
|
|
10543
10641
|
export type AppConnection = {
|
|
10544
10642
|
__typename?: 'AppConnection';
|
|
10545
10643
|
edges?: Maybe<Array<Maybe<AppEdge>>>;
|
|
@@ -12189,6 +12287,35 @@ export type ArjHierarchyConfigurationLevel = {
|
|
|
12189
12287
|
issueTypes?: Maybe<Array<Scalars['String']['output']>>;
|
|
12190
12288
|
title: Scalars['String']['output'];
|
|
12191
12289
|
};
|
|
12290
|
+
export type Artifact = {
|
|
12291
|
+
__typename?: 'Artifact';
|
|
12292
|
+
id: Scalars['ID']['output'];
|
|
12293
|
+
name: Scalars['String']['output'];
|
|
12294
|
+
type: Scalars['String']['output'];
|
|
12295
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
12296
|
+
};
|
|
12297
|
+
export type ArtifactCreateContentPayload = {
|
|
12298
|
+
__typename?: 'ArtifactCreateContentPayload';
|
|
12299
|
+
errors?: Maybe<Array<MutationError>>;
|
|
12300
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
12301
|
+
upload?: Maybe<ArtifactUploadTarget>;
|
|
12302
|
+
};
|
|
12303
|
+
export type ArtifactCreateInput = {
|
|
12304
|
+
contentId: Scalars['ID']['input'];
|
|
12305
|
+
name: Scalars['String']['input'];
|
|
12306
|
+
type: Scalars['String']['input'];
|
|
12307
|
+
};
|
|
12308
|
+
export type ArtifactCreatePayload = Payload & {
|
|
12309
|
+
__typename?: 'ArtifactCreatePayload';
|
|
12310
|
+
artifact?: Maybe<Artifact>;
|
|
12311
|
+
errors?: Maybe<Array<MutationError>>;
|
|
12312
|
+
success: Scalars['Boolean']['output'];
|
|
12313
|
+
};
|
|
12314
|
+
export type ArtifactUploadTarget = {
|
|
12315
|
+
__typename?: 'ArtifactUploadTarget';
|
|
12316
|
+
contentId: Scalars['ID']['output'];
|
|
12317
|
+
url: Scalars['URL']['output'];
|
|
12318
|
+
};
|
|
12192
12319
|
export type AssetsAriAttribute = AssetsObjectTypeAttribute & {
|
|
12193
12320
|
__typename?: 'AssetsARIAttribute';
|
|
12194
12321
|
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -17457,6 +17584,7 @@ export type Build = {
|
|
|
17457
17584
|
appId: Scalars['ID']['output'];
|
|
17458
17585
|
createdAt: Scalars['String']['output'];
|
|
17459
17586
|
createdByUser?: Maybe<User>;
|
|
17587
|
+
status: AppBuildStatus;
|
|
17460
17588
|
tag: Scalars['String']['output'];
|
|
17461
17589
|
};
|
|
17462
17590
|
export type BuildConnection = {
|
|
@@ -20887,7 +21015,8 @@ export type CloudifyAnalysisPart = {
|
|
|
20887
21015
|
};
|
|
20888
21016
|
export declare enum CloudifyAnalysisResult {
|
|
20889
21017
|
Failed = "FAILED",
|
|
20890
|
-
Finished = "FINISHED"
|
|
21018
|
+
Finished = "FINISHED",
|
|
21019
|
+
FinishedWithErrors = "FINISHED_WITH_ERRORS"
|
|
20891
21020
|
}
|
|
20892
21021
|
export type CloudifyAnalysisServiceProgress = {
|
|
20893
21022
|
__typename?: 'CloudifyAnalysisServiceProgress';
|
|
@@ -20919,7 +21048,7 @@ export type CloudifyCloudProjectTargetInput = {
|
|
|
20919
21048
|
export type CloudifyCustomizationIdInput = {
|
|
20920
21049
|
id?: InputMaybe<Scalars['String']['input']>;
|
|
20921
21050
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
20922
|
-
type
|
|
21051
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
20923
21052
|
};
|
|
20924
21053
|
export type CloudifyDcInstanceTarget = {
|
|
20925
21054
|
__typename?: 'CloudifyDcInstanceTarget';
|
|
@@ -20992,6 +21121,7 @@ export type CloudifyProjectAri = {
|
|
|
20992
21121
|
export type CloudifyRawCustomizationRecommendation = {
|
|
20993
21122
|
__typename?: 'CloudifyRawCustomizationRecommendation';
|
|
20994
21123
|
content: Scalars['String']['output'];
|
|
21124
|
+
customizationIds: Array<Scalars['ID']['output']>;
|
|
20995
21125
|
id: Scalars['ID']['output'];
|
|
20996
21126
|
type: CloudifyRawCustomizationRecommendationType;
|
|
20997
21127
|
};
|
|
@@ -21062,6 +21192,7 @@ export type CloudifyRecommendationsSummary = {
|
|
|
21062
21192
|
lastAnalysisResult?: Maybe<CloudifyAnalysisResult>;
|
|
21063
21193
|
migrationPaths: Array<CloudifyMigrationPathCount>;
|
|
21064
21194
|
reportUrl?: Maybe<Scalars['String']['output']>;
|
|
21195
|
+
scanReportId?: Maybe<Scalars['ID']['output']>;
|
|
21065
21196
|
totalAnalyzed: Scalars['Int']['output'];
|
|
21066
21197
|
};
|
|
21067
21198
|
export type CloudifySiteTarget = {
|
|
@@ -21921,6 +22052,7 @@ export type CommerceExpCcpEntitlement = {
|
|
|
21921
22052
|
accountModificationForBac?: Maybe<Array<Maybe<CommerceExpEntitlementAccountModificationForBac>>>;
|
|
21922
22053
|
actions?: Maybe<CommerceExpEntitlementActions>;
|
|
21923
22054
|
actions2?: Maybe<CommerceExpEntitlementActionsV2>;
|
|
22055
|
+
aggCcpEntitlement?: Maybe<CcpEntitlement>;
|
|
21924
22056
|
allRelatedEntitlementsForBac?: Maybe<Array<Maybe<CommerceExpCcpEntitlement>>>;
|
|
21925
22057
|
allowanceExemptions?: Maybe<CommerceExpUtsAllowanceExemptionList>;
|
|
21926
22058
|
allowancePoolContributors?: Maybe<Array<Maybe<CommerceExpAllowancePoolContributor>>>;
|
|
@@ -22676,6 +22808,7 @@ export type CommerceExpCcpTransactionAccount = {
|
|
|
22676
22808
|
status?: Maybe<CommerceExpTransactionAccountStatus>;
|
|
22677
22809
|
usersWithRolesOnEntitlements?: Maybe<Array<Maybe<CommerceExpUserEntitlementRoles>>>;
|
|
22678
22810
|
version?: Maybe<Scalars['Int']['output']>;
|
|
22811
|
+
wallets?: Maybe<Array<Maybe<CommerceExpCcpWallet>>>;
|
|
22679
22812
|
};
|
|
22680
22813
|
export type CommerceExpCcpTransactionAccountCurrentUserPermissionsArgs = {
|
|
22681
22814
|
permissionIds: Array<Scalars['String']['input']>;
|
|
@@ -22715,6 +22848,28 @@ export type CommerceExpCcpTransactionAccountQuotes2Args = {
|
|
|
22715
22848
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
22716
22849
|
sort?: InputMaybe<Array<CommerceExpSort>>;
|
|
22717
22850
|
};
|
|
22851
|
+
export type CommerceExpCcpWallet = {
|
|
22852
|
+
__typename?: 'CommerceExpCcpWallet';
|
|
22853
|
+
createdAt: Scalars['Float']['output'];
|
|
22854
|
+
currency: CommerceExpWalletCurrency;
|
|
22855
|
+
entitlementId: Scalars['String']['output'];
|
|
22856
|
+
id: Scalars['String']['output'];
|
|
22857
|
+
policy?: Maybe<CommerceExpCcpWalletPolicy>;
|
|
22858
|
+
status: CommerceExpWalletStatus;
|
|
22859
|
+
transactionAccount: CommerceExpCcpWalletTransactionAccountPartition;
|
|
22860
|
+
updatedAt: Scalars['Float']['output'];
|
|
22861
|
+
validUntil?: Maybe<Scalars['Float']['output']>;
|
|
22862
|
+
version: Scalars['Int']['output'];
|
|
22863
|
+
};
|
|
22864
|
+
export type CommerceExpCcpWalletPolicy = {
|
|
22865
|
+
__typename?: 'CommerceExpCcpWalletPolicy';
|
|
22866
|
+
allowNegative: Scalars['Boolean']['output'];
|
|
22867
|
+
};
|
|
22868
|
+
export type CommerceExpCcpWalletTransactionAccountPartition = {
|
|
22869
|
+
__typename?: 'CommerceExpCcpWalletTransactionAccountPartition';
|
|
22870
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
22871
|
+
partitionKey?: Maybe<Scalars['String']['output']>;
|
|
22872
|
+
};
|
|
22718
22873
|
export type CommerceExpChargeDetails = {
|
|
22719
22874
|
__typename?: 'CommerceExpChargeDetails';
|
|
22720
22875
|
chargeQuantities?: Maybe<Array<Maybe<CommerceExpChargeQuantity>>>;
|
|
@@ -22812,10 +22967,12 @@ export type CommerceExpContact = {
|
|
|
22812
22967
|
contactType?: Maybe<CommerceExpContactType>;
|
|
22813
22968
|
customerType?: Maybe<CommerceExpCustomerType>;
|
|
22814
22969
|
isPrimary?: Maybe<Scalars['Boolean']['output']>;
|
|
22970
|
+
principal?: Maybe<User>;
|
|
22815
22971
|
principalAri?: Maybe<Scalars['String']['output']>;
|
|
22816
22972
|
resourceAri?: Maybe<Scalars['String']['output']>;
|
|
22817
22973
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
22818
22974
|
updatedBy?: Maybe<Scalars['String']['output']>;
|
|
22975
|
+
userId?: Maybe<Scalars['String']['output']>;
|
|
22819
22976
|
};
|
|
22820
22977
|
export type CommerceExpContactInput = {
|
|
22821
22978
|
contactType: CommerceExpContactType;
|
|
@@ -23067,6 +23224,7 @@ export type CommerceExpCreateEntitlementOrderOptions = {
|
|
|
23067
23224
|
billingCycle?: InputMaybe<CommerceExpPricingPlanInterval>;
|
|
23068
23225
|
chargeQuantities?: InputMaybe<Array<CommerceExpChargeElementDetails>>;
|
|
23069
23226
|
invoiceGroupId?: InputMaybe<Scalars['ID']['input']>;
|
|
23227
|
+
matchTrialLength?: InputMaybe<Scalars['Boolean']['input']>;
|
|
23070
23228
|
pricingPlanId?: InputMaybe<Scalars['ID']['input']>;
|
|
23071
23229
|
provisioningRequestId?: InputMaybe<Scalars['ID']['input']>;
|
|
23072
23230
|
trial?: InputMaybe<CommerceExpTrialIntentInput>;
|
|
@@ -25502,6 +25660,10 @@ export declare enum CommerceExpVersionChangeEntityEnum {
|
|
|
25502
25660
|
PaymentMethodUpdated = "PAYMENT_METHOD_UPDATED",
|
|
25503
25661
|
ShipToUpdated = "SHIP_TO_UPDATED"
|
|
25504
25662
|
}
|
|
25663
|
+
export declare enum CommerceExpWalletCurrency {
|
|
25664
|
+
Jpy = "JPY",
|
|
25665
|
+
Usd = "USD"
|
|
25666
|
+
}
|
|
25505
25667
|
export type CommerceExpWalletInfo = {
|
|
25506
25668
|
__typename?: 'CommerceExpWalletInfo';
|
|
25507
25669
|
sourceId?: Maybe<Scalars['String']['output']>;
|
|
@@ -25526,6 +25688,11 @@ export type CommerceExpWalletPaymentMethodPaginatedEntitlementsArgs = {
|
|
|
25526
25688
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25527
25689
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
25528
25690
|
};
|
|
25691
|
+
export declare enum CommerceExpWalletStatus {
|
|
25692
|
+
Active = "ACTIVE",
|
|
25693
|
+
Closed = "CLOSED",
|
|
25694
|
+
Suspended = "SUSPENDED"
|
|
25695
|
+
}
|
|
25529
25696
|
export type CommerceExperienceCapability = {
|
|
25530
25697
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
25531
25698
|
isAvailableToUser?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -30783,6 +30950,18 @@ export type ConfluenceAccessLinkInfo = {
|
|
|
30783
30950
|
accessType: ConfluenceShareableLinkAccessType;
|
|
30784
30951
|
status: PublicLinkStatus;
|
|
30785
30952
|
};
|
|
30953
|
+
export type ConfluenceAccessLinkSpacesActionInput = {
|
|
30954
|
+
accessTypes: Array<ConfluenceShareableLinkAccessType>;
|
|
30955
|
+
spaceIds: Array<Scalars['ID']['input']>;
|
|
30956
|
+
status: ConfluenceShareableLinkSpaceStatus;
|
|
30957
|
+
};
|
|
30958
|
+
export type ConfluenceAccessLinkSpacesActionPayload = Payload & {
|
|
30959
|
+
__typename?: 'ConfluenceAccessLinkSpacesActionPayload';
|
|
30960
|
+
errors?: Maybe<Array<MutationError>>;
|
|
30961
|
+
newStatus: ConfluenceShareableLinkSpaceStatus;
|
|
30962
|
+
success: Scalars['Boolean']['output'];
|
|
30963
|
+
updatedSpaceIds: Array<Scalars['ID']['output']>;
|
|
30964
|
+
};
|
|
30786
30965
|
export type ConfluenceAccessRequestSettings = {
|
|
30787
30966
|
__typename?: 'ConfluenceAccessRequestSettings';
|
|
30788
30967
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -32978,6 +33157,7 @@ export type ConfluenceDevDocsDocTypeConfigInput = {
|
|
|
32978
33157
|
docTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
32979
33158
|
};
|
|
32980
33159
|
export type ConfluenceDevDocsRepositoryConfigInput = {
|
|
33160
|
+
customPrompt?: InputMaybe<Scalars['String']['input']>;
|
|
32981
33161
|
docTypes: Array<ConfluenceDevDocsDocTypeConfigInput>;
|
|
32982
33162
|
ref?: InputMaybe<Scalars['String']['input']>;
|
|
32983
33163
|
repoName: Scalars['String']['input'];
|
|
@@ -36551,6 +36731,7 @@ export type ConfluenceSiteConfiguration = {
|
|
|
36551
36731
|
isAddWildcardsToUserAndGroupSearchesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
36552
36732
|
isAnonymousAccessToRemoteApiEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
36553
36733
|
isContactAdministratorsFormEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
36734
|
+
isCwrRemixCreationEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
36554
36735
|
isDigestSlackNotificationEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
36555
36736
|
isEditorConversionForSiteEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
36556
36737
|
isEditorFullWidthEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -36617,6 +36798,16 @@ export type ConfluenceSlideLinks = {
|
|
|
36617
36798
|
base?: Maybe<Scalars['String']['output']>;
|
|
36618
36799
|
webUi?: Maybe<Scalars['String']['output']>;
|
|
36619
36800
|
};
|
|
36801
|
+
export type ConfluenceSmartFolderSyncControlInput = {
|
|
36802
|
+
folderId: Scalars['ID']['input'];
|
|
36803
|
+
};
|
|
36804
|
+
export type ConfluenceSmartFolderSyncControlPayload = Payload & {
|
|
36805
|
+
__typename?: 'ConfluenceSmartFolderSyncControlPayload';
|
|
36806
|
+
didChange?: Maybe<Scalars['Boolean']['output']>;
|
|
36807
|
+
errors?: Maybe<Array<MutationError>>;
|
|
36808
|
+
isPaused?: Maybe<Scalars['Boolean']['output']>;
|
|
36809
|
+
success: Scalars['Boolean']['output'];
|
|
36810
|
+
};
|
|
36620
36811
|
export declare enum ConfluenceSmartFolderSyncOutcome {
|
|
36621
36812
|
Ran = "RAN",
|
|
36622
36813
|
SkippedPaused = "SKIPPED_PAUSED",
|
|
@@ -37717,6 +37908,15 @@ export type ConfluenceUpdateCustomRolePayload = Payload & {
|
|
|
37717
37908
|
success: Scalars['Boolean']['output'];
|
|
37718
37909
|
taskId?: Maybe<Scalars['ID']['output']>;
|
|
37719
37910
|
};
|
|
37911
|
+
export type ConfluenceUpdateCwrRemixCreationConfigurationInput = {
|
|
37912
|
+
isEnabled: Scalars['Boolean']['input'];
|
|
37913
|
+
};
|
|
37914
|
+
export type ConfluenceUpdateCwrRemixCreationConfigurationPayload = Payload & {
|
|
37915
|
+
__typename?: 'ConfluenceUpdateCwrRemixCreationConfigurationPayload';
|
|
37916
|
+
errors?: Maybe<Array<MutationError>>;
|
|
37917
|
+
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
37918
|
+
success: Scalars['Boolean']['output'];
|
|
37919
|
+
};
|
|
37720
37920
|
export type ConfluenceUpdateDefaultTitleEmojiInput = {
|
|
37721
37921
|
contentId: Scalars['ID']['input'];
|
|
37722
37922
|
defaultTitleEmoji: ConfluenceGraphQlDefaultTitleEmoji;
|
|
@@ -38815,8 +39015,11 @@ export type ContentContentAnalyticsViewsByUserArgs = {
|
|
|
38815
39015
|
accountIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
38816
39016
|
actorType?: InputMaybe<ConfluencePageAnalyticsActorType>;
|
|
38817
39017
|
engageTimeThreshold?: InputMaybe<Scalars['Int']['input']>;
|
|
39018
|
+
fromDate?: InputMaybe<Scalars['String']['input']>;
|
|
38818
39019
|
isPrivacyModeEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38819
39020
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
39021
|
+
timezone?: InputMaybe<Scalars['String']['input']>;
|
|
39022
|
+
toDate?: InputMaybe<Scalars['String']['input']>;
|
|
38820
39023
|
};
|
|
38821
39024
|
export type ContentContentStateArgs = {
|
|
38822
39025
|
isDraft?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -39535,7 +39738,6 @@ export type ConvoAiHomeThreadSuggestedAction = {
|
|
|
39535
39738
|
export declare enum ConvoAiHomeThreadSuggestedActionOriginType {
|
|
39536
39739
|
CommentRule = "COMMENT_RULE",
|
|
39537
39740
|
ConfluenceInlineTasksRule = "CONFLUENCE_INLINE_TASKS_RULE",
|
|
39538
|
-
ConfluencePageRule = "CONFLUENCE_PAGE_RULE",
|
|
39539
39741
|
ConfluenceTaggedPageRule = "CONFLUENCE_TAGGED_PAGE_RULE",
|
|
39540
39742
|
ConfluenceUpdatedPageRule = "CONFLUENCE_UPDATED_PAGE_RULE",
|
|
39541
39743
|
ConfluenceWatchedPageRule = "CONFLUENCE_WATCHED_PAGE_RULE",
|
|
@@ -39751,6 +39953,7 @@ export declare enum ConvoAiSearchAgentEffort {
|
|
|
39751
39953
|
Light = "LIGHT"
|
|
39752
39954
|
}
|
|
39753
39955
|
export type ConvoAiSearchAgentInput = {
|
|
39956
|
+
clientRequestId?: InputMaybe<Scalars['String']['input']>;
|
|
39754
39957
|
cloudId: Scalars['ID']['input'];
|
|
39755
39958
|
effort?: InputMaybe<ConvoAiSearchAgentEffort>;
|
|
39756
39959
|
maxSources?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -40551,6 +40754,12 @@ export type CplsGetContributorWorkAssociationsInput = {
|
|
|
40551
40754
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
40552
40755
|
workDataIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
40553
40756
|
};
|
|
40757
|
+
export type CplsGetWorkContributionAggregationsInput = {
|
|
40758
|
+
cloudId: Scalars['ID']['input'];
|
|
40759
|
+
contributionDateRange?: InputMaybe<CplsContributionDateRange>;
|
|
40760
|
+
timeScale?: InputMaybe<CplsTimeScaleType>;
|
|
40761
|
+
workDataIds: Array<Scalars['ID']['input']>;
|
|
40762
|
+
};
|
|
40554
40763
|
export type CplsImportCapacityDataInput = {
|
|
40555
40764
|
cloudId: Scalars['ID']['input'];
|
|
40556
40765
|
contributions?: InputMaybe<Array<CplsAddContributionInput>>;
|
|
@@ -40769,6 +40978,25 @@ export type CplsWorkConnection = {
|
|
|
40769
40978
|
edges?: Maybe<Array<CplsWorkEdge>>;
|
|
40770
40979
|
pageInfo: PageInfo;
|
|
40771
40980
|
};
|
|
40981
|
+
export type CplsWorkContributionAggregation = {
|
|
40982
|
+
__typename?: 'CplsWorkContributionAggregation';
|
|
40983
|
+
endDate?: Maybe<Scalars['Date']['output']>;
|
|
40984
|
+
startDate?: Maybe<Scalars['Date']['output']>;
|
|
40985
|
+
totalContributionFormats?: Maybe<CplsValueFormats>;
|
|
40986
|
+
};
|
|
40987
|
+
export type CplsWorkContributionAggregations = {
|
|
40988
|
+
__typename?: 'CplsWorkContributionAggregations';
|
|
40989
|
+
contributionAggregations: Array<CplsWorkContributionAggregation>;
|
|
40990
|
+
workData?: Maybe<CplsWorkData>;
|
|
40991
|
+
workDataId: Scalars['ID']['output'];
|
|
40992
|
+
};
|
|
40993
|
+
export type CplsWorkContributionAggregationsResult = {
|
|
40994
|
+
__typename?: 'CplsWorkContributionAggregationsResult';
|
|
40995
|
+
endDate?: Maybe<Scalars['Date']['output']>;
|
|
40996
|
+
startDate?: Maybe<Scalars['Date']['output']>;
|
|
40997
|
+
timeScale?: Maybe<CplsTimeScaleType>;
|
|
40998
|
+
workContributionAggregations?: Maybe<Array<CplsWorkContributionAggregations>>;
|
|
40999
|
+
};
|
|
40772
41000
|
export type CplsWorkContributorConnection = {
|
|
40773
41001
|
__typename?: 'CplsWorkContributorConnection';
|
|
40774
41002
|
edges?: Maybe<Array<CplsWorkContributorEdge>>;
|
|
@@ -45413,6 +45641,7 @@ export type DevAiAutodevNextUnassignWorkItemPayload = Payload & {
|
|
|
45413
45641
|
};
|
|
45414
45642
|
export type DevAiAutodevNextUpdateWorkstreamInput = {
|
|
45415
45643
|
cloudId: Scalars['ID']['input'];
|
|
45644
|
+
loopType?: InputMaybe<DevAiAutodevNextWorkstreamLoopTypeInput>;
|
|
45416
45645
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
45417
45646
|
settings?: InputMaybe<DevAiAutodevNextWorkstreamSettingsInput>;
|
|
45418
45647
|
status?: InputMaybe<DevAiAutodevNextWorkstreamStatus>;
|
|
@@ -45539,6 +45768,9 @@ export type DevAiAutodevNextWorkstreamEdge = {
|
|
|
45539
45768
|
cursor: Scalars['String']['output'];
|
|
45540
45769
|
node: DevAiAutodevNextWorkstream;
|
|
45541
45770
|
};
|
|
45771
|
+
export type DevAiAutodevNextWorkstreamFilter = {
|
|
45772
|
+
ownership?: InputMaybe<DevAiAutodevNextWorkstreamOwnershipFilter>;
|
|
45773
|
+
};
|
|
45542
45774
|
export declare enum DevAiAutodevNextWorkstreamFindWorkMode {
|
|
45543
45775
|
BacklogScan = "BACKLOG_SCAN",
|
|
45544
45776
|
CodeScan = "CODE_SCAN"
|
|
@@ -45548,6 +45780,10 @@ export type DevAiAutodevNextWorkstreamLastSweep = {
|
|
|
45548
45780
|
completedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
45549
45781
|
startedAt: Scalars['DateTime']['output'];
|
|
45550
45782
|
};
|
|
45783
|
+
export declare enum DevAiAutodevNextWorkstreamLoopTypeInput {
|
|
45784
|
+
Admin = "ADMIN",
|
|
45785
|
+
User = "USER"
|
|
45786
|
+
}
|
|
45551
45787
|
export type DevAiAutodevNextWorkstreamMember = {
|
|
45552
45788
|
__typename?: 'DevAiAutodevNextWorkstreamMember';
|
|
45553
45789
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -45562,6 +45798,10 @@ export declare enum DevAiAutodevNextWorkstreamMemberRole {
|
|
|
45562
45798
|
Member = "MEMBER",
|
|
45563
45799
|
Owner = "OWNER"
|
|
45564
45800
|
}
|
|
45801
|
+
export type DevAiAutodevNextWorkstreamOwnershipFilter = {
|
|
45802
|
+
isOwner: Scalars['Boolean']['input'];
|
|
45803
|
+
userAri: Scalars['ID']['input'];
|
|
45804
|
+
};
|
|
45565
45805
|
export type DevAiAutodevNextWorkstreamSettings = {
|
|
45566
45806
|
__typename?: 'DevAiAutodevNextWorkstreamSettings';
|
|
45567
45807
|
assigneeAllowlist?: Maybe<Array<User>>;
|
|
@@ -50342,7 +50582,12 @@ export declare enum ExternalContentRepresentation {
|
|
|
50342
50582
|
}
|
|
50343
50583
|
export type ExternalContributor = {
|
|
50344
50584
|
__typename?: 'ExternalContributor';
|
|
50585
|
+
affiliation?: Maybe<Scalars['String']['output']>;
|
|
50586
|
+
hasAttended?: Maybe<Scalars['Boolean']['output']>;
|
|
50345
50587
|
interactionCount?: Maybe<Scalars['Long']['output']>;
|
|
50588
|
+
longestMonologueInSeconds?: Maybe<Scalars['Long']['output']>;
|
|
50589
|
+
role?: Maybe<Scalars['String']['output']>;
|
|
50590
|
+
talkTimeInSeconds?: Maybe<Scalars['Long']['output']>;
|
|
50346
50591
|
user?: Maybe<ExternalUser>;
|
|
50347
50592
|
};
|
|
50348
50593
|
export type ExternalConversation = Node & {
|
|
@@ -51741,6 +51986,7 @@ export type ExternalUserLinkedUsersArgs = {
|
|
|
51741
51986
|
export type ExternalVideo = Node & {
|
|
51742
51987
|
__typename?: 'ExternalVideo';
|
|
51743
51988
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
51989
|
+
belongsInSpace?: Maybe<ExternalAssociation>;
|
|
51744
51990
|
callOutcome?: Maybe<ExternalCallOutcome>;
|
|
51745
51991
|
chapters?: Maybe<Array<Maybe<ExternalChapter>>>;
|
|
51746
51992
|
commentCount?: Maybe<Scalars['Long']['output']>;
|
|
@@ -55087,6 +55333,8 @@ export type GraphInferenceInferenceQualityBucket = {
|
|
|
55087
55333
|
};
|
|
55088
55334
|
export type GraphInferenceInferenceQualityMetrics = {
|
|
55089
55335
|
__typename?: 'GraphInferenceInferenceQualityMetrics';
|
|
55336
|
+
cachedReadTokensSum?: Maybe<Scalars['Long']['output']>;
|
|
55337
|
+
cachedWriteTokensSum?: Maybe<Scalars['Long']['output']>;
|
|
55090
55338
|
claimMetricsReportedRuns?: Maybe<Scalars['Long']['output']>;
|
|
55091
55339
|
claimsGeneratedSum?: Maybe<Scalars['Long']['output']>;
|
|
55092
55340
|
claimsWithEvidenceSum?: Maybe<Scalars['Long']['output']>;
|
|
@@ -55116,6 +55364,7 @@ export type GraphInferenceInferenceQualityMetrics = {
|
|
|
55116
55364
|
taskRuns?: Maybe<Scalars['Long']['output']>;
|
|
55117
55365
|
tasksFailed?: Maybe<Scalars['Long']['output']>;
|
|
55118
55366
|
tasksSucceeded?: Maybe<Scalars['Long']['output']>;
|
|
55367
|
+
thoughtTokensSum?: Maybe<Scalars['Long']['output']>;
|
|
55119
55368
|
tokenUsageReportedRuns?: Maybe<Scalars['Long']['output']>;
|
|
55120
55369
|
totalTokensSum?: Maybe<Scalars['Long']['output']>;
|
|
55121
55370
|
};
|
|
@@ -55151,6 +55400,11 @@ export type GraphInferenceInferredProjectContext = {
|
|
|
55151
55400
|
cloudId: Scalars['String']['output'];
|
|
55152
55401
|
queryContext: Scalars['String']['output'];
|
|
55153
55402
|
};
|
|
55403
|
+
export type GraphInferenceInferredProjectEntity = {
|
|
55404
|
+
__typename?: 'GraphInferenceInferredProjectEntity';
|
|
55405
|
+
ari: Scalars['String']['output'];
|
|
55406
|
+
url: Scalars['String']['output'];
|
|
55407
|
+
};
|
|
55154
55408
|
export type GraphInferenceInferredProjectMeResponse = {
|
|
55155
55409
|
__typename?: 'GraphInferenceInferredProjectMeResponse';
|
|
55156
55410
|
apiVersion?: Maybe<Scalars['String']['output']>;
|
|
@@ -55167,6 +55421,18 @@ export type GraphInferenceInferredProjectPageInfo = {
|
|
|
55167
55421
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
55168
55422
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
55169
55423
|
};
|
|
55424
|
+
export type GraphInferenceInferredProjectSummariesResponse = {
|
|
55425
|
+
__typename?: 'GraphInferenceInferredProjectSummariesResponse';
|
|
55426
|
+
apiVersion?: Maybe<Scalars['String']['output']>;
|
|
55427
|
+
inferredProjects?: Maybe<Array<GraphInferenceInferredProjectSummary>>;
|
|
55428
|
+
};
|
|
55429
|
+
export type GraphInferenceInferredProjectSummary = {
|
|
55430
|
+
__typename?: 'GraphInferenceInferredProjectSummary';
|
|
55431
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
55432
|
+
entities?: Maybe<Array<GraphInferenceInferredProjectEntity>>;
|
|
55433
|
+
id: Scalars['ID']['output'];
|
|
55434
|
+
title: Scalars['String']['output'];
|
|
55435
|
+
};
|
|
55170
55436
|
export type GraphInferenceInferredProjectViewer = {
|
|
55171
55437
|
__typename?: 'GraphInferenceInferredProjectViewer';
|
|
55172
55438
|
accountId: Scalars['String']['output'];
|
|
@@ -55381,6 +55647,15 @@ export type GraphIntegrationCreateDataConnectorConnectionInput = {
|
|
|
55381
55647
|
contextAri: Scalars['ID']['input'];
|
|
55382
55648
|
productAri: Scalars['ID']['input'];
|
|
55383
55649
|
};
|
|
55650
|
+
export type GraphIntegrationCreateSkillCloneLinkInput = {
|
|
55651
|
+
contextAri: Scalars['ID']['input'];
|
|
55652
|
+
skillAris: Array<Scalars['ID']['input']>;
|
|
55653
|
+
};
|
|
55654
|
+
export type GraphIntegrationCreateSkillCloneLinkPayload = {
|
|
55655
|
+
__typename?: 'GraphIntegrationCreateSkillCloneLinkPayload';
|
|
55656
|
+
cloneToken?: Maybe<Scalars['String']['output']>;
|
|
55657
|
+
errors?: Maybe<Array<MutationError>>;
|
|
55658
|
+
};
|
|
55384
55659
|
export type GraphIntegrationCreateSkillInput = {
|
|
55385
55660
|
contextAri: Scalars['ID']['input'];
|
|
55386
55661
|
description: Scalars['String']['input'];
|
|
@@ -60238,6 +60513,8 @@ export type GraphStore = {
|
|
|
60238
60513
|
userViewedGoalUpdateInverse?: Maybe<GraphStoreSimplifiedUserViewedGoalUpdateInverseConnection>;
|
|
60239
60514
|
userViewedGoalUpdateInverseBatch?: Maybe<GraphStoreBatchUserViewedGoalUpdateConnection>;
|
|
60240
60515
|
userViewedJiraIssue?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueConnection>;
|
|
60516
|
+
userViewedJiraIssueAnalyticsTest?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueAnalyticsTestConnection>;
|
|
60517
|
+
userViewedJiraIssueAnalyticsTestInverse?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueAnalyticsTestInverseConnection>;
|
|
60241
60518
|
userViewedJiraIssueInverse?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueInverseConnection>;
|
|
60242
60519
|
userViewedProjectUpdate?: Maybe<GraphStoreSimplifiedUserViewedProjectUpdateConnection>;
|
|
60243
60520
|
userViewedProjectUpdateBatch?: Maybe<GraphStoreBatchUserViewedProjectUpdateConnection>;
|
|
@@ -69369,6 +69646,22 @@ export type GraphStoreUserViewedJiraIssueArgs = {
|
|
|
69369
69646
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
69370
69647
|
sort?: InputMaybe<GraphStoreUserViewedJiraIssueSortInput>;
|
|
69371
69648
|
};
|
|
69649
|
+
export type GraphStoreUserViewedJiraIssueAnalyticsTestArgs = {
|
|
69650
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69651
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69652
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69653
|
+
id: Scalars['ID']['input'];
|
|
69654
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
69655
|
+
sort?: InputMaybe<GraphStoreUserViewedJiraIssueAnalyticsTestSortInput>;
|
|
69656
|
+
};
|
|
69657
|
+
export type GraphStoreUserViewedJiraIssueAnalyticsTestInverseArgs = {
|
|
69658
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69659
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69660
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69661
|
+
id: Scalars['ID']['input'];
|
|
69662
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
69663
|
+
sort?: InputMaybe<GraphStoreUserViewedJiraIssueAnalyticsTestSortInput>;
|
|
69664
|
+
};
|
|
69372
69665
|
export type GraphStoreUserViewedJiraIssueInverseArgs = {
|
|
69373
69666
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69374
69667
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -78079,6 +78372,10 @@ export type GraphStoreMeetingRecurrenceHasJiraProjectSortInput = {
|
|
|
78079
78372
|
export type GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageSortInput = {
|
|
78080
78373
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
78081
78374
|
};
|
|
78375
|
+
export type GraphStoreMemoryContentNodeMetadata = {
|
|
78376
|
+
__typename?: 'GraphStoreMemoryContentNodeMetadata';
|
|
78377
|
+
content?: Maybe<Scalars['String']['output']>;
|
|
78378
|
+
};
|
|
78082
78379
|
export type GraphStoreMercuryOrganizationHasAtlasGoalSortInput = {
|
|
78083
78380
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
78084
78381
|
};
|
|
@@ -78420,7 +78717,7 @@ export type GraphStoreMutationDeleteVersionUserAssociatedFeatureFlagArgs = {
|
|
|
78420
78717
|
export type GraphStoreMutationDeleteVulnerabilityAssociatedIssueArgs = {
|
|
78421
78718
|
input?: InputMaybe<GraphStoreDeleteVulnerabilityAssociatedIssueInput>;
|
|
78422
78719
|
};
|
|
78423
|
-
export type GraphStoreNodeMetadata = GraphStoreGraphMemoryNodeMetadata | GraphStoreInferredDecisionNodeMetadata | GraphStoreInferredProjectNodeMetadata | GraphStoreInferredTeamNodeMetadata;
|
|
78720
|
+
export type GraphStoreNodeMetadata = GraphStoreGraphMemoryNodeMetadata | GraphStoreInferredDecisionNodeMetadata | GraphStoreInferredProjectNodeMetadata | GraphStoreInferredTeamNodeMetadata | GraphStoreMemoryContentNodeMetadata;
|
|
78424
78721
|
export type GraphStoreNodeResponse = Node & {
|
|
78425
78722
|
__typename?: 'GraphStoreNodeResponse';
|
|
78426
78723
|
id: Scalars['ID']['output'];
|
|
@@ -92359,6 +92656,34 @@ export type GraphStoreSimplifiedUserViewedGoalUpdateInverseEdge = {
|
|
|
92359
92656
|
};
|
|
92360
92657
|
export type GraphStoreSimplifiedUserViewedGoalUpdateInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
92361
92658
|
export type GraphStoreSimplifiedUserViewedGoalUpdateUnion = TownsquareGoalUpdate;
|
|
92659
|
+
export type GraphStoreSimplifiedUserViewedJiraIssueAnalyticsTestConnection = HasPageInfo & {
|
|
92660
|
+
__typename?: 'GraphStoreSimplifiedUserViewedJiraIssueAnalyticsTestConnection';
|
|
92661
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedJiraIssueAnalyticsTestEdge>>>;
|
|
92662
|
+
pageInfo: PageInfo;
|
|
92663
|
+
};
|
|
92664
|
+
export type GraphStoreSimplifiedUserViewedJiraIssueAnalyticsTestEdge = {
|
|
92665
|
+
__typename?: 'GraphStoreSimplifiedUserViewedJiraIssueAnalyticsTestEdge';
|
|
92666
|
+
createdAt: Scalars['DateTime']['output'];
|
|
92667
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
92668
|
+
id: Scalars['ID']['output'];
|
|
92669
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
92670
|
+
node?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueAnalyticsTestUnion>;
|
|
92671
|
+
};
|
|
92672
|
+
export type GraphStoreSimplifiedUserViewedJiraIssueAnalyticsTestInverseConnection = HasPageInfo & {
|
|
92673
|
+
__typename?: 'GraphStoreSimplifiedUserViewedJiraIssueAnalyticsTestInverseConnection';
|
|
92674
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedJiraIssueAnalyticsTestInverseEdge>>>;
|
|
92675
|
+
pageInfo: PageInfo;
|
|
92676
|
+
};
|
|
92677
|
+
export type GraphStoreSimplifiedUserViewedJiraIssueAnalyticsTestInverseEdge = {
|
|
92678
|
+
__typename?: 'GraphStoreSimplifiedUserViewedJiraIssueAnalyticsTestInverseEdge';
|
|
92679
|
+
createdAt: Scalars['DateTime']['output'];
|
|
92680
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
92681
|
+
id: Scalars['ID']['output'];
|
|
92682
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
92683
|
+
node?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueAnalyticsTestInverseUnion>;
|
|
92684
|
+
};
|
|
92685
|
+
export type GraphStoreSimplifiedUserViewedJiraIssueAnalyticsTestInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
92686
|
+
export type GraphStoreSimplifiedUserViewedJiraIssueAnalyticsTestUnion = JiraIssue;
|
|
92362
92687
|
export type GraphStoreSimplifiedUserViewedJiraIssueConnection = HasPageInfo & {
|
|
92363
92688
|
__typename?: 'GraphStoreSimplifiedUserViewedJiraIssueConnection';
|
|
92364
92689
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedJiraIssueEdge>>>;
|
|
@@ -93890,6 +94215,9 @@ export type GraphStoreUserViewedDocumentSortInput = {
|
|
|
93890
94215
|
export type GraphStoreUserViewedGoalUpdateSortInput = {
|
|
93891
94216
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
93892
94217
|
};
|
|
94218
|
+
export type GraphStoreUserViewedJiraIssueAnalyticsTestSortInput = {
|
|
94219
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
94220
|
+
};
|
|
93893
94221
|
export type GraphStoreUserViewedJiraIssueSortInput = {
|
|
93894
94222
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
93895
94223
|
};
|
|
@@ -118316,6 +118644,12 @@ export type GravityAddReactionPayload = Payload & {
|
|
|
118316
118644
|
errors?: Maybe<Array<MutationError>>;
|
|
118317
118645
|
success: Scalars['Boolean']['output'];
|
|
118318
118646
|
};
|
|
118647
|
+
export type GravityAltaSessionPayload = Payload & {
|
|
118648
|
+
__typename?: 'GravityAltaSessionPayload';
|
|
118649
|
+
errors?: Maybe<Array<MutationError>>;
|
|
118650
|
+
response?: Maybe<Scalars['String']['output']>;
|
|
118651
|
+
success: Scalars['Boolean']['output'];
|
|
118652
|
+
};
|
|
118319
118653
|
export type GravityApplyDraftInput = {
|
|
118320
118654
|
draftId: Scalars['String']['input'];
|
|
118321
118655
|
};
|
|
@@ -118344,6 +118678,20 @@ export type GravityArrangementRow = {
|
|
|
118344
118678
|
export type GravityArrangementRowInput = {
|
|
118345
118679
|
issueIds: Array<Scalars['ID']['input']>;
|
|
118346
118680
|
};
|
|
118681
|
+
export type GravityCanCreateViewFromTemplateEntry = {
|
|
118682
|
+
__typename?: 'GravityCanCreateViewFromTemplateEntry';
|
|
118683
|
+
canCreateView: Scalars['Boolean']['output'];
|
|
118684
|
+
templateId: Scalars['ID']['output'];
|
|
118685
|
+
};
|
|
118686
|
+
export type GravityCanCreateViewFromTemplateInput = {
|
|
118687
|
+
fieldMappings: Array<GravityFieldRefMappingInput>;
|
|
118688
|
+
templateId: Scalars['ID']['input'];
|
|
118689
|
+
};
|
|
118690
|
+
export type GravityCanCreateViewsFromTemplatesResult = GravityCanCreateViewsFromTemplatesSuccess | QueryError;
|
|
118691
|
+
export type GravityCanCreateViewsFromTemplatesSuccess = {
|
|
118692
|
+
__typename?: 'GravityCanCreateViewsFromTemplatesSuccess';
|
|
118693
|
+
templates: Array<GravityCanCreateViewFromTemplateEntry>;
|
|
118694
|
+
};
|
|
118347
118695
|
export type GravityCommentPayload = Payload & {
|
|
118348
118696
|
__typename?: 'GravityCommentPayload';
|
|
118349
118697
|
comment?: Maybe<GravityDraftComment>;
|
|
@@ -118684,6 +119032,10 @@ export declare enum GravitySortOrder {
|
|
|
118684
119032
|
Asc = "ASC",
|
|
118685
119033
|
Desc = "DESC"
|
|
118686
119034
|
}
|
|
119035
|
+
export type GravityStartAltaSessionInput = {
|
|
119036
|
+
agent: Scalars['String']['input'];
|
|
119037
|
+
prompt: Scalars['String']['input'];
|
|
119038
|
+
};
|
|
118687
119039
|
export type GravitySuggestedIdea = {
|
|
118688
119040
|
__typename?: 'GravitySuggestedIdea';
|
|
118689
119041
|
description: Scalars['String']['output'];
|
|
@@ -120311,6 +120663,7 @@ export type HelpCenterCreateTopicPayload = Payload & {
|
|
|
120311
120663
|
};
|
|
120312
120664
|
export type HelpCenterDeleteHubTranslationsInput = {
|
|
120313
120665
|
helpCenterAri: Scalars['ID']['input'];
|
|
120666
|
+
isDraft?: InputMaybe<Scalars['Boolean']['input']>;
|
|
120314
120667
|
locale: Scalars['String']['input'];
|
|
120315
120668
|
parentAri: Scalars['ID']['input'];
|
|
120316
120669
|
};
|
|
@@ -120430,6 +120783,7 @@ export type HelpCenterHubTranslationFieldInput = {
|
|
|
120430
120783
|
export type HelpCenterHubTranslationsInput = {
|
|
120431
120784
|
blocks: Array<HelpCenterHubTranslationBlockInput>;
|
|
120432
120785
|
helpCenterAri: Scalars['ID']['input'];
|
|
120786
|
+
isDraft?: InputMaybe<Scalars['Boolean']['input']>;
|
|
120433
120787
|
locale: Scalars['String']['input'];
|
|
120434
120788
|
parentAri: Scalars['ID']['input'];
|
|
120435
120789
|
};
|
|
@@ -121182,85 +121536,6 @@ export type HelpCentersConfig = {
|
|
|
121182
121536
|
};
|
|
121183
121537
|
export type HelpCentersConfigResult = HelpCentersConfig | QueryError;
|
|
121184
121538
|
export type HelpCentersListQueryResult = HelpCenterQueryResultConnection | QueryError;
|
|
121185
|
-
export type HelpExternalResource = Node & {
|
|
121186
|
-
__typename?: 'HelpExternalResource';
|
|
121187
|
-
containerAti: Scalars['String']['output'];
|
|
121188
|
-
containerId: Scalars['String']['output'];
|
|
121189
|
-
created: Scalars['String']['output'];
|
|
121190
|
-
description: Scalars['String']['output'];
|
|
121191
|
-
id: Scalars['ID']['output'];
|
|
121192
|
-
link: Scalars['String']['output'];
|
|
121193
|
-
resourceType: HelpExternalResourceLinkResourceType;
|
|
121194
|
-
title: Scalars['String']['output'];
|
|
121195
|
-
updated: Scalars['String']['output'];
|
|
121196
|
-
};
|
|
121197
|
-
export type HelpExternalResourceCreateInput = {
|
|
121198
|
-
containerAti: Scalars['String']['input'];
|
|
121199
|
-
containerId: Scalars['String']['input'];
|
|
121200
|
-
description: Scalars['String']['input'];
|
|
121201
|
-
link: Scalars['String']['input'];
|
|
121202
|
-
resourceType: HelpExternalResourceLinkResourceType;
|
|
121203
|
-
title: Scalars['String']['input'];
|
|
121204
|
-
};
|
|
121205
|
-
export type HelpExternalResourceEdge = {
|
|
121206
|
-
__typename?: 'HelpExternalResourceEdge';
|
|
121207
|
-
cursor: Scalars['String']['output'];
|
|
121208
|
-
node?: Maybe<HelpExternalResource>;
|
|
121209
|
-
};
|
|
121210
|
-
export declare enum HelpExternalResourceLinkResourceType {
|
|
121211
|
-
Channel = "CHANNEL",
|
|
121212
|
-
Knowledge = "KNOWLEDGE",
|
|
121213
|
-
RequestForm = "REQUEST_FORM"
|
|
121214
|
-
}
|
|
121215
|
-
export type HelpExternalResourceMutationApi = {
|
|
121216
|
-
__typename?: 'HelpExternalResourceMutationApi';
|
|
121217
|
-
createExternalResource?: Maybe<HelpExternalResourcePayload>;
|
|
121218
|
-
deleteExternalResource?: Maybe<HelpExternalResourcePayload>;
|
|
121219
|
-
updateExternalResource?: Maybe<HelpExternalResourcePayload>;
|
|
121220
|
-
};
|
|
121221
|
-
export type HelpExternalResourceMutationApiCreateExternalResourceArgs = {
|
|
121222
|
-
input: HelpExternalResourceCreateInput;
|
|
121223
|
-
};
|
|
121224
|
-
export type HelpExternalResourceMutationApiDeleteExternalResourceArgs = {
|
|
121225
|
-
id: Scalars['ID']['input'];
|
|
121226
|
-
};
|
|
121227
|
-
export type HelpExternalResourceMutationApiUpdateExternalResourceArgs = {
|
|
121228
|
-
input: HelpExternalResourceUpdateInput;
|
|
121229
|
-
};
|
|
121230
|
-
export type HelpExternalResourcePayload = Payload & {
|
|
121231
|
-
__typename?: 'HelpExternalResourcePayload';
|
|
121232
|
-
errors?: Maybe<Array<MutationError>>;
|
|
121233
|
-
externalResource?: Maybe<HelpExternalResource>;
|
|
121234
|
-
success: Scalars['Boolean']['output'];
|
|
121235
|
-
};
|
|
121236
|
-
export type HelpExternalResourceQueryApi = {
|
|
121237
|
-
__typename?: 'HelpExternalResourceQueryApi';
|
|
121238
|
-
getExternalResources?: Maybe<HelpExternalResourcesResult>;
|
|
121239
|
-
};
|
|
121240
|
-
export type HelpExternalResourceQueryApiGetExternalResourcesArgs = {
|
|
121241
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
121242
|
-
containerAti: Scalars['String']['input'];
|
|
121243
|
-
containerId: Scalars['String']['input'];
|
|
121244
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
121245
|
-
};
|
|
121246
|
-
export type HelpExternalResourceQueryError = {
|
|
121247
|
-
__typename?: 'HelpExternalResourceQueryError';
|
|
121248
|
-
extensions?: Maybe<Array<QueryErrorExtension>>;
|
|
121249
|
-
message?: Maybe<Scalars['String']['output']>;
|
|
121250
|
-
};
|
|
121251
|
-
export type HelpExternalResourceUpdateInput = {
|
|
121252
|
-
description: Scalars['String']['input'];
|
|
121253
|
-
id: Scalars['ID']['input'];
|
|
121254
|
-
link: Scalars['String']['input'];
|
|
121255
|
-
title: Scalars['String']['input'];
|
|
121256
|
-
};
|
|
121257
|
-
export type HelpExternalResources = {
|
|
121258
|
-
__typename?: 'HelpExternalResources';
|
|
121259
|
-
edges: Array<Maybe<HelpExternalResourceEdge>>;
|
|
121260
|
-
pageInfo: PageInfo;
|
|
121261
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
121262
|
-
};
|
|
121263
|
-
export type HelpExternalResourcesResult = HelpExternalResourceQueryError | HelpExternalResources;
|
|
121264
121539
|
export type HelpLayout = Node & {
|
|
121265
121540
|
__typename?: 'HelpLayout';
|
|
121266
121541
|
id: Scalars['ID']['output'];
|
|
@@ -124261,6 +124536,7 @@ export type JiraAgentSessionsField = JiraIssueField & JiraIssueFieldConfiguratio
|
|
|
124261
124536
|
__typename?: 'JiraAgentSessionsField';
|
|
124262
124537
|
agentSessions?: Maybe<JiraAgentSessionConnection>;
|
|
124263
124538
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
124539
|
+
canInvokeAgent?: Maybe<Scalars['Boolean']['output']>;
|
|
124264
124540
|
description?: Maybe<Scalars['String']['output']>;
|
|
124265
124541
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
124266
124542
|
fieldId: Scalars['String']['output'];
|
|
@@ -124288,6 +124564,10 @@ export type JiraAgentSessionsScopeInput = {
|
|
|
124288
124564
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
124289
124565
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
124290
124566
|
};
|
|
124567
|
+
export type JiraAgentSessionsUpdatedNoEnrichmentEvent = {
|
|
124568
|
+
__typename?: 'JiraAgentSessionsUpdatedNoEnrichmentEvent';
|
|
124569
|
+
issueId?: Maybe<Scalars['ID']['output']>;
|
|
124570
|
+
};
|
|
124291
124571
|
export type JiraAgentSpaceInstruction = {
|
|
124292
124572
|
__typename?: 'JiraAgentSpaceInstruction';
|
|
124293
124573
|
agentAri?: Maybe<Scalars['ID']['output']>;
|
|
@@ -126187,6 +126467,7 @@ export type JiraBaseNextActionsEntity = {
|
|
|
126187
126467
|
};
|
|
126188
126468
|
export type JiraBaseTimelineView = {
|
|
126189
126469
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
126470
|
+
childIssuesJql?: Maybe<Scalars['String']['output']>;
|
|
126190
126471
|
conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
|
|
126191
126472
|
error?: Maybe<QueryError>;
|
|
126192
126473
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
@@ -126412,6 +126693,7 @@ export type JiraBoardView = JiraView & Node & {
|
|
|
126412
126693
|
__typename?: 'JiraBoardView';
|
|
126413
126694
|
autoCompleteSprintErrorCount?: Maybe<Scalars['Int']['output']>;
|
|
126414
126695
|
availableTransitionsForIssue?: Maybe<JiraTransitionConnection>;
|
|
126696
|
+
availableTransitionsForIssues?: Maybe<JiraTransitionConnection>;
|
|
126415
126697
|
backlogStatuses?: Maybe<JiraBoardViewStatusConnection>;
|
|
126416
126698
|
board?: Maybe<JiraBoard>;
|
|
126417
126699
|
canArchiveIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -126461,6 +126743,11 @@ export type JiraBoardViewAvailableTransitionsForIssueArgs = {
|
|
|
126461
126743
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
126462
126744
|
issueId: Scalars['ID']['input'];
|
|
126463
126745
|
};
|
|
126746
|
+
export type JiraBoardViewAvailableTransitionsForIssuesArgs = {
|
|
126747
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
126748
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
126749
|
+
issueIds: Array<Scalars['ID']['input']>;
|
|
126750
|
+
};
|
|
126464
126751
|
export type JiraBoardViewBacklogStatusesArgs = {
|
|
126465
126752
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
126466
126753
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -127139,43 +127426,42 @@ export type JiraBulkMergeValidationResponse = {
|
|
|
127139
127426
|
success: Scalars['Boolean']['output'];
|
|
127140
127427
|
};
|
|
127141
127428
|
export type JiraBulkMergeValidationResult = JiraBulkMergeValidationResponse | QueryError;
|
|
127142
|
-
export type
|
|
127429
|
+
export type JiraBulkMoveClassificationInput = {
|
|
127143
127430
|
sourceClassificationIds: Array<Scalars['ID']['input']>;
|
|
127144
127431
|
targetClassificationId: Scalars['ID']['input'];
|
|
127145
127432
|
};
|
|
127146
|
-
export type JiraBulkMoveClassificationMappingInput = {
|
|
127147
|
-
classifications: Array<JiraBulkMoveClassificationEntryInput>;
|
|
127148
|
-
sourceIssueTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
127149
|
-
sourceProjectId?: InputMaybe<Scalars['ID']['input']>;
|
|
127150
|
-
};
|
|
127151
127433
|
export type JiraBulkMoveInput = {
|
|
127152
127434
|
inferClassificationDefaults: Scalars['Boolean']['input'];
|
|
127153
127435
|
inferFieldDefaults: Scalars['Boolean']['input'];
|
|
127154
127436
|
inferStatusDefaults: Scalars['Boolean']['input'];
|
|
127155
|
-
|
|
127437
|
+
inferSubtaskTypeDefaults: Scalars['Boolean']['input'];
|
|
127156
127438
|
inputId: Scalars['String']['input'];
|
|
127157
127439
|
selectedIssueIds: Array<Scalars['ID']['input']>;
|
|
127158
|
-
|
|
127440
|
+
targetClassifications?: InputMaybe<Array<JiraBulkMoveClassificationInput>>;
|
|
127159
127441
|
targetIssueTypeId: Scalars['ID']['input'];
|
|
127160
|
-
targetMandatoryFields?: InputMaybe<Array<
|
|
127442
|
+
targetMandatoryFields?: InputMaybe<Array<JiraBulkMoveMandatoryFieldInput>>;
|
|
127161
127443
|
targetParentIssueId?: InputMaybe<Scalars['ID']['input']>;
|
|
127162
127444
|
targetProjectId: Scalars['ID']['input'];
|
|
127163
|
-
|
|
127445
|
+
targetStatuses?: InputMaybe<Array<JiraBulkMoveStatusInput>>;
|
|
127164
127446
|
};
|
|
127165
|
-
export type
|
|
127166
|
-
|
|
127167
|
-
|
|
127168
|
-
|
|
127447
|
+
export type JiraBulkMoveMandatoryFieldInput = {
|
|
127448
|
+
fieldId: Scalars['ID']['input'];
|
|
127449
|
+
value: JiraBulkMoveMandatoryFieldValueInput;
|
|
127450
|
+
};
|
|
127451
|
+
export type JiraBulkMoveMandatoryFieldValueInput = {
|
|
127452
|
+
adfValue?: InputMaybe<Scalars['String']['input']>;
|
|
127453
|
+
rawValues?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
127454
|
+
retain?: InputMaybe<Scalars['Boolean']['input']>;
|
|
127455
|
+
type: JiraBulkMoveMandatoryFieldValueType;
|
|
127169
127456
|
};
|
|
127170
|
-
export
|
|
127457
|
+
export declare enum JiraBulkMoveMandatoryFieldValueType {
|
|
127458
|
+
Adf = "ADF",
|
|
127459
|
+
Raw = "RAW"
|
|
127460
|
+
}
|
|
127461
|
+
export type JiraBulkMoveStatusInput = {
|
|
127171
127462
|
sourceStatusIds: Array<Scalars['ID']['input']>;
|
|
127172
127463
|
targetStatusId: Scalars['ID']['input'];
|
|
127173
127464
|
};
|
|
127174
|
-
export type JiraBulkMoveStatusMappingInput = {
|
|
127175
|
-
sourceIssueTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
127176
|
-
sourceProjectId?: InputMaybe<Scalars['ID']['input']>;
|
|
127177
|
-
statuses: Array<JiraBulkMoveStatusEntryInput>;
|
|
127178
|
-
};
|
|
127179
127465
|
export type JiraBulkOperationInput = {
|
|
127180
127466
|
bulkDeleteInput?: InputMaybe<JiraBulkDeleteInput>;
|
|
127181
127467
|
bulkEditInput?: InputMaybe<JiraBulkEditInput>;
|
|
@@ -128469,6 +128755,7 @@ export declare enum JiraCollapsibleSection {
|
|
|
128469
128755
|
Activity = "ACTIVITY",
|
|
128470
128756
|
AiPanelServicedesk = "AI_PANEL_SERVICEDESK",
|
|
128471
128757
|
Attachments = "ATTACHMENTS",
|
|
128758
|
+
CaseNotesServicedesk = "CASE_NOTES_SERVICEDESK",
|
|
128472
128759
|
ChildWorkItem = "CHILD_WORK_ITEM",
|
|
128473
128760
|
Description = "DESCRIPTION",
|
|
128474
128761
|
IncidentSuggestedResourcesServicedesk = "INCIDENT_SUGGESTED_RESOURCES_SERVICEDESK",
|
|
@@ -128626,6 +128913,14 @@ export type JiraComponentFieldOperationInput = {
|
|
|
128626
128913
|
ids: Array<Scalars['ID']['input']>;
|
|
128627
128914
|
operation: JiraMultiValueFieldOperations;
|
|
128628
128915
|
};
|
|
128916
|
+
export type JiraComponentIdsFilterInput = {
|
|
128917
|
+
ids: Array<Scalars['ID']['input']>;
|
|
128918
|
+
operation: JiraComponentIdsFilterOperation;
|
|
128919
|
+
};
|
|
128920
|
+
export declare enum JiraComponentIdsFilterOperation {
|
|
128921
|
+
Allow = "ALLOW",
|
|
128922
|
+
Exclude = "EXCLUDE"
|
|
128923
|
+
}
|
|
128629
128924
|
export type JiraComponentInput = {
|
|
128630
128925
|
componentId: Scalars['ID']['input'];
|
|
128631
128926
|
};
|
|
@@ -130793,9 +131088,14 @@ export type JiraEditFieldSchemeInput = {
|
|
|
130793
131088
|
name: Scalars['String']['input'];
|
|
130794
131089
|
schemeId: Scalars['ID']['input'];
|
|
130795
131090
|
};
|
|
131091
|
+
export declare enum JiraEligibleProjectTemplateUsageFilter {
|
|
131092
|
+
RegularProjectsOnly = "REGULAR_PROJECTS_ONLY",
|
|
131093
|
+
TemplateBaseProjectsOnly = "TEMPLATE_BASE_PROJECTS_ONLY"
|
|
131094
|
+
}
|
|
130796
131095
|
export type JiraEligibleProjectsFilter = {
|
|
130797
131096
|
projectCategoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
130798
131097
|
projectCategoryIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
131098
|
+
projectTemplateUsage?: InputMaybe<JiraEligibleProjectTemplateUsageFilter>;
|
|
130799
131099
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
130800
131100
|
};
|
|
130801
131101
|
export declare enum JiraEmailMimeType {
|
|
@@ -131883,6 +132183,25 @@ export type JiraFlatOptionEdge = {
|
|
|
131883
132183
|
cursor: Scalars['String']['output'];
|
|
131884
132184
|
node?: Maybe<JiraFlatOption>;
|
|
131885
132185
|
};
|
|
132186
|
+
export type JiraForYouAgentReadinessProfile = {
|
|
132187
|
+
__typename?: 'JiraForYouAgentReadinessProfile';
|
|
132188
|
+
definitionVersion?: Maybe<Scalars['Int']['output']>;
|
|
132189
|
+
emptyDescriptionCount?: Maybe<Scalars['Int']['output']>;
|
|
132190
|
+
has3PCodingAgent?: Maybe<Scalars['Boolean']['output']>;
|
|
132191
|
+
hasJiraCodingAgent?: Maybe<Scalars['Boolean']['output']>;
|
|
132192
|
+
otherCandidateCount?: Maybe<Scalars['Int']['output']>;
|
|
132193
|
+
readinessByBar?: Maybe<Array<JiraForYouReadinessAtBar>>;
|
|
132194
|
+
sampledSoftwareCandidateCount?: Maybe<Scalars['Int']['output']>;
|
|
132195
|
+
serviceDeskCandidateCount?: Maybe<Scalars['Int']['output']>;
|
|
132196
|
+
softwareCandidateCount?: Maybe<Scalars['Int']['output']>;
|
|
132197
|
+
workManagementCandidateCount?: Maybe<Scalars['Int']['output']>;
|
|
132198
|
+
};
|
|
132199
|
+
export type JiraForYouReadinessAtBar = {
|
|
132200
|
+
__typename?: 'JiraForYouReadinessAtBar';
|
|
132201
|
+
codingReadyCount?: Maybe<Scalars['Int']['output']>;
|
|
132202
|
+
planningNeededCount?: Maybe<Scalars['Int']['output']>;
|
|
132203
|
+
wordBar?: Maybe<Scalars['Int']['output']>;
|
|
132204
|
+
};
|
|
131886
132205
|
export type JiraForgeAppEgressDeclaration = {
|
|
131887
132206
|
__typename?: 'JiraForgeAppEgressDeclaration';
|
|
131888
132207
|
addresses?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -132921,6 +133240,7 @@ export type JiraGroupedListViewViewSettingsArgs = {
|
|
|
132921
133240
|
export type JiraGroupedTimelineView = JiraBaseTimelineView & JiraFieldSetsViewMetadata & JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
132922
133241
|
__typename?: 'JiraGroupedTimelineView';
|
|
132923
133242
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
133243
|
+
childIssuesJql?: Maybe<Scalars['String']['output']>;
|
|
132924
133244
|
conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
|
|
132925
133245
|
defaultJql?: Maybe<Scalars['String']['output']>;
|
|
132926
133246
|
error?: Maybe<QueryError>;
|
|
@@ -133150,6 +133470,7 @@ export type JiraIccActivityValue = {
|
|
|
133150
133470
|
groupName?: Maybe<Scalars['String']['output']>;
|
|
133151
133471
|
hypothesisCount?: Maybe<Scalars['String']['output']>;
|
|
133152
133472
|
incidentName?: Maybe<Scalars['String']['output']>;
|
|
133473
|
+
mitigationVersion?: Maybe<Scalars['String']['output']>;
|
|
133153
133474
|
planName?: Maybe<Scalars['String']['output']>;
|
|
133154
133475
|
status?: Maybe<Scalars['String']['output']>;
|
|
133155
133476
|
statusPageIncidentId?: Maybe<Scalars['String']['output']>;
|
|
@@ -133472,6 +133793,7 @@ export type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScenarioIssu
|
|
|
133472
133793
|
mercuryProjectStatus?: Maybe<MercuryProjectStatus>;
|
|
133473
133794
|
mercuryProjectType?: Maybe<MercuryProjectType>;
|
|
133474
133795
|
mercuryProjectUrl?: Maybe<Scalars['URL']['output']>;
|
|
133796
|
+
mercuryStartDate?: Maybe<Scalars['DateTime']['output']>;
|
|
133475
133797
|
mercuryTargetDate?: Maybe<Scalars['String']['output']>;
|
|
133476
133798
|
mercuryTargetDateEnd?: Maybe<Scalars['DateTime']['output']>;
|
|
133477
133799
|
mercuryTargetDateStart?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -134261,6 +134583,10 @@ export type JiraIssueCreateAdditionalServicesServicesArgs = {
|
|
|
134261
134583
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
134262
134584
|
};
|
|
134263
134585
|
export type JiraIssueCreateAdditionalServicesResult = JiraIssueCreateAdditionalServices | QueryError;
|
|
134586
|
+
export type JiraIssueCreateContextInput = {
|
|
134587
|
+
jqls?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
134588
|
+
linkedIssue?: InputMaybe<JiraLinkedIssueCreateInput>;
|
|
134589
|
+
};
|
|
134264
134590
|
export type JiraIssueCreateFieldValidationRule = {
|
|
134265
134591
|
errorMessage?: InputMaybe<Scalars['String']['input']>;
|
|
134266
134592
|
fields: Array<Scalars['String']['input']>;
|
|
@@ -134335,6 +134661,10 @@ export type JiraIssueCreateServiceEdge = {
|
|
|
134335
134661
|
cursor: Scalars['String']['output'];
|
|
134336
134662
|
node?: Maybe<JiraIssueCreateService>;
|
|
134337
134663
|
};
|
|
134664
|
+
export declare enum JiraIssueCreateTypeFilter {
|
|
134665
|
+
LinkedIssueCreate = "LINKED_ISSUE_CREATE",
|
|
134666
|
+
Standard = "STANDARD"
|
|
134667
|
+
}
|
|
134338
134668
|
export type JiraIssueCreateValidationRule = {
|
|
134339
134669
|
fieldValidations?: InputMaybe<Array<JiraIssueCreateFieldValidationRule>>;
|
|
134340
134670
|
};
|
|
@@ -137668,6 +137998,11 @@ export type JiraLinkedIssueConnectionPageCursorsArgs = {
|
|
|
137668
137998
|
maxCursors: Scalars['Int']['input'];
|
|
137669
137999
|
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
137670
138000
|
};
|
|
138001
|
+
export type JiraLinkedIssueCreateInput = {
|
|
138002
|
+
includeAttachments?: InputMaybe<Scalars['Boolean']['input']>;
|
|
138003
|
+
includeLinks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
138004
|
+
sourceIssueId: Scalars['ID']['input'];
|
|
138005
|
+
};
|
|
137671
138006
|
export type JiraLinkedIssuesInput = {
|
|
137672
138007
|
inwardIssues?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
137673
138008
|
outwardIssues?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -141235,6 +141570,12 @@ export type JiraPolicyRulesByDomainInput = {
|
|
|
141235
141570
|
domain: Scalars['String']['input'];
|
|
141236
141571
|
rules: Array<JiraPolicyRuleInput>;
|
|
141237
141572
|
};
|
|
141573
|
+
export type JiraPolicyViolatingProjectsConnection = HasPageInfo & {
|
|
141574
|
+
__typename?: 'JiraPolicyViolatingProjectsConnection';
|
|
141575
|
+
edges?: Maybe<Array<Maybe<JiraProjectPolicyAssociationEdge>>>;
|
|
141576
|
+
nodes?: Maybe<Array<Maybe<JiraProjectPolicyAssociation>>>;
|
|
141577
|
+
pageInfo: PageInfo;
|
|
141578
|
+
};
|
|
141238
141579
|
export type JiraPostIncidentReviewLink = Node & {
|
|
141239
141580
|
__typename?: 'JiraPostIncidentReviewLink';
|
|
141240
141581
|
id: Scalars['ID']['output'];
|
|
@@ -141469,6 +141810,7 @@ export type JiraProject = Node & {
|
|
|
141469
141810
|
linkedOperationsIncidentsByProject?: Maybe<GraphStoreSimplifiedJswProjectAssociatedIncidentConnection>;
|
|
141470
141811
|
linkedSecurityContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
141471
141812
|
linkedSecurityVulnerabilitiesByProject?: Maybe<GraphJiraVulnerabilityConnection>;
|
|
141813
|
+
manageWorkflowUrl?: Maybe<Scalars['String']['output']>;
|
|
141472
141814
|
mostRecentlyViewedBoard?: Maybe<JiraBoardResult>;
|
|
141473
141815
|
name: Scalars['String']['output'];
|
|
141474
141816
|
navigationItems?: Maybe<JiraNavigationItemConnection>;
|
|
@@ -141566,6 +141908,7 @@ export type JiraProjectCapabilitiesArgs = {
|
|
|
141566
141908
|
export type JiraProjectComponentsArgs = {
|
|
141567
141909
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
141568
141910
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
141911
|
+
filterById?: InputMaybe<JiraComponentIdsFilterInput>;
|
|
141569
141912
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
141570
141913
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
141571
141914
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -142227,10 +142570,12 @@ export type JiraProjectPolicy = Node & {
|
|
|
142227
142570
|
associatedProjects?: Maybe<JiraProjectPolicyAssociationConnection>;
|
|
142228
142571
|
description?: Maybe<Scalars['String']['output']>;
|
|
142229
142572
|
eligibleProjects?: Maybe<JiraProjectConnection>;
|
|
142573
|
+
hasViolation?: Maybe<Scalars['Boolean']['output']>;
|
|
142230
142574
|
id: Scalars['ID']['output'];
|
|
142231
142575
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
142232
142576
|
name?: Maybe<Scalars['String']['output']>;
|
|
142233
142577
|
rules?: Maybe<JiraProjectPolicyRuleConnection>;
|
|
142578
|
+
violatingProjects?: Maybe<JiraPolicyViolatingProjectsConnection>;
|
|
142234
142579
|
};
|
|
142235
142580
|
export type JiraProjectPolicyAssociatedProjectsArgs = {
|
|
142236
142581
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -142248,6 +142593,11 @@ export type JiraProjectPolicyRulesArgs = {
|
|
|
142248
142593
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
142249
142594
|
ruleTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
142250
142595
|
};
|
|
142596
|
+
export type JiraProjectPolicyViolatingProjectsArgs = {
|
|
142597
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
142598
|
+
filter?: InputMaybe<JiraProjectPolicyProjectFilter>;
|
|
142599
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
142600
|
+
};
|
|
142251
142601
|
export type JiraProjectPolicyAssociation = {
|
|
142252
142602
|
__typename?: 'JiraProjectPolicyAssociation';
|
|
142253
142603
|
complianceState?: Maybe<JiraProjectPolicyComplianceState>;
|
|
@@ -142779,6 +143129,7 @@ export type JiraQuery = {
|
|
|
142779
143129
|
filter?: Maybe<JiraFilter>;
|
|
142780
143130
|
filters?: Maybe<Array<Maybe<JiraFilter>>>;
|
|
142781
143131
|
fixFormulaFieldExpression?: Maybe<JiraFormulaFieldSuggestedExpressionResult>;
|
|
143132
|
+
forYou_agentReadinessProfile?: Maybe<JiraForYouAgentReadinessProfile>;
|
|
142782
143133
|
forYou_recommendedActions?: Maybe<JiraRecommendedActionCategoryConnection>;
|
|
142783
143134
|
forge: JiraForgeQuery;
|
|
142784
143135
|
formattingRulesByProject?: Maybe<JiraFormattingRuleConnection>;
|
|
@@ -143012,7 +143363,7 @@ export type JiraQueryAgentSessionsByScopeArgs = {
|
|
|
143012
143363
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
143013
143364
|
cloudId: Scalars['ID']['input'];
|
|
143014
143365
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
143015
|
-
isDeleted
|
|
143366
|
+
isDeleted?: InputMaybe<Scalars['Boolean']['input']>;
|
|
143016
143367
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
143017
143368
|
scope: JiraAgentSessionsScopeInput;
|
|
143018
143369
|
state?: InputMaybe<JiraAgentSessionStateCategory>;
|
|
@@ -143349,6 +143700,9 @@ export type JiraQueryFixFormulaFieldExpressionArgs = {
|
|
|
143349
143700
|
cloudId: Scalars['ID']['input'];
|
|
143350
143701
|
suggestionContext: JiraFormulaFieldFixContext;
|
|
143351
143702
|
};
|
|
143703
|
+
export type JiraQueryForYou_AgentReadinessProfileArgs = {
|
|
143704
|
+
cloudId: Scalars['ID']['input'];
|
|
143705
|
+
};
|
|
143352
143706
|
export type JiraQueryForYou_RecommendedActionsArgs = {
|
|
143353
143707
|
cloudId: Scalars['ID']['input'];
|
|
143354
143708
|
};
|
|
@@ -144478,11 +144832,13 @@ export type JiraRecentItemsFilter = {
|
|
|
144478
144832
|
types?: InputMaybe<Array<JiraSearchableEntityType>>;
|
|
144479
144833
|
};
|
|
144480
144834
|
export declare enum JiraRecommendationCategory {
|
|
144835
|
+
Component = "COMPONENT",
|
|
144481
144836
|
CustomField = "CUSTOM_FIELD",
|
|
144482
144837
|
IssueArchival = "ISSUE_ARCHIVAL",
|
|
144483
144838
|
PermissionGrantScheme = "PERMISSION_GRANT_SCHEME",
|
|
144484
144839
|
ProjectCleanup = "PROJECT_CLEANUP",
|
|
144485
144840
|
ProjectRoleActor = "PROJECT_ROLE_ACTOR",
|
|
144841
|
+
Release = "RELEASE",
|
|
144486
144842
|
WorkflowScheme = "WORKFLOW_SCHEME",
|
|
144487
144843
|
WorkflowStatus = "WORKFLOW_STATUS"
|
|
144488
144844
|
}
|
|
@@ -149448,6 +149804,7 @@ export type JiraSubscription = {
|
|
|
149448
149804
|
onAiAgentSessionCreateByProjects?: Maybe<JiraAgentSessionCreateEvent>;
|
|
149449
149805
|
onAiAgentSessionCreateV2?: Maybe<JiraAgentSessionCreateEvent>;
|
|
149450
149806
|
onAiAgentSessionCreateV3?: Maybe<JiraAgentSessionCreateEvent>;
|
|
149807
|
+
onAiAgentSessionsUpdatedByScopeNoEnrichment?: Maybe<JiraAgentSessionsUpdatedNoEnrichmentEvent>;
|
|
149451
149808
|
onAttachmentCreatedByProjects?: Maybe<JiraPlatformAttachment>;
|
|
149452
149809
|
onAttachmentCreatedByProjectsV2?: Maybe<JiraAttachmentByAriResult>;
|
|
149453
149810
|
onAttachmentDeletedByProjects?: Maybe<JiraAttachmentDeletedStreamHubPayload>;
|
|
@@ -149505,6 +149862,10 @@ export type JiraSubscriptionOnAiAgentSessionCreateV3Args = {
|
|
|
149505
149862
|
cloudId: Scalars['ID']['input'];
|
|
149506
149863
|
issueId: Scalars['String']['input'];
|
|
149507
149864
|
};
|
|
149865
|
+
export type JiraSubscriptionOnAiAgentSessionsUpdatedByScopeNoEnrichmentArgs = {
|
|
149866
|
+
cloudId: Scalars['ID']['input'];
|
|
149867
|
+
scope?: InputMaybe<JiraAgentSessionsScopeInput>;
|
|
149868
|
+
};
|
|
149508
149869
|
export type JiraSubscriptionOnAttachmentCreatedByProjectsArgs = {
|
|
149509
149870
|
cloudId: Scalars['ID']['input'];
|
|
149510
149871
|
projectIds: Array<Scalars['String']['input']>;
|
|
@@ -149796,6 +150157,7 @@ export type JiraTabLayout = {
|
|
|
149796
150157
|
id: Scalars['ID']['output'];
|
|
149797
150158
|
items: Array<JiraFieldLayoutItem>;
|
|
149798
150159
|
name: Scalars['String']['output'];
|
|
150160
|
+
rankedItems?: Maybe<Array<Maybe<JiraFieldLayoutItem>>>;
|
|
149799
150161
|
tabId?: Maybe<Scalars['String']['output']>;
|
|
149800
150162
|
};
|
|
149801
150163
|
export type JiraTeam = Node & {
|
|
@@ -150110,6 +150472,7 @@ export type JiraTimelineStaticViewInput = {
|
|
|
150110
150472
|
export type JiraTimelineView = JiraBaseTimelineView & JiraFieldSetsViewMetadata & JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
150111
150473
|
__typename?: 'JiraTimelineView';
|
|
150112
150474
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
150475
|
+
childIssuesJql?: Maybe<Scalars['String']['output']>;
|
|
150113
150476
|
conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
|
|
150114
150477
|
error?: Maybe<QueryError>;
|
|
150115
150478
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
@@ -150333,6 +150696,7 @@ export type JiraTransitionAgent = {
|
|
|
150333
150696
|
export type JiraTransitionAgentRule = {
|
|
150334
150697
|
__typename?: 'JiraTransitionAgentRule';
|
|
150335
150698
|
agent: JiraTransitionAgent;
|
|
150699
|
+
conditionExpression?: Maybe<Scalars['String']['output']>;
|
|
150336
150700
|
promptValue?: Maybe<Scalars['String']['output']>;
|
|
150337
150701
|
ruleId?: Maybe<Scalars['ID']['output']>;
|
|
150338
150702
|
};
|
|
@@ -154582,6 +154946,7 @@ export type JsmChannelsServiceAgentResolutionPlan = {
|
|
|
154582
154946
|
__typename?: 'JsmChannelsServiceAgentResolutionPlan';
|
|
154583
154947
|
contentSources?: Maybe<Array<Maybe<JsmChannelsServiceAgentResolutionContentSource>>>;
|
|
154584
154948
|
customPlanNodeAttributes?: Maybe<Array<JsmChannelsCustomPlanNodeAttribute>>;
|
|
154949
|
+
generatedFromSimilarPlans?: Maybe<Scalars['Boolean']['output']>;
|
|
154585
154950
|
isRetriable: Scalars['Boolean']['output'];
|
|
154586
154951
|
planId?: Maybe<Scalars['ID']['output']>;
|
|
154587
154952
|
runbooks?: Maybe<Array<Maybe<JsmChannelsServiceAgentResolutionRunbook>>>;
|
|
@@ -155867,6 +156232,56 @@ export type JsmTelemetryIncidentResponderField = {
|
|
|
155867
156232
|
fieldId?: Maybe<Scalars['String']['output']>;
|
|
155868
156233
|
value: Array<JsmTelemetryIncidentResponder>;
|
|
155869
156234
|
};
|
|
156235
|
+
export type JsmTelemetryIncidentServiceMetricDiscoveryAllInput = {
|
|
156236
|
+
limitPerService?: InputMaybe<Scalars['Int']['input']>;
|
|
156237
|
+
maxServices?: InputMaybe<Scalars['Int']['input']>;
|
|
156238
|
+
};
|
|
156239
|
+
export type JsmTelemetryIncidentServiceMetricDiscoveryAllResponse = {
|
|
156240
|
+
__typename?: 'JsmTelemetryIncidentServiceMetricDiscoveryAllResponse';
|
|
156241
|
+
discoveries: Array<JsmTelemetryIncidentServiceMetricDiscoveryResponse>;
|
|
156242
|
+
};
|
|
156243
|
+
export type JsmTelemetryIncidentServiceMetricDiscoveryAllResult = {
|
|
156244
|
+
__typename?: 'JsmTelemetryIncidentServiceMetricDiscoveryAllResult';
|
|
156245
|
+
data?: Maybe<JsmTelemetryIncidentServiceMetricDiscoveryAllResponse>;
|
|
156246
|
+
error?: Maybe<JsmTelemetryDomainError>;
|
|
156247
|
+
};
|
|
156248
|
+
export type JsmTelemetryIncidentServiceMetricDiscoveryInput = {
|
|
156249
|
+
limitPerService?: InputMaybe<Scalars['Int']['input']>;
|
|
156250
|
+
maxServices?: InputMaybe<Scalars['Int']['input']>;
|
|
156251
|
+
provider: JsmTelemetryProviderType;
|
|
156252
|
+
};
|
|
156253
|
+
export type JsmTelemetryIncidentServiceMetricDiscoveryResponse = {
|
|
156254
|
+
__typename?: 'JsmTelemetryIncidentServiceMetricDiscoveryResponse';
|
|
156255
|
+
incidentId: Scalars['ID']['output'];
|
|
156256
|
+
provider: JsmTelemetryProviderType;
|
|
156257
|
+
services: Array<JsmTelemetryIncidentServiceMetricDiscoveryService>;
|
|
156258
|
+
};
|
|
156259
|
+
export type JsmTelemetryIncidentServiceMetricDiscoveryResult = {
|
|
156260
|
+
__typename?: 'JsmTelemetryIncidentServiceMetricDiscoveryResult';
|
|
156261
|
+
data?: Maybe<JsmTelemetryIncidentServiceMetricDiscoveryResponse>;
|
|
156262
|
+
error?: Maybe<JsmTelemetryDomainError>;
|
|
156263
|
+
};
|
|
156264
|
+
export type JsmTelemetryIncidentServiceMetricDiscoverySaveInput = {
|
|
156265
|
+
limitPerService?: InputMaybe<Scalars['Int']['input']>;
|
|
156266
|
+
maxServices?: InputMaybe<Scalars['Int']['input']>;
|
|
156267
|
+
};
|
|
156268
|
+
export type JsmTelemetryIncidentServiceMetricDiscoverySaveResponse = {
|
|
156269
|
+
__typename?: 'JsmTelemetryIncidentServiceMetricDiscoverySaveResponse';
|
|
156270
|
+
discoveries: Array<JsmTelemetryIncidentServiceMetricDiscoveryResponse>;
|
|
156271
|
+
savedCharts: Array<JsmTelemetryChart>;
|
|
156272
|
+
skippedMetrics: Array<JsmTelemetrySkippedDiscoveredMetric>;
|
|
156273
|
+
};
|
|
156274
|
+
export type JsmTelemetryIncidentServiceMetricDiscoverySaveResult = {
|
|
156275
|
+
__typename?: 'JsmTelemetryIncidentServiceMetricDiscoverySaveResult';
|
|
156276
|
+
data?: Maybe<JsmTelemetryIncidentServiceMetricDiscoverySaveResponse>;
|
|
156277
|
+
error?: Maybe<JsmTelemetryDomainError>;
|
|
156278
|
+
};
|
|
156279
|
+
export type JsmTelemetryIncidentServiceMetricDiscoveryService = {
|
|
156280
|
+
__typename?: 'JsmTelemetryIncidentServiceMetricDiscoveryService';
|
|
156281
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
156282
|
+
metrics: Array<JsmTelemetryMetricListing>;
|
|
156283
|
+
name: Scalars['String']['output'];
|
|
156284
|
+
};
|
|
155870
156285
|
export type JsmTelemetryIncidentStatus = {
|
|
155871
156286
|
__typename?: 'JsmTelemetryIncidentStatus';
|
|
155872
156287
|
id?: Maybe<Scalars['String']['output']>;
|
|
@@ -156216,6 +156631,13 @@ export type JsmTelemetryServiceInfo = {
|
|
|
156216
156631
|
apiStatus: Scalars['String']['output'];
|
|
156217
156632
|
serviceName: Scalars['String']['output'];
|
|
156218
156633
|
};
|
|
156634
|
+
export type JsmTelemetrySkippedDiscoveredMetric = {
|
|
156635
|
+
__typename?: 'JsmTelemetrySkippedDiscoveredMetric';
|
|
156636
|
+
metricName: Scalars['String']['output'];
|
|
156637
|
+
reason: Scalars['String']['output'];
|
|
156638
|
+
serviceId?: Maybe<Scalars['ID']['output']>;
|
|
156639
|
+
serviceName: Scalars['String']['output'];
|
|
156640
|
+
};
|
|
156219
156641
|
export declare enum JsmTelemetrySource {
|
|
156220
156642
|
AiRecommended = "AI_RECOMMENDED",
|
|
156221
156643
|
Hypothesis = "HYPOTHESIS",
|
|
@@ -156692,10 +157114,70 @@ export type KitsuneCreateConnectorConfigPayload = Payload & {
|
|
|
156692
157114
|
errors?: Maybe<Array<MutationError>>;
|
|
156693
157115
|
success: Scalars['Boolean']['output'];
|
|
156694
157116
|
};
|
|
157117
|
+
export type KitsuneCreateFieldInput = {
|
|
157118
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
157119
|
+
entityTypes: Array<KitsuneEntityType>;
|
|
157120
|
+
name: Scalars['String']['input'];
|
|
157121
|
+
options?: InputMaybe<Array<KitsuneCreateFieldOptionInput>>;
|
|
157122
|
+
valueType: KitsuneFieldValueType;
|
|
157123
|
+
workspaceAri: Scalars['ID']['input'];
|
|
157124
|
+
};
|
|
156695
157125
|
export type KitsuneCreateFieldOptionInput = {
|
|
156696
157126
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
156697
157127
|
name: Scalars['String']['input'];
|
|
156698
157128
|
};
|
|
157129
|
+
export type KitsuneCreateFieldPayload = Payload & {
|
|
157130
|
+
__typename?: 'KitsuneCreateFieldPayload';
|
|
157131
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157132
|
+
field?: Maybe<KitsuneField>;
|
|
157133
|
+
success: Scalars['Boolean']['output'];
|
|
157134
|
+
};
|
|
157135
|
+
export type KitsuneCreateInsightInput = {
|
|
157136
|
+
content?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
157137
|
+
externalAri?: InputMaybe<Scalars['ID']['input']>;
|
|
157138
|
+
ideaAris?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
157139
|
+
snippets?: InputMaybe<Array<InputMaybe<KitsuneCreateInsightSnippetInput>>>;
|
|
157140
|
+
spaceAri: Scalars['ID']['input'];
|
|
157141
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
157142
|
+
};
|
|
157143
|
+
export type KitsuneCreateInsightPayload = Payload & {
|
|
157144
|
+
__typename?: 'KitsuneCreateInsightPayload';
|
|
157145
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157146
|
+
insight?: Maybe<KitsuneInsight>;
|
|
157147
|
+
success: Scalars['Boolean']['output'];
|
|
157148
|
+
};
|
|
157149
|
+
export type KitsuneCreateInsightSnippetInput = {
|
|
157150
|
+
content: Array<Scalars['String']['input']>;
|
|
157151
|
+
feedbackAri: Scalars['ID']['input'];
|
|
157152
|
+
};
|
|
157153
|
+
export type KitsuneCreateSectionInput = {
|
|
157154
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
157155
|
+
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
157156
|
+
name: Scalars['String']['input'];
|
|
157157
|
+
spaceAri: Scalars['ID']['input'];
|
|
157158
|
+
};
|
|
157159
|
+
export type KitsuneCreateSnippetInput = {
|
|
157160
|
+
content: Array<Scalars['String']['input']>;
|
|
157161
|
+
feedbackAri: Scalars['ID']['input'];
|
|
157162
|
+
insightAri: Scalars['ID']['input'];
|
|
157163
|
+
markId?: InputMaybe<Scalars['ID']['input']>;
|
|
157164
|
+
};
|
|
157165
|
+
export type KitsuneCreateSnippetPayload = Payload & {
|
|
157166
|
+
__typename?: 'KitsuneCreateSnippetPayload';
|
|
157167
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157168
|
+
snippet?: Maybe<KitsuneSnippet>;
|
|
157169
|
+
success: Scalars['Boolean']['output'];
|
|
157170
|
+
};
|
|
157171
|
+
export type KitsuneCreateViewInput = {
|
|
157172
|
+
config?: InputMaybe<KitsuneViewConfigInput>;
|
|
157173
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
157174
|
+
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
157175
|
+
entityType?: InputMaybe<KitsuneEntityType>;
|
|
157176
|
+
name: Scalars['String']['input'];
|
|
157177
|
+
parentAri?: InputMaybe<Scalars['ID']['input']>;
|
|
157178
|
+
spaceAri: Scalars['ID']['input'];
|
|
157179
|
+
type: KitsuneViewType;
|
|
157180
|
+
};
|
|
156699
157181
|
export type KitsuneCustomer = {
|
|
156700
157182
|
__typename?: 'KitsuneCustomer';
|
|
156701
157183
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -156752,6 +157234,24 @@ export type KitsuneDateValue = {
|
|
|
156752
157234
|
_id: Scalars['ID']['output'];
|
|
156753
157235
|
value: Scalars['Date']['output'];
|
|
156754
157236
|
};
|
|
157237
|
+
export type KitsuneDeleteSectionPayload = Payload & {
|
|
157238
|
+
__typename?: 'KitsuneDeleteSectionPayload';
|
|
157239
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157240
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
157241
|
+
success: Scalars['Boolean']['output'];
|
|
157242
|
+
};
|
|
157243
|
+
export type KitsuneDeleteViewPayload = Payload & {
|
|
157244
|
+
__typename?: 'KitsuneDeleteViewPayload';
|
|
157245
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157246
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
157247
|
+
success: Scalars['Boolean']['output'];
|
|
157248
|
+
};
|
|
157249
|
+
export type KitsuneDeletedPayload = Payload & {
|
|
157250
|
+
__typename?: 'KitsuneDeletedPayload';
|
|
157251
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157252
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
157253
|
+
success: Scalars['Boolean']['output'];
|
|
157254
|
+
};
|
|
156755
157255
|
export type KitsuneDeletedRecord = {
|
|
156756
157256
|
__typename?: 'KitsuneDeletedRecord';
|
|
156757
157257
|
id: Scalars['ID']['output'];
|
|
@@ -156955,6 +157455,15 @@ export type KitsuneFilterValueInput = {
|
|
|
156955
157455
|
valueNumber?: InputMaybe<Array<Scalars['Float']['input']>>;
|
|
156956
157456
|
valueText?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
156957
157457
|
};
|
|
157458
|
+
export type KitsuneGenerateInsightSummaryInput = {
|
|
157459
|
+
insightAri: Scalars['ID']['input'];
|
|
157460
|
+
};
|
|
157461
|
+
export type KitsuneGenerateInsightSummaryPayload = Payload & {
|
|
157462
|
+
__typename?: 'KitsuneGenerateInsightSummaryPayload';
|
|
157463
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157464
|
+
insight?: Maybe<KitsuneInsight>;
|
|
157465
|
+
success: Scalars['Boolean']['output'];
|
|
157466
|
+
};
|
|
156958
157467
|
export type KitsuneHighlightFragment = {
|
|
156959
157468
|
__typename?: 'KitsuneHighlightFragment';
|
|
156960
157469
|
text: Scalars['String']['output'];
|
|
@@ -157008,6 +157517,16 @@ export type KitsuneInsightSuggestion = {
|
|
|
157008
157517
|
matchedContent: Scalars['String']['output'];
|
|
157009
157518
|
score?: Maybe<Scalars['Float']['output']>;
|
|
157010
157519
|
};
|
|
157520
|
+
export type KitsuneInviteToSpaceInput = {
|
|
157521
|
+
principalAri: Scalars['ID']['input'];
|
|
157522
|
+
spaceAri: Scalars['ID']['input'];
|
|
157523
|
+
};
|
|
157524
|
+
export type KitsuneInviteToSpacePayload = Payload & {
|
|
157525
|
+
__typename?: 'KitsuneInviteToSpacePayload';
|
|
157526
|
+
accessPrincipal?: Maybe<KitsuneSpaceAccessPrincipal>;
|
|
157527
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157528
|
+
success: Scalars['Boolean']['output'];
|
|
157529
|
+
};
|
|
157011
157530
|
export type KitsuneJob = {
|
|
157012
157531
|
__typename?: 'KitsuneJob';
|
|
157013
157532
|
completedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -157045,10 +157564,39 @@ export declare enum KitsuneJobType {
|
|
|
157045
157564
|
SyncCustomer = "SYNC_CUSTOMER",
|
|
157046
157565
|
UpdateFeedback = "UPDATE_FEEDBACK"
|
|
157047
157566
|
}
|
|
157567
|
+
export type KitsuneLinkInsightsToIdeaInput = {
|
|
157568
|
+
ideaAri: Scalars['ID']['input'];
|
|
157569
|
+
insightAris: Array<Scalars['ID']['input']>;
|
|
157570
|
+
};
|
|
157571
|
+
export type KitsuneLinkInsightsToIdeaPayload = Payload & {
|
|
157572
|
+
__typename?: 'KitsuneLinkInsightsToIdeaPayload';
|
|
157573
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157574
|
+
insights?: Maybe<Array<KitsuneInsight>>;
|
|
157575
|
+
success: Scalars['Boolean']['output'];
|
|
157576
|
+
};
|
|
157048
157577
|
export declare enum KitsuneLogicalOperator {
|
|
157049
157578
|
And = "AND",
|
|
157050
157579
|
Or = "OR"
|
|
157051
157580
|
}
|
|
157581
|
+
export type KitsuneMoveSectionInput = {
|
|
157582
|
+
rank: KitsuneRankInput;
|
|
157583
|
+
};
|
|
157584
|
+
export type KitsuneMoveSectionPayload = Payload & {
|
|
157585
|
+
__typename?: 'KitsuneMoveSectionPayload';
|
|
157586
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157587
|
+
space?: Maybe<KitsuneSpace>;
|
|
157588
|
+
success: Scalars['Boolean']['output'];
|
|
157589
|
+
};
|
|
157590
|
+
export type KitsuneMoveViewInput = {
|
|
157591
|
+
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
157592
|
+
rank?: InputMaybe<KitsuneRankInput>;
|
|
157593
|
+
};
|
|
157594
|
+
export type KitsuneMoveViewPayload = Payload & {
|
|
157595
|
+
__typename?: 'KitsuneMoveViewPayload';
|
|
157596
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157597
|
+
space?: Maybe<KitsuneSpace>;
|
|
157598
|
+
success: Scalars['Boolean']['output'];
|
|
157599
|
+
};
|
|
157052
157600
|
export type KitsuneNode = {
|
|
157053
157601
|
_id: Scalars['ID']['output'];
|
|
157054
157602
|
};
|
|
@@ -157097,6 +157645,15 @@ export type KitsuneRankInput = {
|
|
|
157097
157645
|
after?: InputMaybe<Scalars['ID']['input']>;
|
|
157098
157646
|
before?: InputMaybe<Scalars['ID']['input']>;
|
|
157099
157647
|
};
|
|
157648
|
+
export type KitsuneRefreshInsightCountersInput = {
|
|
157649
|
+
workspaceAri: Scalars['ID']['input'];
|
|
157650
|
+
};
|
|
157651
|
+
export type KitsuneRefreshInsightCountersPayload = Payload & {
|
|
157652
|
+
__typename?: 'KitsuneRefreshInsightCountersPayload';
|
|
157653
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157654
|
+
job?: Maybe<KitsuneJob>;
|
|
157655
|
+
success: Scalars['Boolean']['output'];
|
|
157656
|
+
};
|
|
157100
157657
|
export type KitsuneRemoveConnectorConfigInput = {
|
|
157101
157658
|
workspaceAri: Scalars['ID']['input'];
|
|
157102
157659
|
};
|
|
@@ -157106,6 +157663,28 @@ export type KitsuneRemoveConnectorConfigPayload = Payload & {
|
|
|
157106
157663
|
id?: Maybe<Scalars['ID']['output']>;
|
|
157107
157664
|
success: Scalars['Boolean']['output'];
|
|
157108
157665
|
};
|
|
157666
|
+
export type KitsuneRemoveFieldValueInput = {
|
|
157667
|
+
workspaceAri: Scalars['ID']['input'];
|
|
157668
|
+
};
|
|
157669
|
+
export type KitsuneRemoveFromSpaceInput = {
|
|
157670
|
+
principalAri: Scalars['ID']['input'];
|
|
157671
|
+
spaceAri: Scalars['ID']['input'];
|
|
157672
|
+
};
|
|
157673
|
+
export type KitsuneRemoveFromSpacePayload = Payload & {
|
|
157674
|
+
__typename?: 'KitsuneRemoveFromSpacePayload';
|
|
157675
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157676
|
+
principalAri?: Maybe<Scalars['ID']['output']>;
|
|
157677
|
+
success: Scalars['Boolean']['output'];
|
|
157678
|
+
};
|
|
157679
|
+
export type KitsuneResyncInsightsInput = {
|
|
157680
|
+
workspaceAri: Scalars['ID']['input'];
|
|
157681
|
+
};
|
|
157682
|
+
export type KitsuneResyncInsightsPayload = Payload & {
|
|
157683
|
+
__typename?: 'KitsuneResyncInsightsPayload';
|
|
157684
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157685
|
+
job?: Maybe<KitsuneJob>;
|
|
157686
|
+
success: Scalars['Boolean']['output'];
|
|
157687
|
+
};
|
|
157109
157688
|
export type KitsuneRollupInput = {
|
|
157110
157689
|
externalId?: InputMaybe<Scalars['ID']['input']>;
|
|
157111
157690
|
ideaAri?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -157158,6 +157737,12 @@ export type KitsuneSectionViewsArgs = {
|
|
|
157158
157737
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
157159
157738
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
157160
157739
|
};
|
|
157740
|
+
export type KitsuneSectionPayload = Payload & {
|
|
157741
|
+
__typename?: 'KitsuneSectionPayload';
|
|
157742
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157743
|
+
section?: Maybe<KitsuneSection>;
|
|
157744
|
+
success: Scalars['Boolean']['output'];
|
|
157745
|
+
};
|
|
157161
157746
|
export type KitsuneSnippet = Node & {
|
|
157162
157747
|
__typename?: 'KitsuneSnippet';
|
|
157163
157748
|
aupViolationCategory?: Maybe<Scalars['String']['output']>;
|
|
@@ -157381,6 +157966,7 @@ export type KitsuneSourceInputWeb = {
|
|
|
157381
157966
|
export type KitsuneSpace = Node & {
|
|
157382
157967
|
__typename?: 'KitsuneSpace';
|
|
157383
157968
|
accessLevel: KitsuneSpaceAccessLevel;
|
|
157969
|
+
accessPrincipals: KitsuneSpaceAccessPrincipalConnection;
|
|
157384
157970
|
description?: Maybe<Scalars['String']['output']>;
|
|
157385
157971
|
feedbacks: KitsuneFeedbackConnection;
|
|
157386
157972
|
fields: KitsuneFieldConnection;
|
|
@@ -157389,6 +157975,12 @@ export type KitsuneSpace = Node & {
|
|
|
157389
157975
|
sourceCategories: KitsuneSourceCategoryConnection;
|
|
157390
157976
|
viewTree: KitsuneViewTreeConnection;
|
|
157391
157977
|
};
|
|
157978
|
+
export type KitsuneSpaceAccessPrincipalsArgs = {
|
|
157979
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
157980
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
157981
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
157982
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
157983
|
+
};
|
|
157392
157984
|
export type KitsuneSpaceFeedbacksArgs = {
|
|
157393
157985
|
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
157394
157986
|
};
|
|
@@ -157416,6 +158008,21 @@ export declare enum KitsuneSpaceAccessLevel {
|
|
|
157416
158008
|
Open = "OPEN",
|
|
157417
158009
|
Private = "PRIVATE"
|
|
157418
158010
|
}
|
|
158011
|
+
export type KitsuneSpaceAccessPrincipal = KitsuneSpaceGroupAccessPrincipal | KitsuneSpaceUserAccessPrincipal;
|
|
158012
|
+
export type KitsuneSpaceAccessPrincipalConnection = KitsuneConnection & {
|
|
158013
|
+
__typename?: 'KitsuneSpaceAccessPrincipalConnection';
|
|
158014
|
+
edges: Array<KitsuneSpaceAccessPrincipalEdge>;
|
|
158015
|
+
pageInfo: PageInfo;
|
|
158016
|
+
};
|
|
158017
|
+
export type KitsuneSpaceAccessPrincipalEdge = KitsuneEdge & {
|
|
158018
|
+
__typename?: 'KitsuneSpaceAccessPrincipalEdge';
|
|
158019
|
+
cursor: Scalars['String']['output'];
|
|
158020
|
+
node?: Maybe<KitsuneSpaceAccessPrincipal>;
|
|
158021
|
+
};
|
|
158022
|
+
export declare enum KitsuneSpaceAccessRole {
|
|
158023
|
+
Admin = "ADMIN",
|
|
158024
|
+
Member = "MEMBER"
|
|
158025
|
+
}
|
|
157419
158026
|
export type KitsuneSpaceConnection = KitsuneConnection & {
|
|
157420
158027
|
__typename?: 'KitsuneSpaceConnection';
|
|
157421
158028
|
edges: Array<KitsuneSpaceEdge>;
|
|
@@ -157426,6 +158033,18 @@ export type KitsuneSpaceEdge = KitsuneEdge & {
|
|
|
157426
158033
|
cursor: Scalars['String']['output'];
|
|
157427
158034
|
node?: Maybe<KitsuneSpace>;
|
|
157428
158035
|
};
|
|
158036
|
+
export type KitsuneSpaceGroupAccessPrincipal = {
|
|
158037
|
+
__typename?: 'KitsuneSpaceGroupAccessPrincipal';
|
|
158038
|
+
group?: Maybe<IdentityGroup>;
|
|
158039
|
+
principalId: Scalars['ID']['output'];
|
|
158040
|
+
role: KitsuneSpaceAccessRole;
|
|
158041
|
+
};
|
|
158042
|
+
export type KitsuneSpaceUserAccessPrincipal = {
|
|
158043
|
+
__typename?: 'KitsuneSpaceUserAccessPrincipal';
|
|
158044
|
+
principalId: Scalars['ID']['output'];
|
|
158045
|
+
role: KitsuneSpaceAccessRole;
|
|
158046
|
+
user?: Maybe<User>;
|
|
158047
|
+
};
|
|
157429
158048
|
export type KitsuneSummary = {
|
|
157430
158049
|
__typename?: 'KitsuneSummary';
|
|
157431
158050
|
content?: Maybe<Scalars['KitsuneADF']['output']>;
|
|
@@ -157473,6 +158092,53 @@ export type KitsuneUpdateConnectorConfigPayload = Payload & {
|
|
|
157473
158092
|
errors?: Maybe<Array<MutationError>>;
|
|
157474
158093
|
success: Scalars['Boolean']['output'];
|
|
157475
158094
|
};
|
|
158095
|
+
export type KitsuneUpdateFieldInput = {
|
|
158096
|
+
aiEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
158097
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
158098
|
+
entityTypes?: InputMaybe<Array<KitsuneEntityType>>;
|
|
158099
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
158100
|
+
options?: InputMaybe<KitsuneFieldOptionsInput>;
|
|
158101
|
+
};
|
|
158102
|
+
export type KitsuneUpdateFieldPayload = Payload & {
|
|
158103
|
+
__typename?: 'KitsuneUpdateFieldPayload';
|
|
158104
|
+
errors?: Maybe<Array<MutationError>>;
|
|
158105
|
+
field?: Maybe<KitsuneField>;
|
|
158106
|
+
success: Scalars['Boolean']['output'];
|
|
158107
|
+
};
|
|
158108
|
+
export type KitsuneUpdateInsightInput = {
|
|
158109
|
+
content?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
158110
|
+
externalAri?: InputMaybe<Scalars['ID']['input']>;
|
|
158111
|
+
ideaAris?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
158112
|
+
summaryContent?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
158113
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
158114
|
+
};
|
|
158115
|
+
export type KitsuneUpdateInsightPayload = Payload & {
|
|
158116
|
+
__typename?: 'KitsuneUpdateInsightPayload';
|
|
158117
|
+
errors?: Maybe<Array<MutationError>>;
|
|
158118
|
+
insight?: Maybe<KitsuneInsight>;
|
|
158119
|
+
success: Scalars['Boolean']['output'];
|
|
158120
|
+
};
|
|
158121
|
+
export type KitsuneUpdateSectionInput = {
|
|
158122
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
158123
|
+
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
158124
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
158125
|
+
};
|
|
158126
|
+
export type KitsuneUpdateSnippetInput = {
|
|
158127
|
+
content?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
158128
|
+
insightAri?: InputMaybe<Scalars['ID']['input']>;
|
|
158129
|
+
};
|
|
158130
|
+
export type KitsuneUpdateSnippetPayload = Payload & {
|
|
158131
|
+
__typename?: 'KitsuneUpdateSnippetPayload';
|
|
158132
|
+
errors?: Maybe<Array<MutationError>>;
|
|
158133
|
+
snippet?: Maybe<KitsuneSnippet>;
|
|
158134
|
+
success: Scalars['Boolean']['output'];
|
|
158135
|
+
};
|
|
158136
|
+
export type KitsuneUpdateViewInput = {
|
|
158137
|
+
config?: InputMaybe<KitsuneViewConfigInput>;
|
|
158138
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
158139
|
+
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
158140
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
158141
|
+
};
|
|
157476
158142
|
export type KitsuneUser = {
|
|
157477
158143
|
__typename?: 'KitsuneUser';
|
|
157478
158144
|
user?: Maybe<User>;
|
|
@@ -157514,6 +158180,12 @@ export type KitsuneViewEdge = KitsuneEdge & {
|
|
|
157514
158180
|
cursor: Scalars['String']['output'];
|
|
157515
158181
|
node?: Maybe<KitsuneView>;
|
|
157516
158182
|
};
|
|
158183
|
+
export type KitsuneViewPayload = Payload & {
|
|
158184
|
+
__typename?: 'KitsuneViewPayload';
|
|
158185
|
+
errors?: Maybe<Array<MutationError>>;
|
|
158186
|
+
success: Scalars['Boolean']['output'];
|
|
158187
|
+
view?: Maybe<KitsuneView>;
|
|
158188
|
+
};
|
|
157517
158189
|
export type KitsuneViewTree = KitsuneSection | KitsuneView;
|
|
157518
158190
|
export type KitsuneViewTreeConnection = KitsuneConnection & {
|
|
157519
158191
|
__typename?: 'KitsuneViewTreeConnection';
|
|
@@ -159030,6 +159702,7 @@ export type KnownUser = Person & {
|
|
|
159030
159702
|
accountType?: Maybe<Scalars['String']['output']>;
|
|
159031
159703
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
159032
159704
|
email?: Maybe<Scalars['String']['output']>;
|
|
159705
|
+
jobTitle?: Maybe<Scalars['String']['output']>;
|
|
159033
159706
|
links?: Maybe<LinksContextSelfBase>;
|
|
159034
159707
|
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
159035
159708
|
permissionType?: Maybe<SitePermissionType>;
|
|
@@ -159701,6 +160374,14 @@ export type LoomMeetingEdge = {
|
|
|
159701
160374
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
159702
160375
|
node?: Maybe<LoomMeeting>;
|
|
159703
160376
|
};
|
|
160377
|
+
export type LoomMeetingJiraSuggestion = {
|
|
160378
|
+
__typename?: 'LoomMeetingJiraSuggestion';
|
|
160379
|
+
channelConversationId?: Maybe<Scalars['String']['output']>;
|
|
160380
|
+
fieldsCount?: Maybe<Scalars['Int']['output']>;
|
|
160381
|
+
generatedAt?: Maybe<Scalars['String']['output']>;
|
|
160382
|
+
issuesCount?: Maybe<Scalars['Int']['output']>;
|
|
160383
|
+
jiraProjectAri?: Maybe<Scalars['ID']['output']>;
|
|
160384
|
+
};
|
|
159704
160385
|
export type LoomMeetingOneClickAction = {
|
|
159705
160386
|
__typename?: 'LoomMeetingOneClickAction';
|
|
159706
160387
|
action?: Maybe<Scalars['String']['output']>;
|
|
@@ -160156,161 +160837,6 @@ export type LoopCommentEdge = {
|
|
|
160156
160837
|
cursor: Scalars['String']['output'];
|
|
160157
160838
|
node?: Maybe<LoopComment>;
|
|
160158
160839
|
};
|
|
160159
|
-
export type LpCertSort = {
|
|
160160
|
-
sortDirection?: InputMaybe<SortDirection>;
|
|
160161
|
-
sortField?: InputMaybe<LpCertSortField>;
|
|
160162
|
-
};
|
|
160163
|
-
export declare enum LpCertSortField {
|
|
160164
|
-
ActiveDate = "ACTIVE_DATE",
|
|
160165
|
-
ExpireDate = "EXPIRE_DATE",
|
|
160166
|
-
Id = "ID",
|
|
160167
|
-
ImageUrl = "IMAGE_URL",
|
|
160168
|
-
Name = "NAME",
|
|
160169
|
-
NameAbbr = "NAME_ABBR",
|
|
160170
|
-
PublicUrl = "PUBLIC_URL",
|
|
160171
|
-
Status = "STATUS",
|
|
160172
|
-
Type = "TYPE"
|
|
160173
|
-
}
|
|
160174
|
-
export declare enum LpCertStatus {
|
|
160175
|
-
Active = "ACTIVE",
|
|
160176
|
-
Expired = "EXPIRED"
|
|
160177
|
-
}
|
|
160178
|
-
export declare enum LpCertType {
|
|
160179
|
-
Badge = "BADGE",
|
|
160180
|
-
Certification = "CERTIFICATION",
|
|
160181
|
-
Standing = "STANDING"
|
|
160182
|
-
}
|
|
160183
|
-
export type LpCertmetricsCertificate = {
|
|
160184
|
-
__typename?: 'LpCertmetricsCertificate';
|
|
160185
|
-
activeDate?: Maybe<Scalars['String']['output']>;
|
|
160186
|
-
expireDate?: Maybe<Scalars['String']['output']>;
|
|
160187
|
-
id?: Maybe<Scalars['String']['output']>;
|
|
160188
|
-
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
160189
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
160190
|
-
nameAbbr?: Maybe<Scalars['String']['output']>;
|
|
160191
|
-
publicUrl?: Maybe<Scalars['String']['output']>;
|
|
160192
|
-
status?: Maybe<LpCertStatus>;
|
|
160193
|
-
type?: Maybe<LpCertType>;
|
|
160194
|
-
};
|
|
160195
|
-
export type LpCertmetricsCertificateConnection = {
|
|
160196
|
-
__typename?: 'LpCertmetricsCertificateConnection';
|
|
160197
|
-
edges?: Maybe<Array<LpCertmetricsCertificateEdge>>;
|
|
160198
|
-
pageInfo?: Maybe<LpPageInfo>;
|
|
160199
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
160200
|
-
};
|
|
160201
|
-
export type LpCertmetricsCertificateEdge = {
|
|
160202
|
-
__typename?: 'LpCertmetricsCertificateEdge';
|
|
160203
|
-
cursor: Scalars['String']['output'];
|
|
160204
|
-
node?: Maybe<LpCertmetricsCertificate>;
|
|
160205
|
-
};
|
|
160206
|
-
export type LpCertmetricsCertificateResult = LpCertmetricsCertificateConnection | QueryError;
|
|
160207
|
-
export type LpConnectionQueryErrorExtension = QueryErrorExtension & {
|
|
160208
|
-
__typename?: 'LpConnectionQueryErrorExtension';
|
|
160209
|
-
errorType?: Maybe<Scalars['String']['output']>;
|
|
160210
|
-
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
160211
|
-
};
|
|
160212
|
-
export type LpCourseProgress = {
|
|
160213
|
-
__typename?: 'LpCourseProgress';
|
|
160214
|
-
completedDate?: Maybe<Scalars['String']['output']>;
|
|
160215
|
-
courseId?: Maybe<Scalars['String']['output']>;
|
|
160216
|
-
id?: Maybe<Scalars['String']['output']>;
|
|
160217
|
-
isFromIntellum: Scalars['Boolean']['output'];
|
|
160218
|
-
lessons?: Maybe<Array<Maybe<LpLessonProgress>>>;
|
|
160219
|
-
status?: Maybe<LpCourseStatus>;
|
|
160220
|
-
title?: Maybe<Scalars['String']['output']>;
|
|
160221
|
-
url?: Maybe<Scalars['String']['output']>;
|
|
160222
|
-
};
|
|
160223
|
-
export type LpCourseProgressConnection = {
|
|
160224
|
-
__typename?: 'LpCourseProgressConnection';
|
|
160225
|
-
edges?: Maybe<Array<LpCourseProgressEdge>>;
|
|
160226
|
-
pageInfo?: Maybe<LpPageInfo>;
|
|
160227
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
160228
|
-
};
|
|
160229
|
-
export type LpCourseProgressEdge = {
|
|
160230
|
-
__typename?: 'LpCourseProgressEdge';
|
|
160231
|
-
cursor: Scalars['String']['output'];
|
|
160232
|
-
node?: Maybe<LpCourseProgress>;
|
|
160233
|
-
};
|
|
160234
|
-
export type LpCourseProgressResult = LpCourseProgressConnection | QueryError;
|
|
160235
|
-
export type LpCourseSort = {
|
|
160236
|
-
sortDirection?: InputMaybe<SortDirection>;
|
|
160237
|
-
sortField?: InputMaybe<LpCourseSortField>;
|
|
160238
|
-
};
|
|
160239
|
-
export declare enum LpCourseSortField {
|
|
160240
|
-
CompletedDate = "COMPLETED_DATE",
|
|
160241
|
-
CourseId = "COURSE_ID",
|
|
160242
|
-
Id = "ID",
|
|
160243
|
-
Status = "STATUS",
|
|
160244
|
-
Title = "TITLE",
|
|
160245
|
-
Url = "URL"
|
|
160246
|
-
}
|
|
160247
|
-
export declare enum LpCourseStatus {
|
|
160248
|
-
Completed = "COMPLETED",
|
|
160249
|
-
InProgress = "IN_PROGRESS"
|
|
160250
|
-
}
|
|
160251
|
-
export type LpLearner = Node & {
|
|
160252
|
-
__typename?: 'LpLearner';
|
|
160253
|
-
atlassianId: Scalars['String']['output'];
|
|
160254
|
-
certmetricsCertificates?: Maybe<LpCertmetricsCertificateResult>;
|
|
160255
|
-
courses?: Maybe<LpCourseProgressResult>;
|
|
160256
|
-
id: Scalars['ID']['output'];
|
|
160257
|
-
};
|
|
160258
|
-
export type LpLearnerCertmetricsCertificatesArgs = {
|
|
160259
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
160260
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
160261
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
160262
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
160263
|
-
sorting?: InputMaybe<LpCertSort>;
|
|
160264
|
-
status?: InputMaybe<LpCertStatus>;
|
|
160265
|
-
type?: InputMaybe<Array<InputMaybe<LpCertType>>>;
|
|
160266
|
-
};
|
|
160267
|
-
export type LpLearnerCoursesArgs = {
|
|
160268
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
160269
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
160270
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
160271
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
160272
|
-
sorting?: InputMaybe<LpCourseSort>;
|
|
160273
|
-
status?: InputMaybe<LpCourseStatus>;
|
|
160274
|
-
};
|
|
160275
|
-
export type LpLearnerData = {
|
|
160276
|
-
__typename?: 'LpLearnerData';
|
|
160277
|
-
learnerByAtlassianId?: Maybe<LpLearner>;
|
|
160278
|
-
learnersByAtlassianIds?: Maybe<Array<Maybe<LpLearner>>>;
|
|
160279
|
-
learnersByIds?: Maybe<Array<Maybe<LpLearner>>>;
|
|
160280
|
-
node?: Maybe<Node>;
|
|
160281
|
-
};
|
|
160282
|
-
export type LpLearnerDataLearnerByAtlassianIdArgs = {
|
|
160283
|
-
atlassianId: Scalars['String']['input'];
|
|
160284
|
-
};
|
|
160285
|
-
export type LpLearnerDataLearnersByAtlassianIdsArgs = {
|
|
160286
|
-
atlassianIds: Array<Scalars['String']['input']>;
|
|
160287
|
-
};
|
|
160288
|
-
export type LpLearnerDataLearnersByIdsArgs = {
|
|
160289
|
-
ids: Array<Scalars['ID']['input']>;
|
|
160290
|
-
};
|
|
160291
|
-
export type LpLearnerDataNodeArgs = {
|
|
160292
|
-
id: Scalars['ID']['input'];
|
|
160293
|
-
};
|
|
160294
|
-
export type LpLessonProgress = {
|
|
160295
|
-
__typename?: 'LpLessonProgress';
|
|
160296
|
-
lessonId?: Maybe<Scalars['String']['output']>;
|
|
160297
|
-
status?: Maybe<Scalars['String']['output']>;
|
|
160298
|
-
title?: Maybe<Scalars['String']['output']>;
|
|
160299
|
-
};
|
|
160300
|
-
export type LpPageInfo = {
|
|
160301
|
-
__typename?: 'LpPageInfo';
|
|
160302
|
-
endCursor?: Maybe<Scalars['String']['output']>;
|
|
160303
|
-
hasNextPage: Scalars['Boolean']['output'];
|
|
160304
|
-
hasPreviousPage: Scalars['Boolean']['output'];
|
|
160305
|
-
startCursor?: Maybe<Scalars['String']['output']>;
|
|
160306
|
-
};
|
|
160307
|
-
export type LpQueryError = Node & {
|
|
160308
|
-
__typename?: 'LpQueryError';
|
|
160309
|
-
extensions?: Maybe<Array<QueryErrorExtension>>;
|
|
160310
|
-
id: Scalars['ID']['output'];
|
|
160311
|
-
identifier?: Maybe<Scalars['ID']['output']>;
|
|
160312
|
-
message?: Maybe<Scalars['String']['output']>;
|
|
160313
|
-
};
|
|
160314
160840
|
export type M360ServiceHelloWorldPayload = {
|
|
160315
160841
|
__typename?: 'M360ServiceHelloWorldPayload';
|
|
160316
160842
|
greeting?: Maybe<Scalars['String']['output']>;
|
|
@@ -160652,6 +161178,7 @@ export type MarketplaceConsoleAppInput = {
|
|
|
160652
161178
|
export type MarketplaceConsoleAppPublishWizardAppSecurityPrefillOptionsResponse = {
|
|
160653
161179
|
__typename?: 'MarketplaceConsoleAppPublishWizardAppSecurityPrefillOptionsResponse';
|
|
160654
161180
|
eligibleSources: Array<MarketplaceConsoleAppPublishWizardPrefillSourceApp>;
|
|
161181
|
+
prefillCase: MarketplaceConsoleAppPublishWizardPrefillCase;
|
|
160655
161182
|
selfPriorAppKey?: Maybe<Scalars['String']['output']>;
|
|
160656
161183
|
};
|
|
160657
161184
|
export type MarketplaceConsoleAppPublishWizardCheckResult = {
|
|
@@ -160745,6 +161272,11 @@ export declare enum MarketplaceConsoleAppPublishWizardFillStrategy {
|
|
|
160745
161272
|
Partial = "PARTIAL",
|
|
160746
161273
|
PreFilled = "PRE_FILLED"
|
|
160747
161274
|
}
|
|
161275
|
+
export declare enum MarketplaceConsoleAppPublishWizardPrefillCase {
|
|
161276
|
+
CopyFromSibling = "COPY_FROM_SIBLING",
|
|
161277
|
+
Fresh = "FRESH",
|
|
161278
|
+
SelfPrior = "SELF_PRIOR"
|
|
161279
|
+
}
|
|
160748
161280
|
export type MarketplaceConsoleAppPublishWizardPrefillSourceApp = {
|
|
160749
161281
|
__typename?: 'MarketplaceConsoleAppPublishWizardPrefillSourceApp';
|
|
160750
161282
|
appKey: Scalars['String']['output'];
|
|
@@ -160755,6 +161287,22 @@ export declare enum MarketplaceConsoleAppPublishWizardPrefillSourceOrigin {
|
|
|
160755
161287
|
Donut = "DONUT",
|
|
160756
161288
|
Hermes = "HERMES"
|
|
160757
161289
|
}
|
|
161290
|
+
export declare enum MarketplaceConsoleAppPublishWizardPublishEntryDestination {
|
|
161291
|
+
Prefill = "PREFILL",
|
|
161292
|
+
Unavailable = "UNAVAILABLE",
|
|
161293
|
+
Wizard = "WIZARD",
|
|
161294
|
+
Workflow = "WORKFLOW"
|
|
161295
|
+
}
|
|
161296
|
+
export type MarketplaceConsoleAppPublishWizardPublishEntryResponse = {
|
|
161297
|
+
__typename?: 'MarketplaceConsoleAppPublishWizardPublishEntryResponse';
|
|
161298
|
+
currentScreen?: Maybe<MarketplaceConsoleAppPublishWizardScreenId>;
|
|
161299
|
+
currentWorkflowId?: Maybe<Scalars['ID']['output']>;
|
|
161300
|
+
destination: MarketplaceConsoleAppPublishWizardPublishEntryDestination;
|
|
161301
|
+
prefillOptions?: Maybe<MarketplaceConsoleAppPublishWizardAppSecurityPrefillOptionsResponse>;
|
|
161302
|
+
sessionStatus?: Maybe<MarketplaceConsoleAppPublishWizardSessionStatus>;
|
|
161303
|
+
submissionId?: Maybe<Scalars['ID']['output']>;
|
|
161304
|
+
unavailableReasons: Array<Scalars['String']['output']>;
|
|
161305
|
+
};
|
|
160758
161306
|
export type MarketplaceConsoleAppPublishWizardReadinessResponse = {
|
|
160759
161307
|
__typename?: 'MarketplaceConsoleAppPublishWizardReadinessResponse';
|
|
160760
161308
|
checks: Array<MarketplaceConsoleAppPublishWizardCheckResult>;
|
|
@@ -162460,6 +163008,7 @@ export type MarketplaceConsoleQueryApi = {
|
|
|
162460
163008
|
__typename?: 'MarketplaceConsoleQueryApi';
|
|
162461
163009
|
appPrivateListings?: Maybe<MarketplaceConsolePrivateListingsTokens>;
|
|
162462
163010
|
appPublishWizardAppSecurityPrefillOptions?: Maybe<MarketplaceConsoleAppPublishWizardAppSecurityPrefillOptionsResponse>;
|
|
163011
|
+
appPublishWizardPublishEntry?: Maybe<MarketplaceConsoleAppPublishWizardPublishEntryResponse>;
|
|
162463
163012
|
appPublishWizardReadiness?: Maybe<MarketplaceConsoleAppPublishWizardReadinessResponse>;
|
|
162464
163013
|
appPublishWizardSession?: Maybe<MarketplaceConsoleAppPublishWizardSessionResponse>;
|
|
162465
163014
|
appPublishWizardWorkflowStatus?: Maybe<MarketplaceConsoleAppPublishWizardWorkflowStatusResponse>;
|
|
@@ -162505,6 +163054,12 @@ export type MarketplaceConsoleQueryApiAppPublishWizardAppSecurityPrefillOptionsA
|
|
|
162505
163054
|
buildNumber: Scalars['String']['input'];
|
|
162506
163055
|
partnerId: Scalars['String']['input'];
|
|
162507
163056
|
};
|
|
163057
|
+
export type MarketplaceConsoleQueryApiAppPublishWizardPublishEntryArgs = {
|
|
163058
|
+
appKey: Scalars['String']['input'];
|
|
163059
|
+
appSoftwareId: Scalars['ID']['input'];
|
|
163060
|
+
buildNumber: Scalars['String']['input'];
|
|
163061
|
+
partnerId: Scalars['String']['input'];
|
|
163062
|
+
};
|
|
162508
163063
|
export type MarketplaceConsoleQueryApiAppPublishWizardReadinessArgs = {
|
|
162509
163064
|
appSoftwareId: Scalars['ID']['input'];
|
|
162510
163065
|
submissionId: Scalars['ID']['input'];
|
|
@@ -162646,6 +163201,7 @@ export type MarketplaceConsoleStartAppPublishWizardInput = {
|
|
|
162646
163201
|
appSecuritySourceAppKey?: InputMaybe<Scalars['String']['input']>;
|
|
162647
163202
|
buildNumber: Scalars['String']['input'];
|
|
162648
163203
|
partnerId: Scalars['String']['input'];
|
|
163204
|
+
prefillFromPriorSubmission?: InputMaybe<Scalars['Boolean']['input']>;
|
|
162649
163205
|
};
|
|
162650
163206
|
export type MarketplaceConsoleTagsContent = {
|
|
162651
163207
|
__typename?: 'MarketplaceConsoleTagsContent';
|
|
@@ -164677,6 +165233,114 @@ export type MarketplaceStoreSearchFilter = {
|
|
|
164677
165233
|
key: Scalars['String']['output'];
|
|
164678
165234
|
value: Array<Scalars['String']['output']>;
|
|
164679
165235
|
};
|
|
165236
|
+
export type MarketplaceStoreSearchHitDistribution = {
|
|
165237
|
+
__typename?: 'MarketplaceStoreSearchHitDistribution';
|
|
165238
|
+
activeInstalls?: Maybe<Scalars['Int']['output']>;
|
|
165239
|
+
activeInstallsPerHosting?: Maybe<MarketplaceStoreSearchHitDistributionPerHosting>;
|
|
165240
|
+
bundled?: Maybe<Scalars['Boolean']['output']>;
|
|
165241
|
+
deltaInstalls?: Maybe<Scalars['Int']['output']>;
|
|
165242
|
+
downloads?: Maybe<Scalars['Int']['output']>;
|
|
165243
|
+
};
|
|
165244
|
+
export type MarketplaceStoreSearchHitDistributionPerHosting = {
|
|
165245
|
+
__typename?: 'MarketplaceStoreSearchHitDistributionPerHosting';
|
|
165246
|
+
cloud?: Maybe<Scalars['Int']['output']>;
|
|
165247
|
+
dataCenter?: Maybe<Scalars['Int']['output']>;
|
|
165248
|
+
server?: Maybe<Scalars['Int']['output']>;
|
|
165249
|
+
};
|
|
165250
|
+
export type MarketplaceStoreSearchHitGovernance = {
|
|
165251
|
+
__typename?: 'MarketplaceStoreSearchHitGovernance';
|
|
165252
|
+
partnerTrustCenter?: Maybe<Scalars['String']['output']>;
|
|
165253
|
+
standardLegalAgreement?: Maybe<Scalars['Boolean']['output']>;
|
|
165254
|
+
supportsDataResidency?: Maybe<Scalars['String']['output']>;
|
|
165255
|
+
};
|
|
165256
|
+
export type MarketplaceStoreSearchHitLogo = {
|
|
165257
|
+
__typename?: 'MarketplaceStoreSearchHitLogo';
|
|
165258
|
+
highRes?: Maybe<Scalars['String']['output']>;
|
|
165259
|
+
image: Scalars['String']['output'];
|
|
165260
|
+
smallHighResImage?: Maybe<Scalars['String']['output']>;
|
|
165261
|
+
smallImage?: Maybe<Scalars['String']['output']>;
|
|
165262
|
+
};
|
|
165263
|
+
export type MarketplaceStoreSearchHitObject = {
|
|
165264
|
+
__typename?: 'MarketplaceStoreSearchHitObject';
|
|
165265
|
+
addonKey: Scalars['String']['output'];
|
|
165266
|
+
compliance?: Maybe<Array<Scalars['String']['output']>>;
|
|
165267
|
+
deployments?: Maybe<Array<Scalars['String']['output']>>;
|
|
165268
|
+
distribution?: Maybe<MarketplaceStoreSearchHitDistribution>;
|
|
165269
|
+
documentType?: Maybe<Scalars['String']['output']>;
|
|
165270
|
+
freeStarterTierStatus?: Maybe<Scalars['String']['output']>;
|
|
165271
|
+
governance?: Maybe<MarketplaceStoreSearchHitGovernance>;
|
|
165272
|
+
id: Scalars['ID']['output'];
|
|
165273
|
+
logo?: Maybe<MarketplaceStoreSearchHitLogo>;
|
|
165274
|
+
marketingLabels?: Maybe<Array<Scalars['String']['output']>>;
|
|
165275
|
+
name: Scalars['String']['output'];
|
|
165276
|
+
productId?: Maybe<Scalars['String']['output']>;
|
|
165277
|
+
ratings?: Maybe<MarketplaceStoreSearchHitRatings>;
|
|
165278
|
+
releaseDate?: Maybe<Scalars['String']['output']>;
|
|
165279
|
+
securityProgram?: Maybe<MarketplaceStoreSearchHitSecurityProgram>;
|
|
165280
|
+
tagLine?: Maybe<Scalars['String']['output']>;
|
|
165281
|
+
tags: MarketplaceStoreSearchHitTags;
|
|
165282
|
+
trustProgram?: Maybe<MarketplaceStoreSearchHitTrustProgram>;
|
|
165283
|
+
vendor: MarketplaceStoreSearchHitVendor;
|
|
165284
|
+
version?: Maybe<MarketplaceStoreSearchHitVersion>;
|
|
165285
|
+
};
|
|
165286
|
+
export type MarketplaceStoreSearchHitPartnerTier = {
|
|
165287
|
+
__typename?: 'MarketplaceStoreSearchHitPartnerTier';
|
|
165288
|
+
type: Scalars['String']['output'];
|
|
165289
|
+
};
|
|
165290
|
+
export type MarketplaceStoreSearchHitProgramStatus = {
|
|
165291
|
+
__typename?: 'MarketplaceStoreSearchHitProgramStatus';
|
|
165292
|
+
status: Scalars['String']['output'];
|
|
165293
|
+
};
|
|
165294
|
+
export type MarketplaceStoreSearchHitRatings = {
|
|
165295
|
+
__typename?: 'MarketplaceStoreSearchHitRatings';
|
|
165296
|
+
avgStars: Scalars['Float']['output'];
|
|
165297
|
+
avgStars5PerHosting?: Maybe<MarketplaceStoreSearchHitRatingsPerHosting>;
|
|
165298
|
+
numRatings: Scalars['Int']['output'];
|
|
165299
|
+
numberOfReviewsPerHosting?: Maybe<MarketplaceStoreSearchHitRatingsPerHosting>;
|
|
165300
|
+
ratingsScore: Scalars['Float']['output'];
|
|
165301
|
+
ratingsScore5PerHosting?: Maybe<MarketplaceStoreSearchHitRatingsPerHosting>;
|
|
165302
|
+
};
|
|
165303
|
+
export type MarketplaceStoreSearchHitRatingsPerHosting = {
|
|
165304
|
+
__typename?: 'MarketplaceStoreSearchHitRatingsPerHosting';
|
|
165305
|
+
cloud?: Maybe<Scalars['Float']['output']>;
|
|
165306
|
+
dataCenter?: Maybe<Scalars['Float']['output']>;
|
|
165307
|
+
server?: Maybe<Scalars['Float']['output']>;
|
|
165308
|
+
};
|
|
165309
|
+
export type MarketplaceStoreSearchHitSecurityProgram = {
|
|
165310
|
+
__typename?: 'MarketplaceStoreSearchHitSecurityProgram';
|
|
165311
|
+
bugBounty?: Maybe<MarketplaceStoreSearchHitSecurityProgramHostingStatus>;
|
|
165312
|
+
penetrationTesting?: Maybe<MarketplaceStoreSearchHitSecurityProgramHostingStatus>;
|
|
165313
|
+
};
|
|
165314
|
+
export type MarketplaceStoreSearchHitSecurityProgramHostingStatus = {
|
|
165315
|
+
__typename?: 'MarketplaceStoreSearchHitSecurityProgramHostingStatus';
|
|
165316
|
+
cloud?: Maybe<MarketplaceStoreSearchHitProgramStatus>;
|
|
165317
|
+
dataCenter?: Maybe<MarketplaceStoreSearchHitProgramStatus>;
|
|
165318
|
+
server?: Maybe<MarketplaceStoreSearchHitProgramStatus>;
|
|
165319
|
+
};
|
|
165320
|
+
export type MarketplaceStoreSearchHitTags = {
|
|
165321
|
+
__typename?: 'MarketplaceStoreSearchHitTags';
|
|
165322
|
+
categories: Array<Scalars['String']['output']>;
|
|
165323
|
+
keywords?: Maybe<Array<Scalars['String']['output']>>;
|
|
165324
|
+
marketingLabels?: Maybe<Array<Scalars['String']['output']>>;
|
|
165325
|
+
};
|
|
165326
|
+
export type MarketplaceStoreSearchHitTrustProgram = {
|
|
165327
|
+
__typename?: 'MarketplaceStoreSearchHitTrustProgram';
|
|
165328
|
+
architectedForAtlassian?: Maybe<Scalars['Boolean']['output']>;
|
|
165329
|
+
cloudFortified?: Maybe<MarketplaceStoreSearchHitProgramStatus>;
|
|
165330
|
+
runsOnAtlassian?: Maybe<Scalars['Boolean']['output']>;
|
|
165331
|
+
};
|
|
165332
|
+
export type MarketplaceStoreSearchHitVendor = {
|
|
165333
|
+
__typename?: 'MarketplaceStoreSearchHitVendor';
|
|
165334
|
+
name: Scalars['String']['output'];
|
|
165335
|
+
partnerTier?: Maybe<MarketplaceStoreSearchHitPartnerTier>;
|
|
165336
|
+
vendorId: Scalars['ID']['output'];
|
|
165337
|
+
};
|
|
165338
|
+
export type MarketplaceStoreSearchHitVersion = {
|
|
165339
|
+
__typename?: 'MarketplaceStoreSearchHitVersion';
|
|
165340
|
+
billingModel: Scalars['String']['output'];
|
|
165341
|
+
paid?: Maybe<Scalars['Boolean']['output']>;
|
|
165342
|
+
standardLegalAgreement?: Maybe<Scalars['Boolean']['output']>;
|
|
165343
|
+
};
|
|
164680
165344
|
export type MarketplaceStoreSearchMetadata = {
|
|
164681
165345
|
__typename?: 'MarketplaceStoreSearchMetadata';
|
|
164682
165346
|
filters: Array<MarketplaceStoreSearchFilter>;
|
|
@@ -164715,6 +165379,18 @@ export type MarketplaceStoreSideNavigationItem = {
|
|
|
164715
165379
|
name: Scalars['String']['output'];
|
|
164716
165380
|
path: Scalars['String']['output'];
|
|
164717
165381
|
};
|
|
165382
|
+
export type MarketplaceStoreSimilarObjectsInput = {
|
|
165383
|
+
complianceBoundary?: InputMaybe<MarketplaceStoreCloudComplianceBoundary>;
|
|
165384
|
+
count?: InputMaybe<Scalars['Int']['input']>;
|
|
165385
|
+
productId?: InputMaybe<Scalars['String']['input']>;
|
|
165386
|
+
surface?: InputMaybe<MarketplaceStorePersonalisationTargetSurface>;
|
|
165387
|
+
tenantId?: InputMaybe<Scalars['String']['input']>;
|
|
165388
|
+
};
|
|
165389
|
+
export type MarketplaceStoreSimilarObjectsResponse = {
|
|
165390
|
+
__typename?: 'MarketplaceStoreSimilarObjectsResponse';
|
|
165391
|
+
objects: Array<MarketplaceStoreSearchHitObject>;
|
|
165392
|
+
resultsCount: Scalars['Int']['output'];
|
|
165393
|
+
};
|
|
164718
165394
|
export type MarketplaceStoreSiteDetailsInput = {
|
|
164719
165395
|
cloudId: Scalars['String']['input'];
|
|
164720
165396
|
product: MarketplaceStoreSiteProduct;
|
|
@@ -165511,9 +166187,9 @@ export type MercuryAskEdge = {
|
|
|
165511
166187
|
node?: Maybe<MercuryAskResult>;
|
|
165512
166188
|
};
|
|
165513
166189
|
export declare enum MercuryAskEventType {
|
|
166190
|
+
AcceptProposedDate = "ACCEPT_PROPOSED_DATE",
|
|
165514
166191
|
Create = "CREATE",
|
|
165515
|
-
|
|
165516
|
-
DeleteLink = "DELETE_LINK",
|
|
166192
|
+
RejectProposedDate = "REJECT_PROPOSED_DATE",
|
|
165517
166193
|
Update = "UPDATE"
|
|
165518
166194
|
}
|
|
165519
166195
|
export declare enum MercuryAskField {
|
|
@@ -165534,6 +166210,8 @@ export declare enum MercuryAskField {
|
|
|
165534
166210
|
Name = "NAME",
|
|
165535
166211
|
Owner = "OWNER",
|
|
165536
166212
|
Priority = "PRIORITY",
|
|
166213
|
+
ProposedDate = "PROPOSED_DATE",
|
|
166214
|
+
ProposedDateType = "PROPOSED_DATE_TYPE",
|
|
165537
166215
|
ReceivingOrganization = "RECEIVING_ORGANIZATION",
|
|
165538
166216
|
ReceivingTeam = "RECEIVING_TEAM",
|
|
165539
166217
|
ReceivingUser = "RECEIVING_USER",
|
|
@@ -165541,7 +166219,8 @@ export declare enum MercuryAskField {
|
|
|
165541
166219
|
SubmittingOrganization = "SUBMITTING_ORGANIZATION",
|
|
165542
166220
|
SubmittingTeam = "SUBMITTING_TEAM",
|
|
165543
166221
|
SubmittingUser = "SUBMITTING_USER",
|
|
165544
|
-
TargetDate = "TARGET_DATE"
|
|
166222
|
+
TargetDate = "TARGET_DATE",
|
|
166223
|
+
TargetDateType = "TARGET_DATE_TYPE"
|
|
165545
166224
|
}
|
|
165546
166225
|
export type MercuryAskLink = Node & {
|
|
165547
166226
|
__typename?: 'MercuryAskLink';
|
|
@@ -166789,7 +167468,12 @@ export type MercuryCreateFocusAreaInput = {
|
|
|
166789
167468
|
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
166790
167469
|
focusAreaTypeId: Scalars['ID']['input'];
|
|
166791
167470
|
name: Scalars['String']['input'];
|
|
167471
|
+
owner?: InputMaybe<Scalars['String']['input']>;
|
|
166792
167472
|
parentFocusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
167473
|
+
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
167474
|
+
startDateType?: InputMaybe<MercuryFocusAreaStartDateType>;
|
|
167475
|
+
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
167476
|
+
targetDateType?: InputMaybe<MercuryTargetDateType>;
|
|
166793
167477
|
};
|
|
166794
167478
|
export type MercuryCreateFocusAreaPayload = Payload & {
|
|
166795
167479
|
__typename?: 'MercuryCreateFocusAreaPayload';
|
|
@@ -166812,6 +167496,18 @@ export type MercuryCreateFocusAreaStatusUpdatePayload = Payload & {
|
|
|
166812
167496
|
errors?: Maybe<Array<MutationError>>;
|
|
166813
167497
|
success: Scalars['Boolean']['output'];
|
|
166814
167498
|
};
|
|
167499
|
+
export type MercuryCreateFocusAreasFromOnboardingInput = {
|
|
167500
|
+
cloudId: Scalars['ID']['input'];
|
|
167501
|
+
dryRun?: InputMaybe<Scalars['Boolean']['input']>;
|
|
167502
|
+
model: MercuryOnboardingModelInput;
|
|
167503
|
+
};
|
|
167504
|
+
export type MercuryCreateFocusAreasFromOnboardingPayload = Payload & {
|
|
167505
|
+
__typename?: 'MercuryCreateFocusAreasFromOnboardingPayload';
|
|
167506
|
+
dryRun?: Maybe<Scalars['Boolean']['output']>;
|
|
167507
|
+
errors?: Maybe<Array<MutationError>>;
|
|
167508
|
+
success: Scalars['Boolean']['output'];
|
|
167509
|
+
valid?: Maybe<Scalars['Boolean']['output']>;
|
|
167510
|
+
};
|
|
166815
167511
|
export type MercuryCreateInvestmentCategoryInput = {
|
|
166816
167512
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
166817
167513
|
name: Scalars['String']['input'];
|
|
@@ -167113,6 +167809,13 @@ export type MercuryCustomSelectFieldOptionInput = {
|
|
|
167113
167809
|
settings?: InputMaybe<Array<MercuryCustomFieldSelectionOptionSettingInput>>;
|
|
167114
167810
|
value: Scalars['String']['input'];
|
|
167115
167811
|
};
|
|
167812
|
+
export type MercuryDataIntegrationsMutationApi = {
|
|
167813
|
+
__typename?: 'MercuryDataIntegrationsMutationApi';
|
|
167814
|
+
createFocusAreasFromOnboarding?: Maybe<MercuryCreateFocusAreasFromOnboardingPayload>;
|
|
167815
|
+
};
|
|
167816
|
+
export type MercuryDataIntegrationsMutationApiCreateFocusAreasFromOnboardingArgs = {
|
|
167817
|
+
input: MercuryCreateFocusAreasFromOnboardingInput;
|
|
167818
|
+
};
|
|
167116
167819
|
export type MercuryDataIntegrationsQueryApi = {
|
|
167117
167820
|
__typename?: 'MercuryDataIntegrationsQueryApi';
|
|
167118
167821
|
importJob?: Maybe<MercuryImportJob>;
|
|
@@ -167745,6 +168448,7 @@ export type MercuryExternalUser = {
|
|
|
167745
168448
|
export type MercuryFinancialVersion = Node & {
|
|
167746
168449
|
__typename?: 'MercuryFinancialVersion';
|
|
167747
168450
|
id: Scalars['ID']['output'];
|
|
168451
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
167748
168452
|
type: MercuryFinancialVersionType;
|
|
167749
168453
|
};
|
|
167750
168454
|
export type MercuryFinancialVersionBenefitDimensionSummary = MercuryFinancialVersionBenefitTypeSummary;
|
|
@@ -167844,6 +168548,23 @@ export type MercuryFiscalCalendarConfigurationSort = {
|
|
|
167844
168548
|
export declare enum MercuryFiscalCalendarConfigurationSortField {
|
|
167845
168549
|
CreatedDate = "CREATED_DATE"
|
|
167846
168550
|
}
|
|
168551
|
+
export type MercuryFiscalYearPlanRealignmentExecutionError = {
|
|
168552
|
+
__typename?: 'MercuryFiscalYearPlanRealignmentExecutionError';
|
|
168553
|
+
field: Scalars['String']['output'];
|
|
168554
|
+
id: Scalars['ID']['output'];
|
|
168555
|
+
message: Scalars['String']['output'];
|
|
168556
|
+
};
|
|
168557
|
+
export type MercuryFiscalYearPlanRealignmentJob = {
|
|
168558
|
+
__typename?: 'MercuryFiscalYearPlanRealignmentJob';
|
|
168559
|
+
executionErrors?: Maybe<Array<MercuryFiscalYearPlanRealignmentExecutionError>>;
|
|
168560
|
+
id: Scalars['ID']['output'];
|
|
168561
|
+
status: MercuryFiscalYearPlanRealignmentJobStatus;
|
|
168562
|
+
};
|
|
168563
|
+
export declare enum MercuryFiscalYearPlanRealignmentJobStatus {
|
|
168564
|
+
Failed = "FAILED",
|
|
168565
|
+
InProgress = "IN_PROGRESS",
|
|
168566
|
+
Succeeded = "SUCCEEDED"
|
|
168567
|
+
}
|
|
167847
168568
|
export type MercuryFocusArea = Node & {
|
|
167848
168569
|
__typename?: 'MercuryFocusArea';
|
|
167849
168570
|
aboutContent: MercuryFocusAreaAbout;
|
|
@@ -168460,6 +169181,15 @@ export type MercuryFocusAreaTypeAggregation = {
|
|
|
168460
169181
|
__typename?: 'MercuryFocusAreaTypeAggregation';
|
|
168461
169182
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
168462
169183
|
};
|
|
169184
|
+
export type MercuryFocusAreaTypeMetric = {
|
|
169185
|
+
__typename?: 'MercuryFocusAreaTypeMetric';
|
|
169186
|
+
focusAreaType: MercuryFocusAreaType;
|
|
169187
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
169188
|
+
};
|
|
169189
|
+
export type MercuryFocusAreaTypeMetrics = {
|
|
169190
|
+
__typename?: 'MercuryFocusAreaTypeMetrics';
|
|
169191
|
+
focusAreaTypes?: Maybe<Array<MercuryFocusAreaTypeMetric>>;
|
|
169192
|
+
};
|
|
168463
169193
|
export type MercuryFocusAreaUserAccess = {
|
|
168464
169194
|
__typename?: 'MercuryFocusAreaUserAccess';
|
|
168465
169195
|
accessLevel?: Maybe<MercuryFocusAreaUserAccessLevel>;
|
|
@@ -168500,6 +169230,10 @@ export type MercuryForYouInsightsFilter = {
|
|
|
168500
169230
|
forYouInsightType?: InputMaybe<MercuryForYouInsightType>;
|
|
168501
169231
|
insightType?: InputMaybe<MercuryInsightTypeEnum>;
|
|
168502
169232
|
};
|
|
169233
|
+
export declare enum MercuryForYouOwnershipType {
|
|
169234
|
+
Own = "OWN",
|
|
169235
|
+
Watch = "WATCH"
|
|
169236
|
+
}
|
|
168503
169237
|
export type MercuryFundChangeSummary = {
|
|
168504
169238
|
__typename?: 'MercuryFundChangeSummary';
|
|
168505
169239
|
amount?: Maybe<MercuryFundChangeSummaryFields>;
|
|
@@ -170083,6 +170817,14 @@ export type MercuryOnUpdateChangeProposalsPayload = Payload & {
|
|
|
170083
170817
|
strategicEventId: Scalars['ID']['output'];
|
|
170084
170818
|
success: Scalars['Boolean']['output'];
|
|
170085
170819
|
};
|
|
170820
|
+
export declare enum MercuryOnboardingModelFormat {
|
|
170821
|
+
Mermaid = "MERMAID"
|
|
170822
|
+
}
|
|
170823
|
+
export type MercuryOnboardingModelInput = {
|
|
170824
|
+
format: MercuryOnboardingModelFormat;
|
|
170825
|
+
formatVersion: Scalars['String']['input'];
|
|
170826
|
+
model: Scalars['String']['input'];
|
|
170827
|
+
};
|
|
170086
170828
|
export type MercuryOrganization = Node & {
|
|
170087
170829
|
__typename?: 'MercuryOrganization';
|
|
170088
170830
|
aboutContent: MercuryOrganizationAbout;
|
|
@@ -171217,9 +171959,13 @@ export type MercuryPlansMutationApiUnlinkFocusAreasFromPlanArgs = {
|
|
|
171217
171959
|
};
|
|
171218
171960
|
export type MercuryPlansQueryApi = {
|
|
171219
171961
|
__typename?: 'MercuryPlansQueryApi';
|
|
171962
|
+
fiscalYearRealignmentJob?: Maybe<MercuryFiscalYearPlanRealignmentJob>;
|
|
171220
171963
|
plans?: Maybe<Array<MercuryPlan>>;
|
|
171221
171964
|
plansSearch?: Maybe<MercuryPlanConnection>;
|
|
171222
171965
|
};
|
|
171966
|
+
export type MercuryPlansQueryApiFiscalYearRealignmentJobArgs = {
|
|
171967
|
+
cloudId: Scalars['ID']['input'];
|
|
171968
|
+
};
|
|
171223
171969
|
export type MercuryPlansQueryApiPlansArgs = {
|
|
171224
171970
|
ids: Array<Scalars['ID']['input']>;
|
|
171225
171971
|
};
|
|
@@ -171747,6 +172493,7 @@ export type MercuryQueryApi = {
|
|
|
171747
172493
|
focusAreasByAris?: Maybe<Array<MercuryFocusArea>>;
|
|
171748
172494
|
focusAreasByExternalIds?: Maybe<Array<Maybe<MercuryFocusArea>>>;
|
|
171749
172495
|
focusAreasTopologicallySorted?: Maybe<Array<MercuryFocusArea>>;
|
|
172496
|
+
forYouFocusAreaTypeMetrics?: Maybe<MercuryFocusAreaTypeMetrics>;
|
|
171750
172497
|
mediaReadToken?: Maybe<MercuryMediaToken>;
|
|
171751
172498
|
mediaUploadToken?: Maybe<MercuryMediaToken>;
|
|
171752
172499
|
myPreference?: Maybe<MercuryPreference>;
|
|
@@ -171883,6 +172630,10 @@ export type MercuryQueryApiFocusAreasByExternalIdsArgs = {
|
|
|
171883
172630
|
export type MercuryQueryApiFocusAreasTopologicallySortedArgs = {
|
|
171884
172631
|
focusAreaIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
171885
172632
|
};
|
|
172633
|
+
export type MercuryQueryApiForYouFocusAreaTypeMetricsArgs = {
|
|
172634
|
+
cloudId: Scalars['ID']['input'];
|
|
172635
|
+
ownershipType: MercuryForYouOwnershipType;
|
|
172636
|
+
};
|
|
171886
172637
|
export type MercuryQueryApiMediaReadTokenArgs = {
|
|
171887
172638
|
cloudId: Scalars['ID']['input'];
|
|
171888
172639
|
entityId: Scalars['ID']['input'];
|
|
@@ -172625,6 +173376,7 @@ export type MercurySetBaselineInput = {
|
|
|
172625
173376
|
endYearMonth: Scalars['String']['input'];
|
|
172626
173377
|
financialVersionId: Scalars['ID']['input'];
|
|
172627
173378
|
focusAreaId: Scalars['ID']['input'];
|
|
173379
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
172628
173380
|
startYearMonth: Scalars['String']['input'];
|
|
172629
173381
|
};
|
|
172630
173382
|
export type MercurySetBaselinePayload = Payload & {
|
|
@@ -174970,6 +175722,7 @@ export type Mutation = {
|
|
|
174970
175722
|
agentWorkspace_assignAgentToGap?: Maybe<AgentWorkspaceAssignAgentToGapPayload>;
|
|
174971
175723
|
agentWorkspace_assignAgentsToSkill?: Maybe<AgentWorkspaceAssignAgentsToSkillPayload>;
|
|
174972
175724
|
agentWorkspace_bulkUpsertDraftedRoutingTableEntries?: Maybe<AgentWorkspaceBulkUpsertDraftedRoutingTableEntriesPayload>;
|
|
175725
|
+
agentWorkspace_bulkUpsertDraftedTeamRoutingTableEntries?: Maybe<AgentWorkspaceBulkUpsertDraftedTeamRoutingTableEntriesPayload>;
|
|
174973
175726
|
agentWorkspace_cancelRoutingTableGeneration?: Maybe<AgentWorkspaceCancelRoutingTableGenerationPayload>;
|
|
174974
175727
|
agentWorkspace_cancelSmartRoutingDryRun?: Maybe<AgentWorkspaceSmartRoutingDryRun>;
|
|
174975
175728
|
agentWorkspace_createAndLinkTeamsFromGroups?: Maybe<AgentWorkspaceCreateAndLinkTeamsPayload>;
|
|
@@ -175000,6 +175753,7 @@ export type Mutation = {
|
|
|
175000
175753
|
agentWorkspace_startBulkScheduleImportJob?: Maybe<AgentWorkspaceStartBulkImportPayload>;
|
|
175001
175754
|
agentWorkspace_startGenerateRoutingTable?: Maybe<AgentWorkspaceStartGenerateRoutingTablePayload>;
|
|
175002
175755
|
agentWorkspace_startGenerateRoutingTableV2?: Maybe<AgentWorkspaceStartGenerateRoutingTablePayload>;
|
|
175756
|
+
agentWorkspace_startGenerateTeamRoutingTable?: Maybe<AgentWorkspaceStartGenerateRoutingTablePayload>;
|
|
175003
175757
|
agentWorkspace_startSmartRoutingDryRun?: Maybe<AgentWorkspaceStartSmartRoutingDryRunPayload>;
|
|
175004
175758
|
agentWorkspace_submitDraftedRoutingTable?: Maybe<AgentWorkspaceSubmitDraftedRoutingTablePayload>;
|
|
175005
175759
|
agentWorkspace_submitDraftedTeamRoutingTable?: Maybe<AgentWorkspaceSubmitDraftedTeamRoutingTablePayload>;
|
|
@@ -175035,6 +175789,8 @@ export type Mutation = {
|
|
|
175035
175789
|
archivePages?: Maybe<BulkArchivePagePayload>;
|
|
175036
175790
|
archivePolarisInsights?: Maybe<ArchivePolarisInsightsPayload>;
|
|
175037
175791
|
archiveSpace?: Maybe<ArchiveSpacePayload>;
|
|
175792
|
+
artifact_createArtifact?: Maybe<ArtifactCreatePayload>;
|
|
175793
|
+
artifact_createContent?: Maybe<ArtifactCreateContentPayload>;
|
|
175038
175794
|
assetsDM_addDataDictionary?: Maybe<AssetsDmAddDataDictionaryResponse>;
|
|
175039
175795
|
assetsDM_addDefaultAttributeMapping?: Maybe<AssetsDmAddDefaultAttributeMappingResponse>;
|
|
175040
175796
|
assetsDM_associateObjectTag?: Maybe<AssetsDmObjectTagAssociateResponse>;
|
|
@@ -175160,6 +175916,7 @@ export type Mutation = {
|
|
|
175160
175916
|
avp_moveDashboardRow?: Maybe<AvpMoveDashboardRowPayload>;
|
|
175161
175917
|
avp_removeDashboardElement?: Maybe<AvpRemoveDashboardElementPayload>;
|
|
175162
175918
|
avp_removeDashboardRow?: Maybe<AvpRemoveDashboardRowPayload>;
|
|
175919
|
+
avp_replaceEmptyCanvasElement?: Maybe<AvpReplaceEmptyCanvasElementPayload>;
|
|
175163
175920
|
avp_signForgeContextToken?: Maybe<AvpSignForgeContextTokenPayload>;
|
|
175164
175921
|
avp_starDashboard?: Maybe<AvpStarDashboardPayload>;
|
|
175165
175922
|
avp_toggleCanvasElementExpanded?: Maybe<AvpToggleCanvasElementExpandedPayload>;
|
|
@@ -175239,6 +175996,7 @@ export type Mutation = {
|
|
|
175239
175996
|
completeSprint?: Maybe<CompleteSprintResponse>;
|
|
175240
175997
|
confluence?: Maybe<ConfluenceMutationApi>;
|
|
175241
175998
|
confluence_acceptAnswer?: Maybe<ConfluenceAcceptAnswerPayload>;
|
|
175999
|
+
confluence_accessLinkSpacesAction?: Maybe<ConfluenceAccessLinkSpacesActionPayload>;
|
|
175242
176000
|
confluence_addInlineReaction?: Maybe<ConfluenceInlineReactionPayload>;
|
|
175243
176001
|
confluence_addReaction?: Maybe<ConfluenceReactionPayload>;
|
|
175244
176002
|
confluence_addTrack?: Maybe<ConfluenceAddTrackPayload>;
|
|
@@ -175313,6 +176071,7 @@ export type Mutation = {
|
|
|
175313
176071
|
confluence_patchCalendar?: Maybe<ConfluencePatchCalendarPayload>;
|
|
175314
176072
|
confluence_patchFolder?: Maybe<ConfluencePatchFolderPayload>;
|
|
175315
176073
|
confluence_patchSpaceSettings?: Maybe<ConfluencePatchSpaceSettingsPayload>;
|
|
176074
|
+
confluence_pauseSmartFolderSync?: Maybe<ConfluenceSmartFolderSyncControlPayload>;
|
|
175316
176075
|
confluence_publishBlueprintSharedDraft?: Maybe<ConfluencePublishBlueprintSharedDraftPayload>;
|
|
175317
176076
|
confluence_publishDraftWithApprovalReviewTransfer?: Maybe<ConfluenceWorkflowApplicationPayload>;
|
|
175318
176077
|
confluence_recordCompanionTipScrollSignal?: Maybe<ConfluenceRecordCompanionTipScrollSignalPayload>;
|
|
@@ -175330,6 +176089,7 @@ export type Mutation = {
|
|
|
175330
176089
|
confluence_resolveSpaceAccessRequest?: Maybe<ConfluenceResolveSpaceAccessRequestPayload>;
|
|
175331
176090
|
confluence_restoreContentVersion?: Maybe<ConfluenceRestoreContentVersionPayload>;
|
|
175332
176091
|
confluence_restoreSystemRole?: Maybe<ConfluenceRestoreSystemRolePayload>;
|
|
176092
|
+
confluence_resumeSmartFolderSync?: Maybe<ConfluenceSmartFolderSyncControlPayload>;
|
|
175333
176093
|
confluence_sendToDesktop?: Maybe<ConfluenceDesktopSendPayload>;
|
|
175334
176094
|
confluence_setContentApprovalsSpaceSettings?: Maybe<ConfluenceContentApprovalsSpaceSettingsPayload>;
|
|
175335
176095
|
confluence_setContentGeneralAccessMode?: Maybe<ConfluenceSetContentGeneralAccessModePayload>;
|
|
@@ -175365,6 +176125,7 @@ export type Mutation = {
|
|
|
175365
176125
|
confluence_updateCoverPicture?: Maybe<ConfluenceUpdateCoverPicturePayload>;
|
|
175366
176126
|
confluence_updateCustomContentPermissions?: Maybe<ConfluenceUpdateCustomContentPermissionsPayload>;
|
|
175367
176127
|
confluence_updateCustomRole?: Maybe<ConfluenceUpdateCustomRolePayload>;
|
|
176128
|
+
confluence_updateCwrRemixCreationConfiguration?: Maybe<ConfluenceUpdateCwrRemixCreationConfigurationPayload>;
|
|
175368
176129
|
confluence_updateDefaultTitleEmoji?: Maybe<ConfluenceUpdateDefaultTitleEmojiPayload>;
|
|
175369
176130
|
confluence_updateInstance?: Maybe<ConfluenceUpdateInstancePayload>;
|
|
175370
176131
|
confluence_updateMarkdownMode?: Maybe<ConfluenceUpdateMarkdownModePayload>;
|
|
@@ -175724,6 +176485,7 @@ export type Mutation = {
|
|
|
175724
176485
|
graphIntegration_addTwgCapabilityContainer?: Maybe<GraphIntegrationAddTwgCapabilityContainerPayload>;
|
|
175725
176486
|
graphIntegration_createDataConnectorConnection?: Maybe<GraphIntegrationCreateConnectionPayload>;
|
|
175726
176487
|
graphIntegration_createSkill?: Maybe<GraphIntegrationSkill>;
|
|
176488
|
+
graphIntegration_createSkillCloneLink?: Maybe<GraphIntegrationCreateSkillCloneLinkPayload>;
|
|
175727
176489
|
graphIntegration_customAuthDelete?: Maybe<GraphIntegrationCustomAuthDeletePayload>;
|
|
175728
176490
|
graphIntegration_customAuthUpdate?: Maybe<GraphIntegrationCustomAuthMutationPayload>;
|
|
175729
176491
|
graphIntegration_customAuthUpdateStatus?: Maybe<GraphIntegrationCustomAuthMutationPayload>;
|
|
@@ -175913,6 +176675,7 @@ export type Mutation = {
|
|
|
175913
176675
|
gravity_reviseDraft?: Maybe<GravityDraftPayload>;
|
|
175914
176676
|
gravity_setActionStatus?: Maybe<GravityActionPayload>;
|
|
175915
176677
|
gravity_setViewArrangement?: Maybe<GravityViewArrangementPayload>;
|
|
176678
|
+
gravity_startAltaSession?: Maybe<GravityAltaSessionPayload>;
|
|
175916
176679
|
gravity_updateDeliverySettings?: Maybe<GravityUpdateDeliverySettingsPayload>;
|
|
175917
176680
|
gravity_updateDraftContent?: Maybe<GravityDraftPayload>;
|
|
175918
176681
|
gravity_upsertAction?: Maybe<GravityActionPayload>;
|
|
@@ -175922,7 +176685,6 @@ export type Mutation = {
|
|
|
175922
176685
|
growthUnifiedProfile_createUnifiedProfile?: Maybe<GrowthUnifiedProfileResult>;
|
|
175923
176686
|
hardDeleteSpace?: Maybe<HardDeleteSpacePayload>;
|
|
175924
176687
|
helpCenter?: Maybe<HelpCenterMutationApi>;
|
|
175925
|
-
helpExternalResource?: Maybe<HelpExternalResourceMutationApi>;
|
|
175926
176688
|
helpLayout?: Maybe<HelpLayoutMutationApi>;
|
|
175927
176689
|
helpObjectStore?: Maybe<HelpObjectStoreMutationApi>;
|
|
175928
176690
|
home_addTagsById?: Maybe<TownsquareAddTagToEntityPayload>;
|
|
@@ -176136,6 +176898,7 @@ export type Mutation = {
|
|
|
176136
176898
|
jsmTelemetry_addChart?: Maybe<JsmTelemetryAddChartResult>;
|
|
176137
176899
|
jsmTelemetry_createTelemetryConnection?: Maybe<JsmTelemetryCreateTelemetryConnectionPayload>;
|
|
176138
176900
|
jsmTelemetry_deleteTelemetryConnection?: Maybe<Scalars['Boolean']['output']>;
|
|
176901
|
+
jsmTelemetry_discoverAndSaveIncidentServiceMetrics?: Maybe<JsmTelemetryIncidentServiceMetricDiscoverySaveResult>;
|
|
176139
176902
|
jsmTelemetry_removeChart?: Maybe<JsmTelemetryRemoveChartResult>;
|
|
176140
176903
|
jsmTelemetry_removeDashboard?: Maybe<JsmTelemetryRemoveDashboardResult>;
|
|
176141
176904
|
jsmTelemetry_removeDashboardChart?: Maybe<JsmTelemetryRemoveDashboardChartResult>;
|
|
@@ -176148,35 +176911,54 @@ export type Mutation = {
|
|
|
176148
176911
|
kitsune_createCustomerField?: Maybe<KitsuneCustomerCustomField>;
|
|
176149
176912
|
kitsune_createFeedback?: Maybe<KitsuneFeedback>;
|
|
176150
176913
|
kitsune_createField?: Maybe<KitsuneField>;
|
|
176914
|
+
kitsune_createFieldV2?: Maybe<KitsuneCreateFieldPayload>;
|
|
176151
176915
|
kitsune_createInsight?: Maybe<KitsuneInsight>;
|
|
176916
|
+
kitsune_createInsightV2?: Maybe<KitsuneCreateInsightPayload>;
|
|
176152
176917
|
kitsune_createOrganization?: Maybe<KitsuneOrganization>;
|
|
176153
176918
|
kitsune_createOrganizationField?: Maybe<KitsuneCustomerCustomField>;
|
|
176154
176919
|
kitsune_createSection?: Maybe<KitsuneSection>;
|
|
176920
|
+
kitsune_createSectionV2?: Maybe<KitsuneSectionPayload>;
|
|
176155
176921
|
kitsune_createSnippet?: Maybe<KitsuneSnippet>;
|
|
176922
|
+
kitsune_createSnippetV2?: Maybe<KitsuneCreateSnippetPayload>;
|
|
176156
176923
|
kitsune_createSpace?: Maybe<KitsuneSpace>;
|
|
176157
176924
|
kitsune_createView?: Maybe<KitsuneView>;
|
|
176925
|
+
kitsune_createViewV2?: Maybe<KitsuneViewPayload>;
|
|
176158
176926
|
kitsune_exportFeedbackFromView?: Maybe<KitsuneJob>;
|
|
176159
176927
|
kitsune_generateFeedbackSummary?: Maybe<KitsuneFeedback>;
|
|
176160
176928
|
kitsune_generateInsightSummary?: Maybe<KitsuneInsight>;
|
|
176929
|
+
kitsune_generateInsightSummaryV2?: Maybe<KitsuneGenerateInsightSummaryPayload>;
|
|
176930
|
+
kitsune_inviteToSpace?: Maybe<KitsuneInviteToSpacePayload>;
|
|
176161
176931
|
kitsune_linkInsightsToIdea?: Maybe<Array<Maybe<KitsuneInsight>>>;
|
|
176932
|
+
kitsune_linkInsightsToIdeaV2?: Maybe<KitsuneLinkInsightsToIdeaPayload>;
|
|
176162
176933
|
kitsune_moveSection?: Maybe<KitsuneSpace>;
|
|
176934
|
+
kitsune_moveSectionV2?: Maybe<KitsuneMoveSectionPayload>;
|
|
176163
176935
|
kitsune_moveView?: Maybe<KitsuneSpace>;
|
|
176936
|
+
kitsune_moveViewV2?: Maybe<KitsuneMoveViewPayload>;
|
|
176164
176937
|
kitsune_refreshInsightCounters?: Maybe<KitsuneJob>;
|
|
176938
|
+
kitsune_refreshInsightCountersV2?: Maybe<KitsuneRefreshInsightCountersPayload>;
|
|
176165
176939
|
kitsune_removeConnectorConfig?: Maybe<KitsuneRemoveConnectorConfigPayload>;
|
|
176166
176940
|
kitsune_removeCustomer?: Maybe<KitsuneDeletedRecord>;
|
|
176167
176941
|
kitsune_removeCustomerField?: Maybe<KitsuneDeletedRecord>;
|
|
176168
176942
|
kitsune_removeFeedback?: Maybe<KitsuneDeletedRecord>;
|
|
176169
176943
|
kitsune_removeField?: Maybe<KitsuneDeletedRecord>;
|
|
176944
|
+
kitsune_removeFieldV2?: Maybe<KitsuneDeletedPayload>;
|
|
176170
176945
|
kitsune_removeFieldValue?: Maybe<KitsuneDeletedRecord>;
|
|
176946
|
+
kitsune_removeFieldValueV2?: Maybe<KitsuneDeletedPayload>;
|
|
176947
|
+
kitsune_removeFromSpace?: Maybe<KitsuneRemoveFromSpacePayload>;
|
|
176171
176948
|
kitsune_removeInsight?: Maybe<KitsuneDeletedRecord>;
|
|
176949
|
+
kitsune_removeInsightV2?: Maybe<KitsuneDeletedPayload>;
|
|
176172
176950
|
kitsune_removeOrganization?: Maybe<KitsuneDeletedRecord>;
|
|
176173
176951
|
kitsune_removeOrganizationField?: Maybe<KitsuneDeletedRecord>;
|
|
176174
176952
|
kitsune_removeSection?: Maybe<KitsuneDeletedRecord>;
|
|
176953
|
+
kitsune_removeSectionV2?: Maybe<KitsuneDeleteSectionPayload>;
|
|
176175
176954
|
kitsune_removeSnippet?: Maybe<KitsuneDeletedRecord>;
|
|
176955
|
+
kitsune_removeSnippetV2?: Maybe<KitsuneDeletedPayload>;
|
|
176176
176956
|
kitsune_removeSpace?: Maybe<KitsuneJob>;
|
|
176177
176957
|
kitsune_removeView?: Maybe<KitsuneDeletedRecord>;
|
|
176958
|
+
kitsune_removeViewV2?: Maybe<KitsuneDeleteViewPayload>;
|
|
176178
176959
|
kitsune_resyncFeedback?: Maybe<KitsuneJob>;
|
|
176179
176960
|
kitsune_resyncInsights?: Maybe<KitsuneJob>;
|
|
176961
|
+
kitsune_resyncInsightsV2?: Maybe<KitsuneResyncInsightsPayload>;
|
|
176180
176962
|
kitsune_syncCsmProperties?: Maybe<KitsuneJob>;
|
|
176181
176963
|
kitsune_syncCustomerFields?: Maybe<KitsuneJob>;
|
|
176182
176964
|
kitsune_syncCustomers?: Maybe<KitsuneJob>;
|
|
@@ -176185,13 +176967,18 @@ export type Mutation = {
|
|
|
176185
176967
|
kitsune_updateCustomerField?: Maybe<KitsuneCustomerCustomField>;
|
|
176186
176968
|
kitsune_updateFeedback?: Maybe<KitsuneFeedback>;
|
|
176187
176969
|
kitsune_updateField?: Maybe<KitsuneField>;
|
|
176970
|
+
kitsune_updateFieldV2?: Maybe<KitsuneUpdateFieldPayload>;
|
|
176188
176971
|
kitsune_updateInsight?: Maybe<KitsuneInsight>;
|
|
176972
|
+
kitsune_updateInsightV2?: Maybe<KitsuneUpdateInsightPayload>;
|
|
176189
176973
|
kitsune_updateOrganization?: Maybe<KitsuneOrganization>;
|
|
176190
176974
|
kitsune_updateOrganizationField?: Maybe<KitsuneCustomerCustomField>;
|
|
176191
176975
|
kitsune_updateSection?: Maybe<KitsuneSection>;
|
|
176976
|
+
kitsune_updateSectionV2?: Maybe<KitsuneSectionPayload>;
|
|
176192
176977
|
kitsune_updateSnippet?: Maybe<KitsuneSnippet>;
|
|
176978
|
+
kitsune_updateSnippetV2?: Maybe<KitsuneUpdateSnippetPayload>;
|
|
176193
176979
|
kitsune_updateSpace?: Maybe<KitsuneSpace>;
|
|
176194
176980
|
kitsune_updateView?: Maybe<KitsuneView>;
|
|
176981
|
+
kitsune_updateViewV2?: Maybe<KitsuneViewPayload>;
|
|
176195
176982
|
knowledgeBase?: Maybe<KnowledgeBaseMutationApi>;
|
|
176196
176983
|
knowledgeBaseSpacePermission_updateView: KnowledgeBaseSpacePermissionMutationResponse;
|
|
176197
176984
|
knowledgeBase_linkSources?: Maybe<KnowledgeBaseLinkSourcesResponse>;
|
|
@@ -176233,6 +177020,7 @@ export type Mutation = {
|
|
|
176233
177020
|
mercury_createAskCustomFieldDefinition?: Maybe<MercuryCreateCustomFieldDefinitionPayload>;
|
|
176234
177021
|
mercury_createAskStatusUpdate?: Maybe<MercuryUpsertAskStatusUpdatePayload>;
|
|
176235
177022
|
mercury_createAsks?: Maybe<MercuryCreateAsksPayload>;
|
|
177023
|
+
mercury_dataIntegrations?: Maybe<MercuryDataIntegrationsMutationApi>;
|
|
176236
177024
|
mercury_deleteAsk?: Maybe<MercuryDeleteAskPayload>;
|
|
176237
177025
|
mercury_deleteAskCustomFieldDefinition?: Maybe<MercuryDeleteCustomFieldDefinitionPayload>;
|
|
176238
177026
|
mercury_deleteAskCustomFieldDefinitionOptions?: Maybe<MercuryDeleteCustomFieldDefinitionOptionsPayload>;
|
|
@@ -176304,6 +177092,7 @@ export type Mutation = {
|
|
|
176304
177092
|
playbook_updateJiraPlaybook?: Maybe<UpdateJiraPlaybookPayload>;
|
|
176305
177093
|
playbook_updateJiraPlaybookLabel?: Maybe<UpdateJiraPlaybookLabelPayload>;
|
|
176306
177094
|
playbook_updateJiraPlaybookState?: Maybe<UpdateJiraPlaybookStatePayload>;
|
|
177095
|
+
processCombinedAppBuild?: Maybe<ProcessCombinedAppBuildResponse>;
|
|
176307
177096
|
projects_addGoalLink?: Maybe<TownsquareProjectsAddGoalLinkPayload>;
|
|
176308
177097
|
projects_addJiraWorkItemLink?: Maybe<TownsquareProjectsAddJiraWorkItemLinkPayload>;
|
|
176309
177098
|
projects_addMembers?: Maybe<TownsquareProjectsAddMembersPayload>;
|
|
@@ -176400,8 +177189,6 @@ export type Mutation = {
|
|
|
176400
177189
|
radar_updateSkillMappingStatuses?: Maybe<Array<RadarWorkerSkill>>;
|
|
176401
177190
|
radar_updateWorkerSkillMappings?: Maybe<Array<RadarUpdateWorkerSkillMappingsResponse>>;
|
|
176402
177191
|
radar_updateWorkspaceSettings?: Maybe<RadarMutationResponse>;
|
|
176403
|
-
radar_upsertAiScopedBudgetPolicies?: Maybe<RadarUpsertAiScopedBudgetPoliciesPayload>;
|
|
176404
|
-
radar_upsertAiWorkspaceBudgetPolicy?: Maybe<RadarAiWorkspaceBudgetPolicy>;
|
|
176405
177192
|
radar_upsertLastAppliedFilter?: Maybe<RadarLastAppliedFilter>;
|
|
176406
177193
|
radar_upsertView?: Maybe<RadarView>;
|
|
176407
177194
|
radar_upsertWorkTypeAllocations?: Maybe<RadarMutationResponse>;
|
|
@@ -177041,6 +177828,9 @@ export type MutationAgentWorkspace_AssignAgentsToSkillArgs = {
|
|
|
177041
177828
|
export type MutationAgentWorkspace_BulkUpsertDraftedRoutingTableEntriesArgs = {
|
|
177042
177829
|
input: AgentWorkspaceBulkUpsertDraftedRoutingTableEntriesInput;
|
|
177043
177830
|
};
|
|
177831
|
+
export type MutationAgentWorkspace_BulkUpsertDraftedTeamRoutingTableEntriesArgs = {
|
|
177832
|
+
input: AgentWorkspaceBulkUpsertDraftedTeamRoutingTableEntriesInput;
|
|
177833
|
+
};
|
|
177044
177834
|
export type MutationAgentWorkspace_CancelRoutingTableGenerationArgs = {
|
|
177045
177835
|
input: AgentWorkspaceCancelRoutingTableGenerationInput;
|
|
177046
177836
|
};
|
|
@@ -177134,6 +177924,9 @@ export type MutationAgentWorkspace_StartGenerateRoutingTableArgs = {
|
|
|
177134
177924
|
export type MutationAgentWorkspace_StartGenerateRoutingTableV2Args = {
|
|
177135
177925
|
input: AgentWorkspaceStartGenerateRoutingTableInputV2;
|
|
177136
177926
|
};
|
|
177927
|
+
export type MutationAgentWorkspace_StartGenerateTeamRoutingTableArgs = {
|
|
177928
|
+
input: AgentWorkspaceStartGenerateTeamRoutingTableInput;
|
|
177929
|
+
};
|
|
177137
177930
|
export type MutationAgentWorkspace_StartSmartRoutingDryRunArgs = {
|
|
177138
177931
|
input: AgentWorkspaceStartSmartRoutingDryRunInput;
|
|
177139
177932
|
};
|
|
@@ -177234,6 +178027,9 @@ export type MutationArchivePolarisInsightsArgs = {
|
|
|
177234
178027
|
export type MutationArchiveSpaceArgs = {
|
|
177235
178028
|
input: ArchiveSpaceInput;
|
|
177236
178029
|
};
|
|
178030
|
+
export type MutationArtifact_CreateArtifactArgs = {
|
|
178031
|
+
input: ArtifactCreateInput;
|
|
178032
|
+
};
|
|
177237
178033
|
export type MutationAssetsDm_AddDataDictionaryArgs = {
|
|
177238
178034
|
cloudId: Scalars['ID']['input'];
|
|
177239
178035
|
payload: AssetsDmAddDataDictionaryInput;
|
|
@@ -177768,6 +178564,9 @@ export type MutationAvp_RemoveDashboardElementArgs = {
|
|
|
177768
178564
|
export type MutationAvp_RemoveDashboardRowArgs = {
|
|
177769
178565
|
input: AvpRemoveDashboardRowInput;
|
|
177770
178566
|
};
|
|
178567
|
+
export type MutationAvp_ReplaceEmptyCanvasElementArgs = {
|
|
178568
|
+
input: AvpReplaceEmptyCanvasElementInput;
|
|
178569
|
+
};
|
|
177771
178570
|
export type MutationAvp_SignForgeContextTokenArgs = {
|
|
177772
178571
|
input: AvpSignForgeContextTokenInput;
|
|
177773
178572
|
};
|
|
@@ -178017,6 +178816,10 @@ export type MutationConfluence_AcceptAnswerArgs = {
|
|
|
178017
178816
|
cloudId: Scalars['ID']['input'];
|
|
178018
178817
|
input: ConfluenceAcceptAnswerInput;
|
|
178019
178818
|
};
|
|
178819
|
+
export type MutationConfluence_AccessLinkSpacesActionArgs = {
|
|
178820
|
+
cloudId: Scalars['ID']['input'];
|
|
178821
|
+
input: ConfluenceAccessLinkSpacesActionInput;
|
|
178822
|
+
};
|
|
178020
178823
|
export type MutationConfluence_AddInlineReactionArgs = {
|
|
178021
178824
|
cloudId: Scalars['ID']['input'];
|
|
178022
178825
|
input: ConfluenceAddInlineReactionInput;
|
|
@@ -178311,6 +179114,10 @@ export type MutationConfluence_PatchSpaceSettingsArgs = {
|
|
|
178311
179114
|
cloudId: Scalars['ID']['input'];
|
|
178312
179115
|
input: ConfluencePatchSpaceSettingsInput;
|
|
178313
179116
|
};
|
|
179117
|
+
export type MutationConfluence_PauseSmartFolderSyncArgs = {
|
|
179118
|
+
cloudId: Scalars['ID']['input'];
|
|
179119
|
+
input: ConfluenceSmartFolderSyncControlInput;
|
|
179120
|
+
};
|
|
178314
179121
|
export type MutationConfluence_PublishBlueprintSharedDraftArgs = {
|
|
178315
179122
|
cloudId: Scalars['ID']['input'];
|
|
178316
179123
|
input?: InputMaybe<ConfluencePublishBlueprintSharedDraftInput>;
|
|
@@ -178381,6 +179188,10 @@ export type MutationConfluence_RestoreSystemRoleArgs = {
|
|
|
178381
179188
|
cloudId: Scalars['ID']['input'];
|
|
178382
179189
|
input: ConfluenceRestoreSystemRoleInput;
|
|
178383
179190
|
};
|
|
179191
|
+
export type MutationConfluence_ResumeSmartFolderSyncArgs = {
|
|
179192
|
+
cloudId: Scalars['ID']['input'];
|
|
179193
|
+
input: ConfluenceSmartFolderSyncControlInput;
|
|
179194
|
+
};
|
|
178384
179195
|
export type MutationConfluence_SendToDesktopArgs = {
|
|
178385
179196
|
cloudId: Scalars['ID']['input'];
|
|
178386
179197
|
input: ConfluenceSendToDesktopRequestInput;
|
|
@@ -178524,6 +179335,10 @@ export type MutationConfluence_UpdateCustomRoleArgs = {
|
|
|
178524
179335
|
cloudId: Scalars['ID']['input'];
|
|
178525
179336
|
input: ConfluenceUpdateCustomRoleInput;
|
|
178526
179337
|
};
|
|
179338
|
+
export type MutationConfluence_UpdateCwrRemixCreationConfigurationArgs = {
|
|
179339
|
+
cloudId: Scalars['ID']['input'];
|
|
179340
|
+
input: ConfluenceUpdateCwrRemixCreationConfigurationInput;
|
|
179341
|
+
};
|
|
178527
179342
|
export type MutationConfluence_UpdateDefaultTitleEmojiArgs = {
|
|
178528
179343
|
cloudId: Scalars['ID']['input'];
|
|
178529
179344
|
input: ConfluenceUpdateDefaultTitleEmojiInput;
|
|
@@ -179760,6 +180575,9 @@ export type MutationGraphIntegration_CreateDataConnectorConnectionArgs = {
|
|
|
179760
180575
|
export type MutationGraphIntegration_CreateSkillArgs = {
|
|
179761
180576
|
input: GraphIntegrationCreateSkillInput;
|
|
179762
180577
|
};
|
|
180578
|
+
export type MutationGraphIntegration_CreateSkillCloneLinkArgs = {
|
|
180579
|
+
input: GraphIntegrationCreateSkillCloneLinkInput;
|
|
180580
|
+
};
|
|
179763
180581
|
export type MutationGraphIntegration_CustomAuthDeleteArgs = {
|
|
179764
180582
|
input: GraphIntegrationCustomAuthDeleteInput;
|
|
179765
180583
|
};
|
|
@@ -180339,6 +181157,10 @@ export type MutationGravity_SetViewArrangementArgs = {
|
|
|
180339
181157
|
cloudId: Scalars['ID']['input'];
|
|
180340
181158
|
input: GravitySetViewArrangementInput;
|
|
180341
181159
|
};
|
|
181160
|
+
export type MutationGravity_StartAltaSessionArgs = {
|
|
181161
|
+
cloudId: Scalars['ID']['input'];
|
|
181162
|
+
input: GravityStartAltaSessionInput;
|
|
181163
|
+
};
|
|
180342
181164
|
export type MutationGravity_UpdateDeliverySettingsArgs = {
|
|
180343
181165
|
cloudId: Scalars['ID']['input'];
|
|
180344
181166
|
input: GravityUpdateDeliverySettingsInput;
|
|
@@ -180369,9 +181191,6 @@ export type MutationHardDeleteSpaceArgs = {
|
|
|
180369
181191
|
export type MutationHelpCenterArgs = {
|
|
180370
181192
|
cloudId: Scalars['ID']['input'];
|
|
180371
181193
|
};
|
|
180372
|
-
export type MutationHelpExternalResourceArgs = {
|
|
180373
|
-
cloudId: Scalars['ID']['input'];
|
|
180374
|
-
};
|
|
180375
181194
|
export type MutationHelpLayoutArgs = {
|
|
180376
181195
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
180377
181196
|
};
|
|
@@ -181069,6 +181888,11 @@ export type MutationJsmTelemetry_DeleteTelemetryConnectionArgs = {
|
|
|
181069
181888
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
181070
181889
|
input: JsmTelemetryDeleteTelemetryConnectionInput;
|
|
181071
181890
|
};
|
|
181891
|
+
export type MutationJsmTelemetry_DiscoverAndSaveIncidentServiceMetricsArgs = {
|
|
181892
|
+
cloudId: Scalars['ID']['input'];
|
|
181893
|
+
incidentId: Scalars['ID']['input'];
|
|
181894
|
+
input: JsmTelemetryIncidentServiceMetricDiscoverySaveInput;
|
|
181895
|
+
};
|
|
181072
181896
|
export type MutationJsmTelemetry_RemoveChartArgs = {
|
|
181073
181897
|
chartId: Scalars['ID']['input'];
|
|
181074
181898
|
cloudId: Scalars['ID']['input'];
|
|
@@ -181134,6 +181958,9 @@ export type MutationKitsune_CreateFieldArgs = {
|
|
|
181134
181958
|
valueType: KitsuneFieldValueType;
|
|
181135
181959
|
workspaceAri: Scalars['ID']['input'];
|
|
181136
181960
|
};
|
|
181961
|
+
export type MutationKitsune_CreateFieldV2Args = {
|
|
181962
|
+
input: KitsuneCreateFieldInput;
|
|
181963
|
+
};
|
|
181137
181964
|
export type MutationKitsune_CreateInsightArgs = {
|
|
181138
181965
|
content?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
181139
181966
|
externalId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -181142,6 +181969,9 @@ export type MutationKitsune_CreateInsightArgs = {
|
|
|
181142
181969
|
spaceAri: Scalars['ID']['input'];
|
|
181143
181970
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
181144
181971
|
};
|
|
181972
|
+
export type MutationKitsune_CreateInsightV2Args = {
|
|
181973
|
+
input: KitsuneCreateInsightInput;
|
|
181974
|
+
};
|
|
181145
181975
|
export type MutationKitsune_CreateOrganizationArgs = {
|
|
181146
181976
|
domainName?: InputMaybe<Scalars['String']['input']>;
|
|
181147
181977
|
name: Scalars['String']['input'];
|
|
@@ -181159,12 +181989,18 @@ export type MutationKitsune_CreateSectionArgs = {
|
|
|
181159
181989
|
name: Scalars['String']['input'];
|
|
181160
181990
|
spaceAri: Scalars['ID']['input'];
|
|
181161
181991
|
};
|
|
181992
|
+
export type MutationKitsune_CreateSectionV2Args = {
|
|
181993
|
+
input: KitsuneCreateSectionInput;
|
|
181994
|
+
};
|
|
181162
181995
|
export type MutationKitsune_CreateSnippetArgs = {
|
|
181163
181996
|
content: Array<Scalars['String']['input']>;
|
|
181164
181997
|
feedbackId: Scalars['ID']['input'];
|
|
181165
181998
|
insightId: Scalars['ID']['input'];
|
|
181166
181999
|
markId?: InputMaybe<Scalars['ID']['input']>;
|
|
181167
182000
|
};
|
|
182001
|
+
export type MutationKitsune_CreateSnippetV2Args = {
|
|
182002
|
+
input: KitsuneCreateSnippetInput;
|
|
182003
|
+
};
|
|
181168
182004
|
export type MutationKitsune_CreateSpaceArgs = {
|
|
181169
182005
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
181170
182006
|
name: Scalars['String']['input'];
|
|
@@ -181180,6 +182016,9 @@ export type MutationKitsune_CreateViewArgs = {
|
|
|
181180
182016
|
spaceAri: Scalars['ID']['input'];
|
|
181181
182017
|
type: KitsuneViewType;
|
|
181182
182018
|
};
|
|
182019
|
+
export type MutationKitsune_CreateViewV2Args = {
|
|
182020
|
+
input: KitsuneCreateViewInput;
|
|
182021
|
+
};
|
|
181183
182022
|
export type MutationKitsune_ExportFeedbackFromViewArgs = {
|
|
181184
182023
|
viewId: Scalars['ID']['input'];
|
|
181185
182024
|
workspaceAri: Scalars['ID']['input'];
|
|
@@ -181190,22 +182029,42 @@ export type MutationKitsune_GenerateFeedbackSummaryArgs = {
|
|
|
181190
182029
|
export type MutationKitsune_GenerateInsightSummaryArgs = {
|
|
181191
182030
|
insightAri: Scalars['ID']['input'];
|
|
181192
182031
|
};
|
|
182032
|
+
export type MutationKitsune_GenerateInsightSummaryV2Args = {
|
|
182033
|
+
input: KitsuneGenerateInsightSummaryInput;
|
|
182034
|
+
};
|
|
182035
|
+
export type MutationKitsune_InviteToSpaceArgs = {
|
|
182036
|
+
input: KitsuneInviteToSpaceInput;
|
|
182037
|
+
};
|
|
181193
182038
|
export type MutationKitsune_LinkInsightsToIdeaArgs = {
|
|
181194
182039
|
ideaAri: Scalars['ID']['input'];
|
|
181195
182040
|
insightIds: Array<Scalars['ID']['input']>;
|
|
181196
182041
|
};
|
|
182042
|
+
export type MutationKitsune_LinkInsightsToIdeaV2Args = {
|
|
182043
|
+
input: KitsuneLinkInsightsToIdeaInput;
|
|
182044
|
+
};
|
|
181197
182045
|
export type MutationKitsune_MoveSectionArgs = {
|
|
181198
182046
|
rank: KitsuneRankInput;
|
|
181199
182047
|
sectionAri: Scalars['ID']['input'];
|
|
181200
182048
|
};
|
|
182049
|
+
export type MutationKitsune_MoveSectionV2Args = {
|
|
182050
|
+
id: Scalars['ID']['input'];
|
|
182051
|
+
input: KitsuneMoveSectionInput;
|
|
182052
|
+
};
|
|
181201
182053
|
export type MutationKitsune_MoveViewArgs = {
|
|
181202
182054
|
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
181203
182055
|
rank?: InputMaybe<KitsuneRankInput>;
|
|
181204
182056
|
viewAri: Scalars['ID']['input'];
|
|
181205
182057
|
};
|
|
182058
|
+
export type MutationKitsune_MoveViewV2Args = {
|
|
182059
|
+
id: Scalars['ID']['input'];
|
|
182060
|
+
input: KitsuneMoveViewInput;
|
|
182061
|
+
};
|
|
181206
182062
|
export type MutationKitsune_RefreshInsightCountersArgs = {
|
|
181207
182063
|
workspaceAri: Scalars['ID']['input'];
|
|
181208
182064
|
};
|
|
182065
|
+
export type MutationKitsune_RefreshInsightCountersV2Args = {
|
|
182066
|
+
input: KitsuneRefreshInsightCountersInput;
|
|
182067
|
+
};
|
|
181209
182068
|
export type MutationKitsune_RemoveConnectorConfigArgs = {
|
|
181210
182069
|
id: Scalars['ID']['input'];
|
|
181211
182070
|
input: KitsuneRemoveConnectorConfigInput;
|
|
@@ -181223,13 +182082,26 @@ export type MutationKitsune_RemoveFeedbackArgs = {
|
|
|
181223
182082
|
export type MutationKitsune_RemoveFieldArgs = {
|
|
181224
182083
|
id: Scalars['ID']['input'];
|
|
181225
182084
|
};
|
|
182085
|
+
export type MutationKitsune_RemoveFieldV2Args = {
|
|
182086
|
+
id: Scalars['ID']['input'];
|
|
182087
|
+
};
|
|
181226
182088
|
export type MutationKitsune_RemoveFieldValueArgs = {
|
|
181227
182089
|
fieldValueId: Scalars['ID']['input'];
|
|
181228
182090
|
workspaceAri: Scalars['ID']['input'];
|
|
181229
182091
|
};
|
|
182092
|
+
export type MutationKitsune_RemoveFieldValueV2Args = {
|
|
182093
|
+
id: Scalars['ID']['input'];
|
|
182094
|
+
input: KitsuneRemoveFieldValueInput;
|
|
182095
|
+
};
|
|
182096
|
+
export type MutationKitsune_RemoveFromSpaceArgs = {
|
|
182097
|
+
input: KitsuneRemoveFromSpaceInput;
|
|
182098
|
+
};
|
|
181230
182099
|
export type MutationKitsune_RemoveInsightArgs = {
|
|
181231
182100
|
id: Scalars['ID']['input'];
|
|
181232
182101
|
};
|
|
182102
|
+
export type MutationKitsune_RemoveInsightV2Args = {
|
|
182103
|
+
id: Scalars['ID']['input'];
|
|
182104
|
+
};
|
|
181233
182105
|
export type MutationKitsune_RemoveOrganizationArgs = {
|
|
181234
182106
|
ari: Scalars['ID']['input'];
|
|
181235
182107
|
};
|
|
@@ -181240,15 +182112,24 @@ export type MutationKitsune_RemoveOrganizationFieldArgs = {
|
|
|
181240
182112
|
export type MutationKitsune_RemoveSectionArgs = {
|
|
181241
182113
|
sectionAri: Scalars['ID']['input'];
|
|
181242
182114
|
};
|
|
182115
|
+
export type MutationKitsune_RemoveSectionV2Args = {
|
|
182116
|
+
id: Scalars['ID']['input'];
|
|
182117
|
+
};
|
|
181243
182118
|
export type MutationKitsune_RemoveSnippetArgs = {
|
|
181244
182119
|
id: Scalars['ID']['input'];
|
|
181245
182120
|
};
|
|
182121
|
+
export type MutationKitsune_RemoveSnippetV2Args = {
|
|
182122
|
+
id: Scalars['ID']['input'];
|
|
182123
|
+
};
|
|
181246
182124
|
export type MutationKitsune_RemoveSpaceArgs = {
|
|
181247
182125
|
id: Scalars['ID']['input'];
|
|
181248
182126
|
};
|
|
181249
182127
|
export type MutationKitsune_RemoveViewArgs = {
|
|
181250
182128
|
viewAri: Scalars['ID']['input'];
|
|
181251
182129
|
};
|
|
182130
|
+
export type MutationKitsune_RemoveViewV2Args = {
|
|
182131
|
+
id: Scalars['ID']['input'];
|
|
182132
|
+
};
|
|
181252
182133
|
export type MutationKitsune_ResyncFeedbackArgs = {
|
|
181253
182134
|
dateRange?: InputMaybe<KitsuneDateRangeInput>;
|
|
181254
182135
|
rebuildEmbeddings?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -181257,6 +182138,9 @@ export type MutationKitsune_ResyncFeedbackArgs = {
|
|
|
181257
182138
|
export type MutationKitsune_ResyncInsightsArgs = {
|
|
181258
182139
|
workspaceAri: Scalars['ID']['input'];
|
|
181259
182140
|
};
|
|
182141
|
+
export type MutationKitsune_ResyncInsightsV2Args = {
|
|
182142
|
+
input: KitsuneResyncInsightsInput;
|
|
182143
|
+
};
|
|
181260
182144
|
export type MutationKitsune_SyncCsmPropertiesArgs = {
|
|
181261
182145
|
workspaceAri: Scalars['ID']['input'];
|
|
181262
182146
|
};
|
|
@@ -181299,6 +182183,10 @@ export type MutationKitsune_UpdateFieldArgs = {
|
|
|
181299
182183
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
181300
182184
|
options?: InputMaybe<KitsuneFieldOptionsInput>;
|
|
181301
182185
|
};
|
|
182186
|
+
export type MutationKitsune_UpdateFieldV2Args = {
|
|
182187
|
+
id: Scalars['ID']['input'];
|
|
182188
|
+
input: KitsuneUpdateFieldInput;
|
|
182189
|
+
};
|
|
181302
182190
|
export type MutationKitsune_UpdateInsightArgs = {
|
|
181303
182191
|
content?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
181304
182192
|
externalId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -181307,6 +182195,10 @@ export type MutationKitsune_UpdateInsightArgs = {
|
|
|
181307
182195
|
summaryContent?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
181308
182196
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
181309
182197
|
};
|
|
182198
|
+
export type MutationKitsune_UpdateInsightV2Args = {
|
|
182199
|
+
id: Scalars['ID']['input'];
|
|
182200
|
+
input: KitsuneUpdateInsightInput;
|
|
182201
|
+
};
|
|
181310
182202
|
export type MutationKitsune_UpdateOrganizationArgs = {
|
|
181311
182203
|
defaultCustomerId?: InputMaybe<Scalars['ID']['input']>;
|
|
181312
182204
|
domain?: InputMaybe<KitsuneOrganizationDomainInput>;
|
|
@@ -181328,11 +182220,19 @@ export type MutationKitsune_UpdateSectionArgs = {
|
|
|
181328
182220
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
181329
182221
|
sectionAri: Scalars['ID']['input'];
|
|
181330
182222
|
};
|
|
182223
|
+
export type MutationKitsune_UpdateSectionV2Args = {
|
|
182224
|
+
id: Scalars['ID']['input'];
|
|
182225
|
+
input: KitsuneUpdateSectionInput;
|
|
182226
|
+
};
|
|
181331
182227
|
export type MutationKitsune_UpdateSnippetArgs = {
|
|
181332
182228
|
content?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
181333
182229
|
id: Scalars['ID']['input'];
|
|
181334
182230
|
insightId?: InputMaybe<Scalars['ID']['input']>;
|
|
181335
182231
|
};
|
|
182232
|
+
export type MutationKitsune_UpdateSnippetV2Args = {
|
|
182233
|
+
id: Scalars['ID']['input'];
|
|
182234
|
+
input: KitsuneUpdateSnippetInput;
|
|
182235
|
+
};
|
|
181336
182236
|
export type MutationKitsune_UpdateSpaceArgs = {
|
|
181337
182237
|
accessLevel?: InputMaybe<KitsuneSpaceAccessLevel>;
|
|
181338
182238
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -181346,6 +182246,10 @@ export type MutationKitsune_UpdateViewArgs = {
|
|
|
181346
182246
|
id: Scalars['ID']['input'];
|
|
181347
182247
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
181348
182248
|
};
|
|
182249
|
+
export type MutationKitsune_UpdateViewV2Args = {
|
|
182250
|
+
id: Scalars['ID']['input'];
|
|
182251
|
+
input: KitsuneUpdateViewInput;
|
|
182252
|
+
};
|
|
181349
182253
|
export type MutationKnowledgeBaseArgs = {
|
|
181350
182254
|
cloudId: Scalars['ID']['input'];
|
|
181351
182255
|
};
|
|
@@ -181650,6 +182554,9 @@ export type MutationPlaybook_UpdateJiraPlaybookLabelArgs = {
|
|
|
181650
182554
|
export type MutationPlaybook_UpdateJiraPlaybookStateArgs = {
|
|
181651
182555
|
input: UpdateJiraPlaybookStateInput;
|
|
181652
182556
|
};
|
|
182557
|
+
export type MutationProcessCombinedAppBuildArgs = {
|
|
182558
|
+
input: ProcessCombinedAppBuildInput;
|
|
182559
|
+
};
|
|
181653
182560
|
export type MutationProjects_AddGoalLinkArgs = {
|
|
181654
182561
|
input: TownsquareProjectsAddGoalLink;
|
|
181655
182562
|
};
|
|
@@ -181972,14 +182879,6 @@ export type MutationRadar_UpdateWorkspaceSettingsArgs = {
|
|
|
181972
182879
|
cloudId: Scalars['ID']['input'];
|
|
181973
182880
|
input: RadarWorkspaceSettingsInput;
|
|
181974
182881
|
};
|
|
181975
|
-
export type MutationRadar_UpsertAiScopedBudgetPoliciesArgs = {
|
|
181976
|
-
cloudId: Scalars['ID']['input'];
|
|
181977
|
-
input: RadarUpsertAiScopedBudgetPoliciesInput;
|
|
181978
|
-
};
|
|
181979
|
-
export type MutationRadar_UpsertAiWorkspaceBudgetPolicyArgs = {
|
|
181980
|
-
cloudId: Scalars['ID']['input'];
|
|
181981
|
-
input: RadarUpsertAiWorkspaceBudgetPolicyInput;
|
|
181982
|
-
};
|
|
181983
182882
|
export type MutationRadar_UpsertLastAppliedFilterArgs = {
|
|
181984
182883
|
cloudId: Scalars['ID']['input'];
|
|
181985
182884
|
input: RadarLastAppliedFilterInput;
|
|
@@ -185240,6 +186139,84 @@ export type ProactiveAiStratusTestInsightsResponse = {
|
|
|
185240
186139
|
minionResults: Array<ProactiveAiStratusTestInsightsMinionResult>;
|
|
185241
186140
|
traceId: Scalars['String']['output'];
|
|
185242
186141
|
};
|
|
186142
|
+
export type ProactiveAiUserActionItem = {
|
|
186143
|
+
__typename?: 'ProactiveAiUserActionItem';
|
|
186144
|
+
assignee: Scalars['String']['output'];
|
|
186145
|
+
confidence: Scalars['Float']['output'];
|
|
186146
|
+
createdContext?: Maybe<Scalars['String']['output']>;
|
|
186147
|
+
firstDetectedAt: Scalars['String']['output'];
|
|
186148
|
+
handoff?: Maybe<ProactiveAiUserActionItemHandoff>;
|
|
186149
|
+
headline: Scalars['String']['output'];
|
|
186150
|
+
id: Scalars['ID']['output'];
|
|
186151
|
+
lastObservedAt: Scalars['String']['output'];
|
|
186152
|
+
linkedEvidence: Array<ProactiveAiUserActionItemEvidence>;
|
|
186153
|
+
source: ProactiveAiUserActionItemSource;
|
|
186154
|
+
state: ProactiveAiUserActionItemState;
|
|
186155
|
+
subtype: ProactiveAiUserActionItemSubtype;
|
|
186156
|
+
summary: Scalars['String']['output'];
|
|
186157
|
+
type: ProactiveAiUserActionItemType;
|
|
186158
|
+
};
|
|
186159
|
+
export type ProactiveAiUserActionItemEvidence = {
|
|
186160
|
+
__typename?: 'ProactiveAiUserActionItemEvidence';
|
|
186161
|
+
ari: Scalars['ID']['output'];
|
|
186162
|
+
confidence: Scalars['Float']['output'];
|
|
186163
|
+
url: Scalars['String']['output'];
|
|
186164
|
+
};
|
|
186165
|
+
export type ProactiveAiUserActionItemHandoff = {
|
|
186166
|
+
__typename?: 'ProactiveAiUserActionItemHandoff';
|
|
186167
|
+
goal: Scalars['String']['output'];
|
|
186168
|
+
guidance: Array<Scalars['String']['output']>;
|
|
186169
|
+
prompt: Scalars['String']['output'];
|
|
186170
|
+
};
|
|
186171
|
+
export declare enum ProactiveAiUserActionItemSource {
|
|
186172
|
+
GoogleTasks = "GOOGLE_TASKS",
|
|
186173
|
+
Inferred = "INFERRED",
|
|
186174
|
+
Jira = "JIRA",
|
|
186175
|
+
Jsm = "JSM",
|
|
186176
|
+
Other = "OTHER",
|
|
186177
|
+
Trello = "TRELLO"
|
|
186178
|
+
}
|
|
186179
|
+
export declare enum ProactiveAiUserActionItemState {
|
|
186180
|
+
Done = "DONE",
|
|
186181
|
+
Dropped = "DROPPED",
|
|
186182
|
+
InProgress = "IN_PROGRESS",
|
|
186183
|
+
Open = "OPEN"
|
|
186184
|
+
}
|
|
186185
|
+
export declare enum ProactiveAiUserActionItemSubtype {
|
|
186186
|
+
Decide = "DECIDE",
|
|
186187
|
+
Draft = "DRAFT",
|
|
186188
|
+
FollowUp = "FOLLOW_UP",
|
|
186189
|
+
Other = "OTHER",
|
|
186190
|
+
Prepare = "PREPARE",
|
|
186191
|
+
Reply = "REPLY",
|
|
186192
|
+
Review = "REVIEW",
|
|
186193
|
+
Send = "SEND"
|
|
186194
|
+
}
|
|
186195
|
+
export declare enum ProactiveAiUserActionItemType {
|
|
186196
|
+
ActionItem = "ACTION_ITEM"
|
|
186197
|
+
}
|
|
186198
|
+
export type ProactiveAiUserActionItemsGenerationResponse = {
|
|
186199
|
+
__typename?: 'ProactiveAiUserActionItemsGenerationResponse';
|
|
186200
|
+
available: Scalars['Boolean']['output'];
|
|
186201
|
+
generatedAt?: Maybe<Scalars['String']['output']>;
|
|
186202
|
+
jobId?: Maybe<Scalars['String']['output']>;
|
|
186203
|
+
};
|
|
186204
|
+
export type ProactiveAiUserActionItemsResponse = {
|
|
186205
|
+
__typename?: 'ProactiveAiUserActionItemsResponse';
|
|
186206
|
+
actionItems: Array<ProactiveAiUserActionItem>;
|
|
186207
|
+
generatedAt: Scalars['String']['output'];
|
|
186208
|
+
schemaVersion: Scalars['Int']['output'];
|
|
186209
|
+
};
|
|
186210
|
+
export type ProcessCombinedAppBuildInput = {
|
|
186211
|
+
appId: Scalars['ID']['input'];
|
|
186212
|
+
buildTag: Scalars['String']['input'];
|
|
186213
|
+
};
|
|
186214
|
+
export type ProcessCombinedAppBuildResponse = Payload & {
|
|
186215
|
+
__typename?: 'ProcessCombinedAppBuildResponse';
|
|
186216
|
+
buildTag?: Maybe<Scalars['String']['output']>;
|
|
186217
|
+
errors?: Maybe<Array<MutationError>>;
|
|
186218
|
+
success: Scalars['Boolean']['output'];
|
|
186219
|
+
};
|
|
185243
186220
|
export declare enum Product {
|
|
185244
186221
|
Confluence = "CONFLUENCE"
|
|
185245
186222
|
}
|
|
@@ -185321,12 +186298,21 @@ export type PsmActiveSensors = {
|
|
|
185321
186298
|
};
|
|
185322
186299
|
export type PsmActiveSensorsFilter = {
|
|
185323
186300
|
category?: InputMaybe<Scalars['String']['input']>;
|
|
186301
|
+
remediationCategories?: InputMaybe<Array<PsmRemediationCategory>>;
|
|
185324
186302
|
remediationModes?: InputMaybe<Array<PsmRemediationMode>>;
|
|
185325
186303
|
};
|
|
185326
186304
|
export declare enum PsmActorType {
|
|
185327
186305
|
System = "SYSTEM",
|
|
185328
186306
|
User = "USER"
|
|
185329
186307
|
}
|
|
186308
|
+
export type PsmAgent = {
|
|
186309
|
+
__typename?: 'PsmAgent';
|
|
186310
|
+
status: PsmAgentStatus;
|
|
186311
|
+
};
|
|
186312
|
+
export declare enum PsmAgentStatus {
|
|
186313
|
+
NotReporting = "NOT_REPORTING",
|
|
186314
|
+
Reporting = "REPORTING"
|
|
186315
|
+
}
|
|
185330
186316
|
export type PsmAuditActor = {
|
|
185331
186317
|
__typename?: 'PsmAuditActor';
|
|
185332
186318
|
accountId: Scalars['ID']['output'];
|
|
@@ -185458,8 +186444,11 @@ export declare enum PsmDeviceHealthStatus {
|
|
|
185458
186444
|
}
|
|
185459
186445
|
export type PsmDeviceIdentity = {
|
|
185460
186446
|
__typename?: 'PsmDeviceIdentity';
|
|
186447
|
+
configuration?: Maybe<PsmDeviceConfiguration>;
|
|
185461
186448
|
deviceName?: Maybe<Scalars['String']['output']>;
|
|
185462
186449
|
isDeviceOffline?: Maybe<Scalars['Boolean']['output']>;
|
|
186450
|
+
lastSeen?: Maybe<Scalars['DateTime']['output']>;
|
|
186451
|
+
owner?: Maybe<PsmDeviceOwner>;
|
|
185463
186452
|
serialNumber: Scalars['String']['output'];
|
|
185464
186453
|
};
|
|
185465
186454
|
export type PsmDeviceOwner = {
|
|
@@ -185483,6 +186472,21 @@ export declare enum PsmDeviceStatus {
|
|
|
185483
186472
|
Orphan = "ORPHAN",
|
|
185484
186473
|
Unmapped = "UNMAPPED"
|
|
185485
186474
|
}
|
|
186475
|
+
export type PsmEligibleUser = {
|
|
186476
|
+
__typename?: 'PsmEligibleUser';
|
|
186477
|
+
atlassianAccountId: Scalars['ID']['output'];
|
|
186478
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
186479
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
186480
|
+
psmAgent: PsmAgent;
|
|
186481
|
+
};
|
|
186482
|
+
export type PsmEligibleUsersListInput = {
|
|
186483
|
+
spaceId: Scalars['ID']['input'];
|
|
186484
|
+
};
|
|
186485
|
+
export type PsmEligibleUsersListResult = {
|
|
186486
|
+
__typename?: 'PsmEligibleUsersListResult';
|
|
186487
|
+
errors?: Maybe<Array<QueryError>>;
|
|
186488
|
+
users?: Maybe<Array<PsmEligibleUser>>;
|
|
186489
|
+
};
|
|
185486
186490
|
export type PsmFinishOnboardTenantInput = {
|
|
185487
186491
|
spaceId: Scalars['ID']['input'];
|
|
185488
186492
|
};
|
|
@@ -185559,6 +186563,16 @@ export type PsmRemediatedBy = {
|
|
|
185559
186563
|
kind?: Maybe<PsmActorType>;
|
|
185560
186564
|
name?: Maybe<Scalars['String']['output']>;
|
|
185561
186565
|
};
|
|
186566
|
+
export declare enum PsmRemediationCategory {
|
|
186567
|
+
Automatic = "AUTOMATIC",
|
|
186568
|
+
Manual = "MANUAL",
|
|
186569
|
+
UserPrompted = "USER_PROMPTED"
|
|
186570
|
+
}
|
|
186571
|
+
export type PsmRemediationCategoryInfo = {
|
|
186572
|
+
__typename?: 'PsmRemediationCategoryInfo';
|
|
186573
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
186574
|
+
value?: Maybe<PsmRemediationCategory>;
|
|
186575
|
+
};
|
|
185562
186576
|
export declare enum PsmRemediationMode {
|
|
185563
186577
|
AgentAction = "AGENT_ACTION",
|
|
185564
186578
|
Automated = "AUTOMATED"
|
|
@@ -185606,6 +186620,7 @@ export type PsmSensorConfig = {
|
|
|
185606
186620
|
description?: Maybe<Scalars['String']['output']>;
|
|
185607
186621
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
185608
186622
|
id: Scalars['ID']['output'];
|
|
186623
|
+
kbArticleAris?: Maybe<Array<Scalars['String']['output']>>;
|
|
185609
186624
|
name?: Maybe<Scalars['String']['output']>;
|
|
185610
186625
|
remediationType?: Maybe<PsmSensorRemediationType>;
|
|
185611
186626
|
sensorId?: Maybe<Scalars['String']['output']>;
|
|
@@ -185686,6 +186701,7 @@ export type PsmSensorTriggerState = {
|
|
|
185686
186701
|
lastRemediatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
185687
186702
|
lastRemediatedBy?: Maybe<PsmRemediatedBy>;
|
|
185688
186703
|
lastRemediationError?: Maybe<Scalars['String']['output']>;
|
|
186704
|
+
remediationCategory?: Maybe<PsmRemediationCategoryInfo>;
|
|
185689
186705
|
remediationMode?: Maybe<PsmRemediationMode>;
|
|
185690
186706
|
remediationStatus?: Maybe<PsmRemediationStatus>;
|
|
185691
186707
|
remediationType?: Maybe<PsmSensorRemediationType>;
|
|
@@ -186098,6 +187114,7 @@ export type Query = {
|
|
|
186098
187114
|
admin_breachingConnectionsForUnit?: Maybe<AdminBreachingConnectionsConnection>;
|
|
186099
187115
|
admin_checkLicensesCapacity?: Maybe<AdminCheckLicensesCapacity>;
|
|
186100
187116
|
admin_connectedAppInstallations?: Maybe<AdminConnectedResourcesConnection>;
|
|
187117
|
+
admin_domainClaims?: Maybe<AdminDomainClaimConnection>;
|
|
186101
187118
|
admin_effectiveRoleAssignmentsByPrincipal?: Maybe<AdminRoleAssignmentEffectiveConnection>;
|
|
186102
187119
|
admin_fetchConnectorFormData?: Maybe<AdminFormFieldConnection>;
|
|
186103
187120
|
admin_fetchConnectorFormEntities?: Maybe<AdminFormFieldConnection>;
|
|
@@ -186317,6 +187334,7 @@ export type Query = {
|
|
|
186317
187334
|
appSwitcher_unitProfile?: Maybe<AppSwitcherUnitProfileResult>;
|
|
186318
187335
|
apps?: Maybe<AppConnection>;
|
|
186319
187336
|
aquaOutgoingEmailLogs?: Maybe<AquaOutgoingEmailLogsQueryApi>;
|
|
187337
|
+
artifact_getArtifact?: Maybe<Artifact>;
|
|
186320
187338
|
assetsDM_adapters?: Maybe<AssetsDmAdapters>;
|
|
186321
187339
|
assetsDM_advisoryNotifications?: Maybe<AssetsDmAdvisoryNotificationsResponse>;
|
|
186322
187340
|
assetsDM_allCleansingRules?: Maybe<Array<AssetsDmDefFunction>>;
|
|
@@ -186635,6 +187653,7 @@ export type Query = {
|
|
|
186635
187653
|
confluence_getPlaylist?: Maybe<ConfluencePlaylist>;
|
|
186636
187654
|
confluence_getSmartContentFeatures?: Maybe<Array<Maybe<SmartPageFeatures>>>;
|
|
186637
187655
|
confluence_getTotalPendingContentAccessRequestsCount?: Maybe<Scalars['Int']['output']>;
|
|
187656
|
+
confluence_getTotalPendingSpaceAccessRequestsCount?: Maybe<Scalars['Int']['output']>;
|
|
186638
187657
|
confluence_getWacTemplate?: Maybe<ConfluenceWacTemplate>;
|
|
186639
187658
|
confluence_getWorkflowReviewByApplicationId?: Maybe<ConfluenceWorkflowReviewWithDecisionsPayload>;
|
|
186640
187659
|
confluence_hasClearPermissionForSpace?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -186718,6 +187737,7 @@ export type Query = {
|
|
|
186718
187737
|
confluence_spaceRoleMode?: Maybe<ConfluenceSpaceRoleMode>;
|
|
186719
187738
|
confluence_spaceWatchersUnfiltered?: Maybe<PaginatedPersonList>;
|
|
186720
187739
|
confluence_spacesByCombinationId?: Maybe<ConfluencePermissionTransitionSpaceConnection>;
|
|
187740
|
+
confluence_staticMacro?: Maybe<ConfluenceStaticMacroRendered>;
|
|
186721
187741
|
confluence_staticMacros?: Maybe<ConfluenceStaticMacroRenderedConnection>;
|
|
186722
187742
|
confluence_storage?: Maybe<ConfluenceStorage>;
|
|
186723
187743
|
confluence_subCalendarEmbedInfo?: Maybe<Array<Maybe<ConfluenceSubCalendarEmbedInfo>>>;
|
|
@@ -186793,6 +187813,7 @@ export type Query = {
|
|
|
186793
187813
|
cpls_getContributorContributionAggregations?: Maybe<CplsContributorContributionAggregationsResult>;
|
|
186794
187814
|
cpls_getContributorScopeAssociations?: Maybe<CplsContributorScopeAssociationConnection>;
|
|
186795
187815
|
cpls_getContributorWorkAssociations?: Maybe<CplsContributorWorkAssociationConnection>;
|
|
187816
|
+
cpls_getWorkContributionAggregations?: Maybe<CplsWorkContributionAggregationsResult>;
|
|
186796
187817
|
cpls_peopleView?: Maybe<CplsPeopleView>;
|
|
186797
187818
|
cpls_recommendWork?: Maybe<CplsWorkRecommendations>;
|
|
186798
187819
|
cpls_recommendWorkForContributor?: Maybe<CplsWorkRecommendations>;
|
|
@@ -187005,6 +188026,7 @@ export type Query = {
|
|
|
187005
188026
|
goals_byIds?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
187006
188027
|
goals_byKey?: Maybe<TownsquareGoal>;
|
|
187007
188028
|
goals_capabilities?: Maybe<TownsquareGoalAppCapabilities>;
|
|
188029
|
+
goals_customFieldDefinitionSearch?: Maybe<TownsquareCustomFieldDefinitionConnection>;
|
|
187008
188030
|
goals_directoryViewById?: Maybe<TownsquareDirectoryView>;
|
|
187009
188031
|
goals_directoryViewSearch?: Maybe<TownsquareDirectoryViewConnection>;
|
|
187010
188032
|
goals_explainSearch?: Maybe<TownsquareSearchExplanation>;
|
|
@@ -187041,6 +188063,7 @@ export type Query = {
|
|
|
187041
188063
|
graphInference_inferenceModels?: Maybe<GraphInferenceInferenceModelsResponse>;
|
|
187042
188064
|
graphInference_inferenceQualityMetrics?: Maybe<GraphInferenceInferenceQualityMetricsResponse>;
|
|
187043
188065
|
graphInference_inferredProjectMe?: Maybe<GraphInferenceInferredProjectMeResponse>;
|
|
188066
|
+
graphInference_inferredProjectSummaries?: Maybe<GraphInferenceInferredProjectSummariesResponse>;
|
|
187044
188067
|
graphIntegration_availableTwgCapabilityContainers?: Maybe<Array<Maybe<GraphIntegrationTwgCapabilityContainerMeta>>>;
|
|
187045
188068
|
graphIntegration_componentDirectoryDimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
|
|
187046
188069
|
graphIntegration_componentDirectoryItems?: Maybe<GraphIntegrationDirectoryItemConnection>;
|
|
@@ -187064,6 +188087,7 @@ export type Query = {
|
|
|
187064
188087
|
graphIntegration_skillDimensionMetadata?: Maybe<GraphIntegrationSkillDimensionMetadata>;
|
|
187065
188088
|
graphIntegration_skillItems?: Maybe<Array<Maybe<GraphIntegrationSkillItem>>>;
|
|
187066
188089
|
graphIntegration_twgCapabilityContainer?: Maybe<GraphIntegrationTwgCapabilityContainer>;
|
|
188090
|
+
graphIntegration_twgCapabilityContainerTools?: Maybe<Array<GraphIntegrationActionAdminManagementActionNode>>;
|
|
187067
188091
|
graphIntegration_twgCapabilityContainersInContext?: Maybe<GraphIntegrationTwgCapabilityContainerConnection>;
|
|
187068
188092
|
graphIntegration_twgPlatformCapabilityGlobalAdminSettings?: Maybe<GraphIntegrationTwgPlatformCapabilityGlobalAdminSettings>;
|
|
187069
188093
|
graphIntegration_twgProductAdminSettings?: Maybe<GraphIntegrationTwgProductAdminSettings>;
|
|
@@ -189139,6 +190163,8 @@ export type Query = {
|
|
|
189139
190163
|
graphStore_userViewedGoalUpdateInverse?: Maybe<GraphStoreSimplifiedUserViewedGoalUpdateInverseConnection>;
|
|
189140
190164
|
graphStore_userViewedGoalUpdateInverseBatch?: Maybe<GraphStoreBatchUserViewedGoalUpdateConnection>;
|
|
189141
190165
|
graphStore_userViewedJiraIssue?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueConnection>;
|
|
190166
|
+
graphStore_userViewedJiraIssueAnalyticsTest?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueAnalyticsTestConnection>;
|
|
190167
|
+
graphStore_userViewedJiraIssueAnalyticsTestInverse?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueAnalyticsTestInverseConnection>;
|
|
189142
190168
|
graphStore_userViewedJiraIssueInverse?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueInverseConnection>;
|
|
189143
190169
|
graphStore_userViewedProjectUpdate?: Maybe<GraphStoreSimplifiedUserViewedProjectUpdateConnection>;
|
|
189144
190170
|
graphStore_userViewedProjectUpdateBatch?: Maybe<GraphStoreBatchUserViewedProjectUpdateConnection>;
|
|
@@ -189207,6 +190233,7 @@ export type Query = {
|
|
|
189207
190233
|
graphStore_vulnerabilityAssociatedIssueRelationship?: Maybe<GraphStoreFullVulnerabilityAssociatedIssueConnection>;
|
|
189208
190234
|
graphStore_workerAssociatedExternalWorker?: Maybe<GraphStoreSimplifiedWorkerAssociatedExternalWorkerConnection>;
|
|
189209
190235
|
graphStore_workerAssociatedExternalWorkerInverse?: Maybe<GraphStoreSimplifiedWorkerAssociatedExternalWorkerInverseConnection>;
|
|
190236
|
+
gravity_canCreateViewsFromTemplates?: Maybe<GravityCanCreateViewsFromTemplatesResult>;
|
|
189210
190237
|
gravity_deliverySettings?: Maybe<GravityDeliverySettingsResult>;
|
|
189211
190238
|
gravity_detailedReaction?: Maybe<GravityDetailedReactionResult>;
|
|
189212
190239
|
gravity_draft?: Maybe<GravityDraft>;
|
|
@@ -189236,7 +190263,6 @@ export type Query = {
|
|
|
189236
190263
|
hasUserAccessAdminRole?: Maybe<Scalars['Boolean']['output']>;
|
|
189237
190264
|
hasUserCommented?: Maybe<Scalars['Boolean']['output']>;
|
|
189238
190265
|
helpCenter?: Maybe<HelpCenterQueryApi>;
|
|
189239
|
-
helpExternalResource?: Maybe<HelpExternalResourceQueryApi>;
|
|
189240
190266
|
helpLayout?: Maybe<HelpLayoutQueryApi>;
|
|
189241
190267
|
helpObjectStore?: Maybe<HelpObjectStoreQueryApi>;
|
|
189242
190268
|
helpObjectStore_searchArticles?: Maybe<HelpObjectStoreArticleSearchResponse>;
|
|
@@ -189308,7 +190334,10 @@ export type Query = {
|
|
|
189308
190334
|
jira_isTenantConvertedToNfa?: Maybe<Scalars['Boolean']['output']>;
|
|
189309
190335
|
jira_issueCreateAdditionalServices?: Maybe<JiraIssueCreateAdditionalServicesResult>;
|
|
189310
190336
|
jira_issueCreateFields?: Maybe<JiraIssueCreateFieldsResult>;
|
|
190337
|
+
jira_issueCreateFieldsInContext?: Maybe<JiraIssueCreateFieldsResult>;
|
|
189311
190338
|
jira_issueCreateLayout?: Maybe<JiraIssueCreateLayoutResult>;
|
|
190339
|
+
jira_issueCreateLayoutInContext?: Maybe<JiraIssueCreateLayoutResult>;
|
|
190340
|
+
jira_issueCreateLayoutInContextWithML?: Maybe<JiraIssueCreateLayoutResult>;
|
|
189312
190341
|
jira_issueCreateLayoutWithML?: Maybe<JiraIssueCreateLayoutResult>;
|
|
189313
190342
|
jira_issueSearchTopLevelIssueFieldsAggregation?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
189314
190343
|
jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
|
|
@@ -189376,6 +190405,8 @@ export type Query = {
|
|
|
189376
190405
|
jsmTelemetry_chartData?: Maybe<JsmTelemetryChartDataResult>;
|
|
189377
190406
|
jsmTelemetry_dashboard?: Maybe<JsmTelemetryDashboardResult>;
|
|
189378
190407
|
jsmTelemetry_dashboardByScope?: Maybe<JsmTelemetryDashboardData>;
|
|
190408
|
+
jsmTelemetry_discoverAllIncidentServiceMetrics?: Maybe<JsmTelemetryIncidentServiceMetricDiscoveryAllResult>;
|
|
190409
|
+
jsmTelemetry_discoverIncidentServiceMetrics?: Maybe<JsmTelemetryIncidentServiceMetricDiscoveryResult>;
|
|
189379
190410
|
jsmTelemetry_getIncidentContext?: Maybe<JsmTelemetryIncidentContextResult>;
|
|
189380
190411
|
jsmTelemetry_getMetricAttributeValues?: Maybe<JsmTelemetryMetricAttributeValuesResult>;
|
|
189381
190412
|
jsmTelemetry_getMetricAttributes?: Maybe<JsmTelemetryMetricAttributesResult>;
|
|
@@ -189459,6 +190490,7 @@ export type Query = {
|
|
|
189459
190490
|
loom_joinableWorkspaces?: Maybe<Array<Maybe<LoomJoinableWorkspace>>>;
|
|
189460
190491
|
loom_meeting?: Maybe<LoomMeeting>;
|
|
189461
190492
|
loom_meetingActionItems?: Maybe<Array<Maybe<LoomMeetingActionItem>>>;
|
|
190493
|
+
loom_meetingJiraSuggestion?: Maybe<LoomMeetingJiraSuggestion>;
|
|
189462
190494
|
loom_meetingRecurrence?: Maybe<LoomMeetingRecurrence>;
|
|
189463
190495
|
loom_meetingRecurrences?: Maybe<Array<Maybe<LoomMeetingRecurrence>>>;
|
|
189464
190496
|
loom_meetings?: Maybe<Array<Maybe<LoomMeeting>>>;
|
|
@@ -189480,7 +190512,6 @@ export type Query = {
|
|
|
189480
190512
|
loom_workspace?: Maybe<LoomWorkspace>;
|
|
189481
190513
|
loom_workspaceTrendingVideos?: Maybe<Array<Maybe<LoomVideo>>>;
|
|
189482
190514
|
loom_workspaces?: Maybe<Array<Maybe<LoomWorkspace>>>;
|
|
189483
|
-
lpLearnerData?: Maybe<LpLearnerData>;
|
|
189484
190515
|
m360Service_helloWorld?: Maybe<M360ServiceHelloWorldPayload>;
|
|
189485
190516
|
macroBodyRenderer?: Maybe<MacroBody>;
|
|
189486
190517
|
macros?: Maybe<MacroConnection>;
|
|
@@ -189502,6 +190533,7 @@ export type Query = {
|
|
|
189502
190533
|
marketplaceStore_productTagsV2?: Maybe<Array<Maybe<MarketplaceStoreProductTag>>>;
|
|
189503
190534
|
marketplaceStore_recommendationsSectionV2?: Maybe<MarketplaceStoreRecommendationsSection>;
|
|
189504
190535
|
marketplaceStore_reviewSummaryV2?: Maybe<MarketplaceStoreReviewSummaryResponse>;
|
|
190536
|
+
marketplaceStore_similarObjects?: Maybe<MarketplaceStoreSimilarObjectsResponse>;
|
|
189505
190537
|
me: AuthenticationContext;
|
|
189506
190538
|
mediaConfiguration?: Maybe<MediaConfiguration>;
|
|
189507
190539
|
media_items?: Maybe<Array<MediaItem>>;
|
|
@@ -189593,6 +190625,8 @@ export type Query = {
|
|
|
189593
190625
|
popularFeed?: Maybe<PaginatedPopularFeed>;
|
|
189594
190626
|
postOffice_getMessages?: Maybe<PostOfficeEnrichedMessagePayload>;
|
|
189595
190627
|
postOffice_placeholder?: Maybe<Scalars['String']['output']>;
|
|
190628
|
+
proactiveAi_generateUserActions?: Maybe<ProactiveAiUserActionItemsGenerationResponse>;
|
|
190629
|
+
proactiveAi_retrieveUserActions?: Maybe<ProactiveAiUserActionItemsResponse>;
|
|
189596
190630
|
proactiveAi_rovoInsightsData?: Maybe<ProactiveAiRovoInsightsDataResponse>;
|
|
189597
190631
|
proactiveAi_rovoInsightsStatus?: Maybe<ProactiveAiRovoInsightsStatusResponse>;
|
|
189598
190632
|
proactiveAi_stratusTestInsights?: Maybe<ProactiveAiStratusTestInsightsResponse>;
|
|
@@ -189628,6 +190662,7 @@ export type Query = {
|
|
|
189628
190662
|
psm_dashboardOverview?: Maybe<PsmDashboardOverview>;
|
|
189629
190663
|
psm_device?: Maybe<PsmDevice>;
|
|
189630
190664
|
psm_devices?: Maybe<PsmDeviceConnection>;
|
|
190665
|
+
psm_eligibleUsersList?: Maybe<PsmEligibleUsersListResult>;
|
|
189631
190666
|
psm_onboardTenantStatus?: Maybe<PsmOnboardTenantStatusResult>;
|
|
189632
190667
|
psm_sensorCategories?: Maybe<PsmSensorCategoriesResult>;
|
|
189633
190668
|
psm_sensorDetails?: Maybe<PsmSensorConfigResult>;
|
|
@@ -189647,8 +190682,6 @@ export type Query = {
|
|
|
189647
190682
|
quickReload?: Maybe<QuickReload>;
|
|
189648
190683
|
radar_aiConnectorById?: Maybe<RadarAiConnector>;
|
|
189649
190684
|
radar_aiConnectors?: Maybe<RadarAiConnectorsConnection>;
|
|
189650
|
-
radar_aiScopedBudgetPolicies?: Maybe<RadarAiScopedBudgetPolicyConnection>;
|
|
189651
|
-
radar_aiWorkspaceBudgetPolicy?: Maybe<RadarAiWorkspaceBudgetPolicy>;
|
|
189652
190685
|
radar_availableCustomFieldsFromLastSync?: Maybe<RadarAvailableCustomFieldsFromLastSync>;
|
|
189653
190686
|
radar_benchmarks?: Maybe<Array<RadarMetricSettings>>;
|
|
189654
190687
|
radar_connectors?: Maybe<Array<RadarConnector>>;
|
|
@@ -189901,6 +190934,7 @@ export type Query = {
|
|
|
189901
190934
|
users?: Maybe<Array<User>>;
|
|
189902
190935
|
usersWithContentRestrictions?: Maybe<Array<Maybe<UserWithRestrictions>>>;
|
|
189903
190936
|
uts_allowanceExemptions?: Maybe<UtsAllowanceExemptionList>;
|
|
190937
|
+
uts_allowancePoolsByOwner?: Maybe<Array<Maybe<UtsAllowancePool>>>;
|
|
189904
190938
|
uts_meterConfiguration?: Maybe<UtsMeterConfiguration>;
|
|
189905
190939
|
uts_usageAlerts?: Maybe<Array<Maybe<UtsUsageAlert>>>;
|
|
189906
190940
|
validateConvertPageToLiveEdit?: Maybe<ConvertPageToLiveEditValidationResult>;
|
|
@@ -189990,6 +191024,7 @@ export type QueryAdmin_AuditLogEventIpAddressesArgs = {
|
|
|
189990
191024
|
filter?: InputMaybe<Scalars['String']['input']>;
|
|
189991
191025
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
189992
191026
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
191027
|
+
queryId?: InputMaybe<Scalars['String']['input']>;
|
|
189993
191028
|
};
|
|
189994
191029
|
export type QueryAdmin_AuditLogEventLocationsArgs = {
|
|
189995
191030
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -189998,6 +191033,7 @@ export type QueryAdmin_AuditLogEventLocationsArgs = {
|
|
|
189998
191033
|
filter?: InputMaybe<Scalars['String']['input']>;
|
|
189999
191034
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
190000
191035
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
191036
|
+
queryId?: InputMaybe<Scalars['String']['input']>;
|
|
190001
191037
|
};
|
|
190002
191038
|
export type QueryAdmin_AuditLogEventsArgs = {
|
|
190003
191039
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -190043,6 +191079,11 @@ export type QueryAdmin_ConnectedAppInstallationsArgs = {
|
|
|
190043
191079
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
190044
191080
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
190045
191081
|
};
|
|
191082
|
+
export type QueryAdmin_DomainClaimsArgs = {
|
|
191083
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
191084
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
191085
|
+
orgId: Scalars['ID']['input'];
|
|
191086
|
+
};
|
|
190046
191087
|
export type QueryAdmin_EffectiveRoleAssignmentsByPrincipalArgs = {
|
|
190047
191088
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
190048
191089
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -190708,6 +191749,7 @@ export type QueryAgentWorkspace_DraftedRoutingTableStatusArgs = {
|
|
|
190708
191749
|
};
|
|
190709
191750
|
export type QueryAgentWorkspace_DraftedTeamRoutingTableEntriesArgs = {
|
|
190710
191751
|
cloudId: Scalars['ID']['input'];
|
|
191752
|
+
draftId?: InputMaybe<Scalars['ID']['input']>;
|
|
190711
191753
|
projectKey: Scalars['String']['input'];
|
|
190712
191754
|
};
|
|
190713
191755
|
export type QueryAgentWorkspace_EligibleGroupsArgs = {
|
|
@@ -191207,6 +192249,9 @@ export type QueryAppsArgs = {
|
|
|
191207
192249
|
export type QueryAquaOutgoingEmailLogsArgs = {
|
|
191208
192250
|
cloudId: Scalars['ID']['input'];
|
|
191209
192251
|
};
|
|
192252
|
+
export type QueryArtifact_GetArtifactArgs = {
|
|
192253
|
+
id: Scalars['ID']['input'];
|
|
192254
|
+
};
|
|
191210
192255
|
export type QueryAssetsDm_AdaptersArgs = {
|
|
191211
192256
|
cloudId: Scalars['ID']['input'];
|
|
191212
192257
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -192703,6 +193748,9 @@ export type QueryConfluence_GetSmartContentFeaturesArgs = {
|
|
|
192703
193748
|
export type QueryConfluence_GetTotalPendingContentAccessRequestsCountArgs = {
|
|
192704
193749
|
cloudId: Scalars['ID']['input'];
|
|
192705
193750
|
};
|
|
193751
|
+
export type QueryConfluence_GetTotalPendingSpaceAccessRequestsCountArgs = {
|
|
193752
|
+
cloudId: Scalars['ID']['input'];
|
|
193753
|
+
};
|
|
192706
193754
|
export type QueryConfluence_GetWacTemplateArgs = {
|
|
192707
193755
|
cloudId: Scalars['ID']['input'];
|
|
192708
193756
|
};
|
|
@@ -193106,6 +194154,12 @@ export type QueryConfluence_SpacesByCombinationIdArgs = {
|
|
|
193106
194154
|
spaceSelection?: InputMaybe<ConfluencePermissionTransitionSpaceTargetSelectionInput>;
|
|
193107
194155
|
spaceTypeFilters?: InputMaybe<Array<InputMaybe<ConfluencePermissionTransitionSpaceTypeFilter>>>;
|
|
193108
194156
|
};
|
|
194157
|
+
export type QueryConfluence_StaticMacroArgs = {
|
|
194158
|
+
cloudId: Scalars['ID']['input'];
|
|
194159
|
+
contentId: Scalars['ID']['input'];
|
|
194160
|
+
localId: Scalars['String']['input'];
|
|
194161
|
+
mode?: InputMaybe<MacroRendererMode>;
|
|
194162
|
+
};
|
|
193109
194163
|
export type QueryConfluence_StaticMacrosArgs = {
|
|
193110
194164
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
193111
194165
|
cloudId: Scalars['ID']['input'];
|
|
@@ -193523,6 +194577,9 @@ export type QueryCpls_GetContributorScopeAssociationsArgs = {
|
|
|
193523
194577
|
export type QueryCpls_GetContributorWorkAssociationsArgs = {
|
|
193524
194578
|
input: CplsGetContributorWorkAssociationsInput;
|
|
193525
194579
|
};
|
|
194580
|
+
export type QueryCpls_GetWorkContributionAggregationsArgs = {
|
|
194581
|
+
input: CplsGetWorkContributionAggregationsInput;
|
|
194582
|
+
};
|
|
193526
194583
|
export type QueryCpls_PeopleViewArgs = {
|
|
193527
194584
|
filters?: InputMaybe<CplsFiltersInput>;
|
|
193528
194585
|
id: Scalars['ID']['input'];
|
|
@@ -193982,6 +195039,7 @@ export type QueryDevai_AutodevNextWorkstreamTasksArgs = {
|
|
|
193982
195039
|
export type QueryDevai_AutodevNextWorkstreamsArgs = {
|
|
193983
195040
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
193984
195041
|
cloudId: Scalars['ID']['input'];
|
|
195042
|
+
filter?: InputMaybe<DevAiAutodevNextWorkstreamFilter>;
|
|
193985
195043
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
193986
195044
|
};
|
|
193987
195045
|
export type QueryDevai_AutodevRovoAgentsArgs = {
|
|
@@ -194424,6 +195482,13 @@ export type QueryGoals_ByKeyArgs = {
|
|
|
194424
195482
|
export type QueryGoals_CapabilitiesArgs = {
|
|
194425
195483
|
containerId: Scalars['ID']['input'];
|
|
194426
195484
|
};
|
|
195485
|
+
export type QueryGoals_CustomFieldDefinitionSearchArgs = {
|
|
195486
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
195487
|
+
containerId: Scalars['ID']['input'];
|
|
195488
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
195489
|
+
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
195490
|
+
sort?: InputMaybe<Array<InputMaybe<TownsquareCustomFieldSortEnum>>>;
|
|
195491
|
+
};
|
|
194427
195492
|
export type QueryGoals_DirectoryViewByIdArgs = {
|
|
194428
195493
|
containerId: Scalars['ID']['input'];
|
|
194429
195494
|
directoryId: Scalars['ID']['input'];
|
|
@@ -194651,6 +195716,10 @@ export type QueryGraphIntegration_TwgCapabilityContainerArgs = {
|
|
|
194651
195716
|
contextAri: Scalars['ID']['input'];
|
|
194652
195717
|
id: Scalars['String']['input'];
|
|
194653
195718
|
};
|
|
195719
|
+
export type QueryGraphIntegration_TwgCapabilityContainerToolsArgs = {
|
|
195720
|
+
contextAri: Scalars['ID']['input'];
|
|
195721
|
+
productAri: Scalars['ID']['input'];
|
|
195722
|
+
};
|
|
194654
195723
|
export type QueryGraphIntegration_TwgCapabilityContainersInContextArgs = {
|
|
194655
195724
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
194656
195725
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -210088,6 +211157,22 @@ export type QueryGraphStore_UserViewedJiraIssueArgs = {
|
|
|
210088
211157
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
210089
211158
|
sort?: InputMaybe<GraphStoreUserViewedJiraIssueSortInput>;
|
|
210090
211159
|
};
|
|
211160
|
+
export type QueryGraphStore_UserViewedJiraIssueAnalyticsTestArgs = {
|
|
211161
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
211162
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
211163
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
211164
|
+
id: Scalars['ID']['input'];
|
|
211165
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
211166
|
+
sort?: InputMaybe<GraphStoreUserViewedJiraIssueAnalyticsTestSortInput>;
|
|
211167
|
+
};
|
|
211168
|
+
export type QueryGraphStore_UserViewedJiraIssueAnalyticsTestInverseArgs = {
|
|
211169
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
211170
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
211171
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
211172
|
+
id: Scalars['ID']['input'];
|
|
211173
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
211174
|
+
sort?: InputMaybe<GraphStoreUserViewedJiraIssueAnalyticsTestSortInput>;
|
|
211175
|
+
};
|
|
210091
211176
|
export type QueryGraphStore_UserViewedJiraIssueInverseArgs = {
|
|
210092
211177
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
210093
211178
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -210592,6 +211677,11 @@ export type QueryGraphStore_WorkerAssociatedExternalWorkerInverseArgs = {
|
|
|
210592
211677
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
210593
211678
|
sort?: InputMaybe<GraphStoreWorkerAssociatedExternalWorkerSortInput>;
|
|
210594
211679
|
};
|
|
211680
|
+
export type QueryGravity_CanCreateViewsFromTemplatesArgs = {
|
|
211681
|
+
cloudId: Scalars['ID']['input'];
|
|
211682
|
+
projectId: Scalars['ID']['input'];
|
|
211683
|
+
templates: Array<GravityCanCreateViewFromTemplateInput>;
|
|
211684
|
+
};
|
|
210595
211685
|
export type QueryGravity_DeliverySettingsArgs = {
|
|
210596
211686
|
cloudId: Scalars['ID']['input'];
|
|
210597
211687
|
projectId: Scalars['ID']['input'];
|
|
@@ -210703,9 +211793,6 @@ export type QueryHasUserCommentedArgs = {
|
|
|
210703
211793
|
export type QueryHelpCenterArgs = {
|
|
210704
211794
|
cloudId: Scalars['ID']['input'];
|
|
210705
211795
|
};
|
|
210706
|
-
export type QueryHelpExternalResourceArgs = {
|
|
210707
|
-
cloudId: Scalars['ID']['input'];
|
|
210708
|
-
};
|
|
210709
211796
|
export type QueryHelpLayoutArgs = {
|
|
210710
211797
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
210711
211798
|
};
|
|
@@ -210985,6 +212072,21 @@ export type QueryJira_IssueCreateFieldsArgs = {
|
|
|
210985
212072
|
project?: InputMaybe<JiraProjectInput>;
|
|
210986
212073
|
requestType?: InputMaybe<JiraRequestTypeInput>;
|
|
210987
212074
|
};
|
|
212075
|
+
export type QueryJira_IssueCreateFieldsInContextArgs = {
|
|
212076
|
+
additionalContext: JiraIssueCreateContextInput;
|
|
212077
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
212078
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
212079
|
+
cloudId: Scalars['ID']['input'];
|
|
212080
|
+
defaultValues?: InputMaybe<JiraIssueFieldsInput>;
|
|
212081
|
+
evaluateMiniMode?: InputMaybe<Scalars['Boolean']['input']>;
|
|
212082
|
+
fieldsFilter?: InputMaybe<JiraIssueCreateFieldsFilter>;
|
|
212083
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
212084
|
+
issueCreateType?: InputMaybe<JiraIssueCreateTypeFilter>;
|
|
212085
|
+
issueType?: InputMaybe<JiraIssueTypeInput>;
|
|
212086
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
212087
|
+
project?: InputMaybe<JiraProjectInput>;
|
|
212088
|
+
requestType?: InputMaybe<JiraRequestTypeInput>;
|
|
212089
|
+
};
|
|
210988
212090
|
export type QueryJira_IssueCreateLayoutArgs = {
|
|
210989
212091
|
cloudId: Scalars['ID']['input'];
|
|
210990
212092
|
issueType?: InputMaybe<JiraIssueTypeInput>;
|
|
@@ -210993,6 +212095,24 @@ export type QueryJira_IssueCreateLayoutArgs = {
|
|
|
210993
212095
|
requestType?: InputMaybe<JiraRequestTypeInput>;
|
|
210994
212096
|
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
210995
212097
|
};
|
|
212098
|
+
export type QueryJira_IssueCreateLayoutInContextArgs = {
|
|
212099
|
+
additionalContext: JiraIssueCreateContextInput;
|
|
212100
|
+
cloudId: Scalars['ID']['input'];
|
|
212101
|
+
issueCreateType?: InputMaybe<JiraIssueCreateTypeFilter>;
|
|
212102
|
+
issueType?: InputMaybe<JiraIssueTypeInput>;
|
|
212103
|
+
layoutFilter?: InputMaybe<JiraIssueCreateLayoutFilter>;
|
|
212104
|
+
project?: InputMaybe<JiraProjectInput>;
|
|
212105
|
+
requestType?: InputMaybe<JiraRequestTypeInput>;
|
|
212106
|
+
};
|
|
212107
|
+
export type QueryJira_IssueCreateLayoutInContextWithMlArgs = {
|
|
212108
|
+
additionalContext: JiraIssueCreateContextInput;
|
|
212109
|
+
cloudId: Scalars['ID']['input'];
|
|
212110
|
+
issueCreateType?: InputMaybe<JiraIssueCreateTypeFilter>;
|
|
212111
|
+
issueType?: InputMaybe<JiraIssueTypeInput>;
|
|
212112
|
+
layoutFilter?: InputMaybe<JiraIssueCreateLayoutFilter>;
|
|
212113
|
+
project?: InputMaybe<JiraProjectInput>;
|
|
212114
|
+
requestType?: InputMaybe<JiraRequestTypeInput>;
|
|
212115
|
+
};
|
|
210996
212116
|
export type QueryJira_IssueCreateLayoutWithMlArgs = {
|
|
210997
212117
|
cloudId: Scalars['ID']['input'];
|
|
210998
212118
|
issueType?: InputMaybe<JiraIssueTypeInput>;
|
|
@@ -211283,6 +212403,16 @@ export type QueryJsmTelemetry_DashboardByScopeArgs = {
|
|
|
211283
212403
|
scopeId: Scalars['String']['input'];
|
|
211284
212404
|
scopeType: JsmTelemetryScopeType;
|
|
211285
212405
|
};
|
|
212406
|
+
export type QueryJsmTelemetry_DiscoverAllIncidentServiceMetricsArgs = {
|
|
212407
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
212408
|
+
incidentId: Scalars['ID']['input'];
|
|
212409
|
+
input: JsmTelemetryIncidentServiceMetricDiscoveryAllInput;
|
|
212410
|
+
};
|
|
212411
|
+
export type QueryJsmTelemetry_DiscoverIncidentServiceMetricsArgs = {
|
|
212412
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
212413
|
+
incidentId: Scalars['ID']['input'];
|
|
212414
|
+
input: JsmTelemetryIncidentServiceMetricDiscoveryInput;
|
|
212415
|
+
};
|
|
211286
212416
|
export type QueryJsmTelemetry_GetIncidentContextArgs = {
|
|
211287
212417
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
211288
212418
|
incidentId: Scalars['ID']['input'];
|
|
@@ -211615,6 +212745,10 @@ export type QueryLoom_MeetingArgs = {
|
|
|
211615
212745
|
export type QueryLoom_MeetingActionItemsArgs = {
|
|
211616
212746
|
id: Scalars['ID']['input'];
|
|
211617
212747
|
};
|
|
212748
|
+
export type QueryLoom_MeetingJiraSuggestionArgs = {
|
|
212749
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
212750
|
+
videoId: Scalars['ID']['input'];
|
|
212751
|
+
};
|
|
211618
212752
|
export type QueryLoom_MeetingRecurrenceArgs = {
|
|
211619
212753
|
id: Scalars['ID']['input'];
|
|
211620
212754
|
};
|
|
@@ -211760,6 +212894,9 @@ export type QueryMarketplaceStore_ReviewSummaryV2Args = {
|
|
|
211760
212894
|
appKey: Scalars['String']['input'];
|
|
211761
212895
|
hostingType: MarketplaceStoreAtlassianProductHostingType;
|
|
211762
212896
|
};
|
|
212897
|
+
export type QueryMarketplaceStore_SimilarObjectsArgs = {
|
|
212898
|
+
input: MarketplaceStoreSimilarObjectsInput;
|
|
212899
|
+
};
|
|
211763
212900
|
export type QueryMedia_ItemsArgs = {
|
|
211764
212901
|
clientId: Scalars['String']['input'];
|
|
211765
212902
|
cloudId: Scalars['ID']['input'];
|
|
@@ -212046,6 +213183,15 @@ export type QueryPostOffice_GetMessagesArgs = {
|
|
|
212046
213183
|
locale?: InputMaybe<Scalars['String']['input']>;
|
|
212047
213184
|
payload: PostOfficeGetMessagesInput;
|
|
212048
213185
|
};
|
|
213186
|
+
export type QueryProactiveAi_GenerateUserActionsArgs = {
|
|
213187
|
+
cloudId: Scalars['ID']['input'];
|
|
213188
|
+
forceCacheMiss?: InputMaybe<Scalars['Boolean']['input']>;
|
|
213189
|
+
userId: Scalars['String']['input'];
|
|
213190
|
+
};
|
|
213191
|
+
export type QueryProactiveAi_RetrieveUserActionsArgs = {
|
|
213192
|
+
cloudId: Scalars['ID']['input'];
|
|
213193
|
+
userId: Scalars['String']['input'];
|
|
213194
|
+
};
|
|
212049
213195
|
export type QueryProactiveAi_RovoInsightsDataArgs = {
|
|
212050
213196
|
cloudId: Scalars['ID']['input'];
|
|
212051
213197
|
debugInfo?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -212211,6 +213357,10 @@ export type QueryPsm_DevicesArgs = {
|
|
|
212211
213357
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
212212
213358
|
spaceId: Scalars['ID']['input'];
|
|
212213
213359
|
};
|
|
213360
|
+
export type QueryPsm_EligibleUsersListArgs = {
|
|
213361
|
+
cloudId: Scalars['ID']['input'];
|
|
213362
|
+
input: PsmEligibleUsersListInput;
|
|
213363
|
+
};
|
|
212214
213364
|
export type QueryPsm_OnboardTenantStatusArgs = {
|
|
212215
213365
|
cloudId: Scalars['ID']['input'];
|
|
212216
213366
|
input: PsmOnboardTenantStatusInput;
|
|
@@ -212290,14 +213440,6 @@ export type QueryRadar_AiConnectorsArgs = {
|
|
|
212290
213440
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
212291
213441
|
rql?: InputMaybe<Scalars['String']['input']>;
|
|
212292
213442
|
};
|
|
212293
|
-
export type QueryRadar_AiScopedBudgetPoliciesArgs = {
|
|
212294
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
212295
|
-
cloudId: Scalars['ID']['input'];
|
|
212296
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
212297
|
-
};
|
|
212298
|
-
export type QueryRadar_AiWorkspaceBudgetPolicyArgs = {
|
|
212299
|
-
cloudId: Scalars['ID']['input'];
|
|
212300
|
-
};
|
|
212301
213443
|
export type QueryRadar_AvailableCustomFieldsFromLastSyncArgs = {
|
|
212302
213444
|
cloudId: Scalars['ID']['input'];
|
|
212303
213445
|
};
|
|
@@ -212341,6 +213483,7 @@ export type QueryRadar_LastAppliedFilterArgs = {
|
|
|
212341
213483
|
};
|
|
212342
213484
|
export type QueryRadar_MetricsSettingsArgs = {
|
|
212343
213485
|
cloudId: Scalars['ID']['input'];
|
|
213486
|
+
metricKey?: InputMaybe<RadarOrgMetric>;
|
|
212344
213487
|
};
|
|
212345
213488
|
export type QueryRadar_NotificationSettingsArgs = {
|
|
212346
213489
|
cloudId: Scalars['ID']['input'];
|
|
@@ -213353,6 +214496,9 @@ export type QueryUts_AllowanceExemptionsArgs = {
|
|
|
213353
214496
|
scopeType?: InputMaybe<UtsAllowanceExemptionScopeType>;
|
|
213354
214497
|
usageKey?: InputMaybe<Scalars['String']['input']>;
|
|
213355
214498
|
};
|
|
214499
|
+
export type QueryUts_AllowancePoolsByOwnerArgs = {
|
|
214500
|
+
owner: Scalars['ID']['input'];
|
|
214501
|
+
};
|
|
213356
214502
|
export type QueryUts_MeterConfigurationArgs = {
|
|
213357
214503
|
usageKey: Scalars['String']['input'];
|
|
213358
214504
|
};
|
|
@@ -213477,9 +214623,6 @@ export type QuickReloadComment = {
|
|
|
213477
214623
|
primaryActions: Array<Maybe<CommentUserAction>>;
|
|
213478
214624
|
secondaryActions: Array<Maybe<CommentUserAction>>;
|
|
213479
214625
|
};
|
|
213480
|
-
export type RadarAiBudgetPolicyAllowanceInput = {
|
|
213481
|
-
amount: Scalars['String']['input'];
|
|
213482
|
-
};
|
|
213483
214626
|
export type RadarAiConnector = {
|
|
213484
214627
|
__typename?: 'RadarAiConnector';
|
|
213485
214628
|
config?: Maybe<RadarAiConnectorConfig>;
|
|
@@ -213562,12 +214705,6 @@ export type RadarAiScopedBudgetPolicyEdge = RadarEdge & {
|
|
|
213562
214705
|
cursor: Scalars['String']['output'];
|
|
213563
214706
|
node: RadarAiScopedBudgetPolicy;
|
|
213564
214707
|
};
|
|
213565
|
-
export type RadarAiWorkspaceBudgetPolicy = {
|
|
213566
|
-
__typename?: 'RadarAiWorkspaceBudgetPolicy';
|
|
213567
|
-
allowance: RadarMoney;
|
|
213568
|
-
allowanceAmount: Scalars['Int']['output'];
|
|
213569
|
-
id: Scalars['ID']['output'];
|
|
213570
|
-
};
|
|
213571
214708
|
export type RadarAriFieldValue = {
|
|
213572
214709
|
__typename?: 'RadarAriFieldValue';
|
|
213573
214710
|
ari?: Maybe<Scalars['ID']['output']>;
|
|
@@ -214409,24 +215546,6 @@ export type RadarUpdateWorkerSkillMappingsResponse = {
|
|
|
214409
215546
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
214410
215547
|
workerId: Scalars['ID']['output'];
|
|
214411
215548
|
};
|
|
214412
|
-
export type RadarUpsertAiScopedBudgetPoliciesInput = {
|
|
214413
|
-
deletedScopeFieldValues: Array<Scalars['String']['input']>;
|
|
214414
|
-
upserts: Array<RadarUpsertAiScopedBudgetPolicyInput>;
|
|
214415
|
-
};
|
|
214416
|
-
export type RadarUpsertAiScopedBudgetPoliciesPayload = {
|
|
214417
|
-
__typename?: 'RadarUpsertAiScopedBudgetPoliciesPayload';
|
|
214418
|
-
deletedScopeFieldValues: Array<Scalars['String']['output']>;
|
|
214419
|
-
policies: Array<RadarAiScopedBudgetPolicy>;
|
|
214420
|
-
};
|
|
214421
|
-
export type RadarUpsertAiScopedBudgetPolicyInput = {
|
|
214422
|
-
allowance?: InputMaybe<RadarAiBudgetPolicyAllowanceInput>;
|
|
214423
|
-
allowanceAmount?: InputMaybe<Scalars['Int']['input']>;
|
|
214424
|
-
scopeFieldValue: Scalars['String']['input'];
|
|
214425
|
-
};
|
|
214426
|
-
export type RadarUpsertAiWorkspaceBudgetPolicyInput = {
|
|
214427
|
-
allowance?: InputMaybe<RadarAiBudgetPolicyAllowanceInput>;
|
|
214428
|
-
allowanceAmount?: InputMaybe<Scalars['Int']['input']>;
|
|
214429
|
-
};
|
|
214430
215549
|
export type RadarUpsertViewInput = {
|
|
214431
215550
|
groupingField?: InputMaybe<Scalars['String']['input']>;
|
|
214432
215551
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -215979,6 +217098,7 @@ export declare enum Scope {
|
|
|
215979
217098
|
DashboardPropertyWrite = "DASHBOARD_PROPERTY_WRITE",
|
|
215980
217099
|
DashboardRead = "DASHBOARD_READ",
|
|
215981
217100
|
DashboardWrite = "DASHBOARD_WRITE",
|
|
217101
|
+
DeleteArtifactArtifacts = "DELETE_ARTIFACT_ARTIFACTS",
|
|
215982
217102
|
DeleteAssetsTwgCli = "DELETE_ASSETS_TWG_CLI",
|
|
215983
217103
|
DeleteBitbucketTwgCli = "DELETE_BITBUCKET_TWG_CLI",
|
|
215984
217104
|
DeleteCompassTwgCli = "DELETE_COMPASS_TWG_CLI",
|
|
@@ -216175,6 +217295,7 @@ export declare enum Scope {
|
|
|
216175
217295
|
ReadAppInstallation = "READ_APP_INSTALLATION",
|
|
216176
217296
|
ReadAppLogs = "READ_APP_LOGS",
|
|
216177
217297
|
ReadAppSystemToken = "READ_APP_SYSTEM_TOKEN",
|
|
217298
|
+
ReadArtifactArtifacts = "READ_ARTIFACT_ARTIFACTS",
|
|
216178
217299
|
ReadAssetsTwgCli = "READ_ASSETS_TWG_CLI",
|
|
216179
217300
|
ReadCapacityPlanning = "READ_CAPACITY_PLANNING",
|
|
216180
217301
|
ReadCmdbAttributeJira = "READ_CMDB_ATTRIBUTE_JIRA",
|
|
@@ -216361,6 +217482,7 @@ export declare enum Scope {
|
|
|
216361
217482
|
WorkflowSchemeWrite = "WORKFLOW_SCHEME_WRITE",
|
|
216362
217483
|
WorkflowWrite = "WORKFLOW_WRITE",
|
|
216363
217484
|
WriteAppDetails = "WRITE_APP_DETAILS",
|
|
217485
|
+
WriteArtifactArtifacts = "WRITE_ARTIFACT_ARTIFACTS",
|
|
216364
217486
|
WriteAssetsTwgCli = "WRITE_ASSETS_TWG_CLI",
|
|
216365
217487
|
WriteCapacityPlanning = "WRITE_CAPACITY_PLANNING",
|
|
216366
217488
|
WriteCmdbAttributeJira = "WRITE_CMDB_ATTRIBUTE_JIRA",
|
|
@@ -217383,6 +218505,7 @@ export type SearchResultGraphDocument = SearchL2FeatureProvider & SearchResult &
|
|
|
217383
218505
|
id: Scalars['ID']['output'];
|
|
217384
218506
|
initialContributors?: Maybe<Array<ThirdPartyUser>>;
|
|
217385
218507
|
integrationId?: Maybe<Scalars['String']['output']>;
|
|
218508
|
+
isSharedChannel?: Maybe<Scalars['Boolean']['output']>;
|
|
217386
218509
|
l2BodyTextInput?: Maybe<Scalars['String']['output']>;
|
|
217387
218510
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
217388
218511
|
l2TitleInput?: Maybe<Scalars['String']['output']>;
|
|
@@ -217840,6 +218963,31 @@ export type SearchScrapingMetadata = {
|
|
|
217840
218963
|
searchScrapingResponsesJson?: Maybe<Scalars['String']['output']>;
|
|
217841
218964
|
searcherErrors?: Maybe<Array<SearchError>>;
|
|
217842
218965
|
};
|
|
218966
|
+
export type SearchServiceNowAttributeFilter = {
|
|
218967
|
+
field: Scalars['String']['input'];
|
|
218968
|
+
from?: InputMaybe<Scalars['String']['input']>;
|
|
218969
|
+
operator: SearchServiceNowAttributeFilterOperator;
|
|
218970
|
+
source: SearchServiceNowAttributeFilterSource;
|
|
218971
|
+
to?: InputMaybe<Scalars['String']['input']>;
|
|
218972
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
218973
|
+
values?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
218974
|
+
};
|
|
218975
|
+
export declare enum SearchServiceNowAttributeFilterOperator {
|
|
218976
|
+
Between = "BETWEEN",
|
|
218977
|
+
Eq = "EQ",
|
|
218978
|
+
Gt = "GT",
|
|
218979
|
+
Gte = "GTE",
|
|
218980
|
+
In = "IN",
|
|
218981
|
+
Lt = "LT",
|
|
218982
|
+
Lte = "LTE"
|
|
218983
|
+
}
|
|
218984
|
+
export declare enum SearchServiceNowAttributeFilterSource {
|
|
218985
|
+
AddOnPropertiesDate = "ADD_ON_PROPERTIES_DATE",
|
|
218986
|
+
Relationships = "RELATIONSHIPS"
|
|
218987
|
+
}
|
|
218988
|
+
export type SearchServiceNowFilters = {
|
|
218989
|
+
attributeFilters?: InputMaybe<Array<SearchServiceNowAttributeFilter>>;
|
|
218990
|
+
};
|
|
217843
218991
|
export type SearchSlackReaction = {
|
|
217844
218992
|
__typename?: 'SearchSlackReaction';
|
|
217845
218993
|
count: Scalars['Int']['output'];
|
|
@@ -217899,6 +219047,7 @@ export type SearchThirdPartyFilter = {
|
|
|
217899
219047
|
lastUpdatedBy?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
217900
219048
|
range?: InputMaybe<Array<InputMaybe<SearchThirdPartyRangeFilter>>>;
|
|
217901
219049
|
salesforceFilters?: InputMaybe<SearchSalesforceFilters>;
|
|
219050
|
+
serviceNowFilters?: InputMaybe<SearchServiceNowFilters>;
|
|
217902
219051
|
subtypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
217903
219052
|
teamsFilters?: InputMaybe<SearchTeamsFilters>;
|
|
217904
219053
|
thirdPartyProducts?: InputMaybe<Array<SearchThirdPartyProduct>>;
|
|
@@ -224485,7 +225634,6 @@ export type StudioTemplate = {
|
|
|
224485
225634
|
howItWorks: Array<StudioTemplateHowItWorksStep>;
|
|
224486
225635
|
id: Scalars['String']['output'];
|
|
224487
225636
|
name: Scalars['String']['output'];
|
|
224488
|
-
skills?: Maybe<Array<Scalars['String']['output']>>;
|
|
224489
225637
|
type: Scalars['String']['output'];
|
|
224490
225638
|
usageCount: Scalars['Int']['output'];
|
|
224491
225639
|
};
|
|
@@ -224701,7 +225849,6 @@ export type SubscriptionConvoai_OnAgentSessionCreateArgs = {
|
|
|
224701
225849
|
export type SubscriptionConvoai_OnAgentSessionUpdateArgs = {
|
|
224702
225850
|
cloudId: Scalars['ID']['input'];
|
|
224703
225851
|
conversationId: Scalars['ID']['input'];
|
|
224704
|
-
excludeActionExecutionMessages?: InputMaybe<Scalars['Boolean']['input']>;
|
|
224705
225852
|
};
|
|
224706
225853
|
export type SubscriptionConvoai_OnAgentSessionUpdatedByProjectsArgs = {
|
|
224707
225854
|
cloudId: Scalars['ID']['input'];
|
|
@@ -224939,8 +226086,10 @@ export type SupportRequestAddCommentInput = {
|
|
|
224939
226086
|
export type SupportRequestAdditionalTicketData = {
|
|
224940
226087
|
chatTranscript?: InputMaybe<Scalars['String']['input']>;
|
|
224941
226088
|
cloudSiteUrl?: InputMaybe<Scalars['String']['input']>;
|
|
226089
|
+
dataAccessApproval?: InputMaybe<Scalars['String']['input']>;
|
|
224942
226090
|
operationType?: InputMaybe<Scalars['String']['input']>;
|
|
224943
226091
|
parentIssueIdOrKey?: InputMaybe<Scalars['String']['input']>;
|
|
226092
|
+
priorityUrgency?: InputMaybe<Scalars['String']['input']>;
|
|
224944
226093
|
};
|
|
224945
226094
|
export type SupportRequestCatalogMutationApi = {
|
|
224946
226095
|
__typename?: 'SupportRequestCatalogMutationApi';
|
|
@@ -225704,6 +226853,11 @@ export type TeamLinkExternalTeamPayload = Payload & {
|
|
|
225704
226853
|
success: Scalars['Boolean']['output'];
|
|
225705
226854
|
teamId?: Maybe<Scalars['ID']['output']>;
|
|
225706
226855
|
};
|
|
226856
|
+
export type TeamManagerData = {
|
|
226857
|
+
__typename?: 'TeamManagerData';
|
|
226858
|
+
accountId?: Maybe<Scalars['String']['output']>;
|
|
226859
|
+
user?: Maybe<User>;
|
|
226860
|
+
};
|
|
225707
226861
|
export type TeamMember = {
|
|
225708
226862
|
__typename?: 'TeamMember';
|
|
225709
226863
|
member?: Maybe<User>;
|
|
@@ -226018,6 +227172,30 @@ export declare enum TeamNotificationType {
|
|
|
226018
227172
|
UserRestoredTeam = "USER_RESTORED_TEAM",
|
|
226019
227173
|
UserUnarchivedTeam = "USER_UNARCHIVED_TEAM"
|
|
226020
227174
|
}
|
|
227175
|
+
export type TeamPeopleTqlPerson = {
|
|
227176
|
+
__typename?: 'TeamPeopleTqlPerson';
|
|
227177
|
+
department?: Maybe<Scalars['String']['output']>;
|
|
227178
|
+
highResolutionProfilePicture?: Maybe<Scalars['String']['output']>;
|
|
227179
|
+
id: Scalars['ID']['output'];
|
|
227180
|
+
jobTitle?: Maybe<Scalars['String']['output']>;
|
|
227181
|
+
location?: Maybe<Scalars['String']['output']>;
|
|
227182
|
+
managerData?: Maybe<TeamManagerData>;
|
|
227183
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
227184
|
+
picture?: Maybe<Scalars['String']['output']>;
|
|
227185
|
+
teamsPreview?: Maybe<Array<TeamV2>>;
|
|
227186
|
+
zoneinfo?: Maybe<Scalars['String']['output']>;
|
|
227187
|
+
};
|
|
227188
|
+
export type TeamPeopleTqlPersonConnection = {
|
|
227189
|
+
__typename?: 'TeamPeopleTqlPersonConnection';
|
|
227190
|
+
edges?: Maybe<Array<TeamPeopleTqlPersonConnectionEdge>>;
|
|
227191
|
+
nodes?: Maybe<Array<TeamPeopleTqlPerson>>;
|
|
227192
|
+
pageInfo: PageInfo;
|
|
227193
|
+
};
|
|
227194
|
+
export type TeamPeopleTqlPersonConnectionEdge = {
|
|
227195
|
+
__typename?: 'TeamPeopleTqlPersonConnectionEdge';
|
|
227196
|
+
cursor: Scalars['String']['output'];
|
|
227197
|
+
node?: Maybe<TeamPeopleTqlPerson>;
|
|
227198
|
+
};
|
|
226021
227199
|
export declare enum TeamPermission {
|
|
226022
227200
|
FullRead = "FULL_READ",
|
|
226023
227201
|
FullWrite = "FULL_WRITE",
|
|
@@ -226061,6 +227239,7 @@ export type TeamQuery = {
|
|
|
226061
227239
|
explainTeamsTql?: Maybe<TeamsTqlExplanation>;
|
|
226062
227240
|
getTeamExternalSourceDiff?: Maybe<TeamExternalSourceDiffPayload>;
|
|
226063
227241
|
notificationConfigurations?: Maybe<Array<TeamNotificationConfiguration>>;
|
|
227242
|
+
peopleTql?: Maybe<TeamPeopleTqlPersonConnection>;
|
|
226064
227243
|
roleAssignments?: Maybe<TeamRoleAssignmentsConnection>;
|
|
226065
227244
|
scopeNotificationConfigurations?: Maybe<Array<TeamScopeNotificationConfiguration>>;
|
|
226066
227245
|
team?: Maybe<Team>;
|
|
@@ -226095,6 +227274,13 @@ export type TeamQueryGetTeamExternalSourceDiffArgs = {
|
|
|
226095
227274
|
export type TeamQueryNotificationConfigurationsArgs = {
|
|
226096
227275
|
ari: Scalars['ID']['input'];
|
|
226097
227276
|
};
|
|
227277
|
+
export type TeamQueryPeopleTqlArgs = {
|
|
227278
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
227279
|
+
enablePagination?: InputMaybe<Scalars['Boolean']['input']>;
|
|
227280
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
227281
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
227282
|
+
scopeId: Scalars['ID']['input'];
|
|
227283
|
+
};
|
|
226098
227284
|
export type TeamQueryRoleAssignmentsArgs = {
|
|
226099
227285
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
226100
227286
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -227132,7 +228318,7 @@ export declare enum TownsquareAccessControlCapability {
|
|
|
227132
228318
|
Create = "CREATE"
|
|
227133
228319
|
}
|
|
227134
228320
|
export type TownsquareAccessPrincipal = AppUser | AtlassianAccountUser | CustomerUser;
|
|
227135
|
-
export type TownsquareActivityChange = TownsquareEditorsAddedChange | TownsquareEditorsRemovedChange | TownsquareFollowersAddedChange | TownsquareFollowersRemovedChange | TownsquareGoalArchivedChange | TownsquareGoalCreatedChange | TownsquareGoalOwnerUpdatedChange | TownsquareGoalProgressTypeChange | TownsquareGoalRenamedChange | TownsquareGoalRestoredChange | TownsquareMetricTargetPeriodsChange | TownsquareStartDateAddedChange | TownsquareStartDateEditedChange | TownsquareTargetDateAddedChange | TownsquareTargetDateEditedChange | TownsquareUpdateDeletedChange;
|
|
228321
|
+
export type TownsquareActivityChange = TownsquareEditorsAddedChange | TownsquareEditorsRemovedChange | TownsquareFollowersAddedChange | TownsquareFollowersRemovedChange | TownsquareGoalArchivedChange | TownsquareGoalCreatedChange | TownsquareGoalOwnerUpdatedChange | TownsquareGoalProgressTypeChange | TownsquareGoalRenamedChange | TownsquareGoalRestoredChange | TownsquareMetricTargetPeriodsChange | TownsquareMetricValueCreatedChange | TownsquareMetricValueDeletedChange | TownsquareMetricValueUpdatedChange | TownsquareStartDateAddedChange | TownsquareStartDateEditedChange | TownsquareTargetDateAddedChange | TownsquareTargetDateEditedChange | TownsquareUpdateDeletedChange;
|
|
227136
228322
|
export type TownsquareActivityItem = {
|
|
227137
228323
|
__typename?: 'TownsquareActivityItem';
|
|
227138
228324
|
actor?: Maybe<User>;
|
|
@@ -229281,6 +230467,16 @@ export type TownsquareMetricValueConnection = {
|
|
|
229281
230467
|
edges?: Maybe<Array<Maybe<TownsquareMetricValueEdge>>>;
|
|
229282
230468
|
pageInfo: PageInfo;
|
|
229283
230469
|
};
|
|
230470
|
+
export type TownsquareMetricValueCreatedChange = {
|
|
230471
|
+
__typename?: 'TownsquareMetricValueCreatedChange';
|
|
230472
|
+
time?: Maybe<Scalars['DateTime']['output']>;
|
|
230473
|
+
value?: Maybe<Scalars['Float']['output']>;
|
|
230474
|
+
};
|
|
230475
|
+
export type TownsquareMetricValueDeletedChange = {
|
|
230476
|
+
__typename?: 'TownsquareMetricValueDeletedChange';
|
|
230477
|
+
time?: Maybe<Scalars['DateTime']['output']>;
|
|
230478
|
+
value?: Maybe<Scalars['Float']['output']>;
|
|
230479
|
+
};
|
|
229284
230480
|
export type TownsquareMetricValueEdge = {
|
|
229285
230481
|
__typename?: 'TownsquareMetricValueEdge';
|
|
229286
230482
|
cursor: Scalars['String']['output'];
|
|
@@ -229293,6 +230489,13 @@ export declare enum TownsquareMetricValueSortEnum {
|
|
|
229293
230489
|
TimeAsc = "TIME_ASC",
|
|
229294
230490
|
TimeDesc = "TIME_DESC"
|
|
229295
230491
|
}
|
|
230492
|
+
export type TownsquareMetricValueUpdatedChange = {
|
|
230493
|
+
__typename?: 'TownsquareMetricValueUpdatedChange';
|
|
230494
|
+
newTime?: Maybe<Scalars['DateTime']['output']>;
|
|
230495
|
+
newValue?: Maybe<Scalars['Float']['output']>;
|
|
230496
|
+
oldTime?: Maybe<Scalars['DateTime']['output']>;
|
|
230497
|
+
oldValue?: Maybe<Scalars['Float']['output']>;
|
|
230498
|
+
};
|
|
229296
230499
|
export type TownsquareMilestone = Node & {
|
|
229297
230500
|
__typename?: 'TownsquareMilestone';
|
|
229298
230501
|
completionDate?: Maybe<Scalars['Date']['output']>;
|
|
@@ -232058,6 +233261,7 @@ export type TrelloAtlassianOrganization = {
|
|
|
232058
233261
|
export type TrelloAtlassianSite = {
|
|
232059
233262
|
__typename?: 'TrelloAtlassianSite';
|
|
232060
233263
|
cloudUrl?: Maybe<Scalars['String']['output']>;
|
|
233264
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
232061
233265
|
hostname?: Maybe<Scalars['String']['output']>;
|
|
232062
233266
|
isRovoAiEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
232063
233267
|
resourceId: Scalars['String']['output'];
|
|
@@ -232116,6 +233320,9 @@ export type TrelloAttachmentUpdated = {
|
|
|
232116
233320
|
__typename?: 'TrelloAttachmentUpdated';
|
|
232117
233321
|
id: Scalars['ID']['output'];
|
|
232118
233322
|
};
|
|
233323
|
+
export type TrelloAutomationCreationInput = {
|
|
233324
|
+
prompt: Scalars['String']['input'];
|
|
233325
|
+
};
|
|
232119
233326
|
export type TrelloBaseBoard = {
|
|
232120
233327
|
actions?: Maybe<TrelloCardActionConnection>;
|
|
232121
233328
|
aiMetadata?: Maybe<TrelloObjectAiMetadata>;
|
|
@@ -233651,6 +234858,19 @@ export type TrelloCreateApplicationPayload = Payload & {
|
|
|
233651
234858
|
errors?: Maybe<Array<MutationError>>;
|
|
233652
234859
|
success: Scalars['Boolean']['output'];
|
|
233653
234860
|
};
|
|
234861
|
+
export type TrelloCreateAutomationFromPromptInput = {
|
|
234862
|
+
userInput: TrelloCreateAutomationFromPromptUserInput;
|
|
234863
|
+
workspaceId: Scalars['ID']['input'];
|
|
234864
|
+
};
|
|
234865
|
+
export type TrelloCreateAutomationFromPromptPayload = Payload & {
|
|
234866
|
+
__typename?: 'TrelloCreateAutomationFromPromptPayload';
|
|
234867
|
+
cmdString?: Maybe<Scalars['String']['output']>;
|
|
234868
|
+
errors?: Maybe<Array<MutationError>>;
|
|
234869
|
+
success: Scalars['Boolean']['output'];
|
|
234870
|
+
};
|
|
234871
|
+
export type TrelloCreateAutomationFromPromptUserInput = {
|
|
234872
|
+
automationCreationInput?: InputMaybe<TrelloAutomationCreationInput>;
|
|
234873
|
+
};
|
|
233654
234874
|
export type TrelloCreateBoardBackgroundInput = {
|
|
233655
234875
|
key?: InputMaybe<Scalars['String']['input']>;
|
|
233656
234876
|
url?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -234720,6 +235940,7 @@ export type TrelloLabelUpdatedConnection = {
|
|
|
234720
235940
|
};
|
|
234721
235941
|
export declare enum TrelloLabsFeature {
|
|
234722
235942
|
AiBoardBuilder = "AI_BOARD_BUILDER",
|
|
235943
|
+
ManifestCards = "MANIFEST_CARDS",
|
|
234723
235944
|
RovoChat = "ROVO_CHAT"
|
|
234724
235945
|
}
|
|
234725
235946
|
export declare enum TrelloLabsFeatureStatus {
|
|
@@ -235443,6 +236664,7 @@ export type TrelloMutationApi = {
|
|
|
235443
236664
|
convertTemplateToBoard?: Maybe<TrelloConvertTemplateToBoardPayload>;
|
|
235444
236665
|
copyCard?: Maybe<TrelloCopyCardPayload>;
|
|
235445
236666
|
createApplication?: Maybe<TrelloCreateApplicationPayload>;
|
|
236667
|
+
createAutomationFromPrompt?: Maybe<TrelloCreateAutomationFromPromptPayload>;
|
|
235446
236668
|
createBoard?: Maybe<TrelloCreateBoardPayload>;
|
|
235447
236669
|
createBoardWithAi?: Maybe<TrelloCreateBoardWithAiPayload>;
|
|
235448
236670
|
createCard?: Maybe<TrelloCreateCardPayload>;
|
|
@@ -235577,6 +236799,7 @@ export type TrelloMutationApi = {
|
|
|
235577
236799
|
updateProposedEvent?: Maybe<TrelloUpdateProposedEventPayload>;
|
|
235578
236800
|
updateSmartScheduleBoardPreference?: Maybe<TrelloUpdateSmartScheduleBoardPreferencePayload>;
|
|
235579
236801
|
updateSmartScheduleLastActivity?: Maybe<TrelloUpdateSmartScheduleLastActivityPayload>;
|
|
236802
|
+
updateWorkspaceIconEmoji?: Maybe<TrelloUpdateWorkspaceIconEmojiPayload>;
|
|
235580
236803
|
updateWorkspaceTag?: Maybe<TrelloUpdateWorkspaceTagPayload>;
|
|
235581
236804
|
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
235582
236805
|
};
|
|
@@ -235640,6 +236863,9 @@ export type TrelloMutationApiCopyCardArgs = {
|
|
|
235640
236863
|
export type TrelloMutationApiCreateApplicationArgs = {
|
|
235641
236864
|
input: TrelloCreateApplicationInput;
|
|
235642
236865
|
};
|
|
236866
|
+
export type TrelloMutationApiCreateAutomationFromPromptArgs = {
|
|
236867
|
+
input: TrelloCreateAutomationFromPromptInput;
|
|
236868
|
+
};
|
|
235643
236869
|
export type TrelloMutationApiCreateBoardArgs = {
|
|
235644
236870
|
input: TrelloCreateBoardInput;
|
|
235645
236871
|
};
|
|
@@ -236030,6 +237256,9 @@ export type TrelloMutationApiUpdateProposedEventArgs = {
|
|
|
236030
237256
|
export type TrelloMutationApiUpdateSmartScheduleBoardPreferenceArgs = {
|
|
236031
237257
|
input: TrelloUpdateSmartScheduleBoardPreferenceInput;
|
|
236032
237258
|
};
|
|
237259
|
+
export type TrelloMutationApiUpdateWorkspaceIconEmojiArgs = {
|
|
237260
|
+
input: TrelloUpdateWorkspaceIconEmojiInput;
|
|
237261
|
+
};
|
|
236033
237262
|
export type TrelloMutationApiUpdateWorkspaceTagArgs = {
|
|
236034
237263
|
input: TrelloUpdateWorkspaceTagInput;
|
|
236035
237264
|
};
|
|
@@ -238406,6 +239635,17 @@ export type TrelloUpdateSmartScheduleLastActivityPayload = Payload & {
|
|
|
238406
239635
|
errors?: Maybe<Array<MutationError>>;
|
|
238407
239636
|
success: Scalars['Boolean']['output'];
|
|
238408
239637
|
};
|
|
239638
|
+
export type TrelloUpdateWorkspaceIconEmojiInput = {
|
|
239639
|
+
background?: InputMaybe<Scalars['String']['input']>;
|
|
239640
|
+
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
239641
|
+
workspaceId: Scalars['ID']['input'];
|
|
239642
|
+
};
|
|
239643
|
+
export type TrelloUpdateWorkspaceIconEmojiPayload = Payload & {
|
|
239644
|
+
__typename?: 'TrelloUpdateWorkspaceIconEmojiPayload';
|
|
239645
|
+
errors?: Maybe<Array<MutationError>>;
|
|
239646
|
+
success: Scalars['Boolean']['output'];
|
|
239647
|
+
workspace?: Maybe<TrelloWorkspace>;
|
|
239648
|
+
};
|
|
238409
239649
|
export type TrelloUpdateWorkspaceTagInput = {
|
|
238410
239650
|
name: Scalars['String']['input'];
|
|
238411
239651
|
tagId: Scalars['ID']['input'];
|
|
@@ -238537,6 +239777,8 @@ export type TrelloWorkspace = Node & {
|
|
|
238537
239777
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
238538
239778
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
238539
239779
|
entitlement?: Maybe<CcpEntitlement>;
|
|
239780
|
+
iconEmoji?: Maybe<Scalars['String']['output']>;
|
|
239781
|
+
iconEmojiBackground?: Maybe<TrelloWorkspaceEmojiBackground>;
|
|
238540
239782
|
id: Scalars['ID']['output'];
|
|
238541
239783
|
jwmLink?: Maybe<TrelloJwmWorkspaceLink>;
|
|
238542
239784
|
limits?: Maybe<TrelloWorkspaceLimits>;
|
|
@@ -238597,6 +239839,13 @@ export declare enum TrelloWorkspaceBoardFilterValue {
|
|
|
238597
239839
|
Closed = "CLOSED",
|
|
238598
239840
|
Open = "OPEN"
|
|
238599
239841
|
}
|
|
239842
|
+
export type TrelloWorkspaceEmojiBackground = {
|
|
239843
|
+
__typename?: 'TrelloWorkspaceEmojiBackground';
|
|
239844
|
+
endColor?: Maybe<Scalars['String']['output']>;
|
|
239845
|
+
gradient?: Maybe<Scalars['String']['output']>;
|
|
239846
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
239847
|
+
startColor?: Maybe<Scalars['String']['output']>;
|
|
239848
|
+
};
|
|
238600
239849
|
export type TrelloWorkspaceEnterpriseUpdated = {
|
|
238601
239850
|
__typename?: 'TrelloWorkspaceEnterpriseUpdated';
|
|
238602
239851
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -241348,6 +242597,7 @@ export type UserPreferences = {
|
|
|
241348
242597
|
homePagesDisplayView: PagesDisplayPersistenceOption;
|
|
241349
242598
|
homeWidgets: Array<HomeWidget>;
|
|
241350
242599
|
isCommentsPanelAutomaticSummariesEnabled: Scalars['Boolean']['output'];
|
|
242600
|
+
isCwrRemixCreationEnabled: Scalars['Boolean']['output'];
|
|
241351
242601
|
isHomeOnboardingDismissed: Scalars['Boolean']['output'];
|
|
241352
242602
|
keyboardShortcutDisabled: Scalars['Boolean']['output'];
|
|
241353
242603
|
missionControlFeatureDiscoverySuggestions: Array<Maybe<MissionControlFeatureDiscoverySuggestionState>>;
|
|
@@ -241400,6 +242650,7 @@ export type UserPreferencesInput = {
|
|
|
241400
242650
|
homePagesDisplayView?: InputMaybe<PagesDisplayPersistenceOption>;
|
|
241401
242651
|
homeWidget?: InputMaybe<HomeWidgetInput>;
|
|
241402
242652
|
isCommentsPanelAutomaticSummariesEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
242653
|
+
isCwrRemixCreationEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
241403
242654
|
isHomeOnboardingDismissed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
241404
242655
|
keyboardShortcutDisabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
241405
242656
|
missionControlFeatureDiscoverySuggestion?: InputMaybe<MissionControlFeatureDiscoverySuggestionInput>;
|
|
@@ -241510,6 +242761,14 @@ export declare enum UtsAllowanceExemptionStatus {
|
|
|
241510
242761
|
Expired = "EXPIRED",
|
|
241511
242762
|
Scheduled = "SCHEDULED"
|
|
241512
242763
|
}
|
|
242764
|
+
export type UtsAllowancePool = {
|
|
242765
|
+
__typename?: 'UtsAllowancePool';
|
|
242766
|
+
allowance?: Maybe<Scalars['Float']['output']>;
|
|
242767
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
242768
|
+
owner?: Maybe<Scalars['String']['output']>;
|
|
242769
|
+
status?: Maybe<UtsAllowancePoolStatus>;
|
|
242770
|
+
usageKey?: Maybe<Scalars['String']['output']>;
|
|
242771
|
+
};
|
|
241513
242772
|
export type UtsAllowancePoolAllocationUpdateInput = {
|
|
241514
242773
|
allocationId: Scalars['ID']['input'];
|
|
241515
242774
|
billingEntity?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -241523,6 +242782,11 @@ export type UtsAllowancePoolAllocationUpdateResult = {
|
|
|
241523
242782
|
poolId?: Maybe<Scalars['ID']['output']>;
|
|
241524
242783
|
transactionId?: Maybe<Scalars['ID']['output']>;
|
|
241525
242784
|
};
|
|
242785
|
+
export declare enum UtsAllowancePoolStatus {
|
|
242786
|
+
Active = "ACTIVE",
|
|
242787
|
+
Archived = "ARCHIVED",
|
|
242788
|
+
Inactive = "INACTIVE"
|
|
242789
|
+
}
|
|
241526
242790
|
export declare enum UtsLatestAllowanceEnforcementModeType {
|
|
241527
242791
|
Block = "BLOCK",
|
|
241528
242792
|
LimitedOverage = "LIMITED_OVERAGE",
|