@forge/cli-shared 9.4.0-next.8 → 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 +19 -0
- package/out/graphql/graphql-types.d.ts +1585 -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 +1 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +2 -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>>;
|
|
@@ -8086,6 +8142,20 @@ export type AgentWorkspaceBulkUpsertDraftedRoutingTableEntryInput = {
|
|
|
8086
8142
|
serviceFieldId: Scalars['ID']['input'];
|
|
8087
8143
|
serviceId: Scalars['ID']['input'];
|
|
8088
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
|
+
};
|
|
8089
8159
|
export type AgentWorkspaceCancelRoutingTableGenerationInput = {
|
|
8090
8160
|
generationId: Scalars['ID']['input'];
|
|
8091
8161
|
projectAri: Scalars['ID']['input'];
|
|
@@ -8272,10 +8342,12 @@ export type AgentWorkspaceCreateDraftedRoutingTableEntriesV2Input = {
|
|
|
8272
8342
|
};
|
|
8273
8343
|
export type AgentWorkspaceCreateDraftedTeamRoutingTableEntriesInput = {
|
|
8274
8344
|
cloudId: Scalars['ID']['input'];
|
|
8345
|
+
draftId?: InputMaybe<Scalars['ID']['input']>;
|
|
8275
8346
|
projectKey: Scalars['String']['input'];
|
|
8276
8347
|
};
|
|
8277
8348
|
export type AgentWorkspaceCreateDraftedTeamRoutingTableEntriesPayload = {
|
|
8278
8349
|
__typename?: 'AgentWorkspaceCreateDraftedTeamRoutingTableEntriesPayload';
|
|
8350
|
+
draftId: Scalars['ID']['output'];
|
|
8279
8351
|
entries: Array<AgentWorkspaceDraftedTeamRoutingTableEntry>;
|
|
8280
8352
|
rowsInserted: Scalars['Int']['output'];
|
|
8281
8353
|
};
|
|
@@ -8406,6 +8478,7 @@ export type AgentWorkspaceDraftedTeamRoutingTableEntry = {
|
|
|
8406
8478
|
__typename?: 'AgentWorkspaceDraftedTeamRoutingTableEntry';
|
|
8407
8479
|
confidence?: Maybe<Scalars['Float']['output']>;
|
|
8408
8480
|
description?: Maybe<Scalars['String']['output']>;
|
|
8481
|
+
draftId: Scalars['ID']['output'];
|
|
8409
8482
|
generationId?: Maybe<Scalars['ID']['output']>;
|
|
8410
8483
|
lastModifiedAt: Scalars['String']['output'];
|
|
8411
8484
|
lastModifiedBy: Scalars['ID']['output'];
|
|
@@ -9002,6 +9075,9 @@ export type AgentWorkspaceSetTeamCapacitiesPayload = {
|
|
|
9002
9075
|
export type AgentWorkspaceSetWorkforceTeamAccessLevelsPayload = {
|
|
9003
9076
|
__typename?: 'AgentWorkspaceSetWorkforceTeamAccessLevelsPayload';
|
|
9004
9077
|
accessLevels: Array<AgentWorkspaceWorkforceTeamAccessLevelResult>;
|
|
9078
|
+
errorCount: Scalars['Int']['output'];
|
|
9079
|
+
errors: Array<AgentWorkspaceWorkforceTeamAccessError>;
|
|
9080
|
+
success: Scalars['Boolean']['output'];
|
|
9005
9081
|
};
|
|
9006
9082
|
export type AgentWorkspaceSetWorkloadJqlInput = {
|
|
9007
9083
|
jql: Scalars['String']['input'];
|
|
@@ -9404,6 +9480,13 @@ export type AgentWorkspaceStartGenerateRoutingTablePayload = {
|
|
|
9404
9480
|
generationId: Scalars['ID']['output'];
|
|
9405
9481
|
status: AgentWorkspaceRoutingTableGenerationStatus;
|
|
9406
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
|
+
};
|
|
9407
9490
|
export type AgentWorkspaceStartSmartRoutingDryRunInput = {
|
|
9408
9491
|
cloudId: Scalars['ID']['input'];
|
|
9409
9492
|
projectKey: Scalars['String']['input'];
|
|
@@ -9432,6 +9515,7 @@ export type AgentWorkspaceSubmitDraftedRoutingTablePayload = {
|
|
|
9432
9515
|
};
|
|
9433
9516
|
export type AgentWorkspaceSubmitDraftedTeamRoutingTableInput = {
|
|
9434
9517
|
cloudId: Scalars['ID']['input'];
|
|
9518
|
+
draftId?: InputMaybe<Scalars['ID']['input']>;
|
|
9435
9519
|
projectKey: Scalars['String']['input'];
|
|
9436
9520
|
};
|
|
9437
9521
|
export type AgentWorkspaceSubmitDraftedTeamRoutingTablePayload = {
|
|
@@ -9673,6 +9757,7 @@ export type AgentWorkspaceUpsertDraftedRoutingTableEntryPayload = {
|
|
|
9673
9757
|
export type AgentWorkspaceUpsertDraftedTeamRoutingTableEntryInput = {
|
|
9674
9758
|
cloudId: Scalars['ID']['input'];
|
|
9675
9759
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
9760
|
+
draftId?: InputMaybe<Scalars['ID']['input']>;
|
|
9676
9761
|
projectKey: Scalars['String']['input'];
|
|
9677
9762
|
teamAri: Scalars['ID']['input'];
|
|
9678
9763
|
};
|
|
@@ -9724,6 +9809,12 @@ export type AgentWorkspaceWfoSummaryViewResult = {
|
|
|
9724
9809
|
errors?: Maybe<Array<QueryError>>;
|
|
9725
9810
|
summaryView?: Maybe<AgentWorkspaceWfoSummaryView>;
|
|
9726
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
|
+
};
|
|
9727
9818
|
export declare enum AgentWorkspaceWorkforceTeamAccessLevel {
|
|
9728
9819
|
TeamAdmin = "TEAM_ADMIN",
|
|
9729
9820
|
TeamMember = "TEAM_MEMBER"
|
|
@@ -10542,6 +10633,11 @@ export type AppAuditConnection = {
|
|
|
10542
10633
|
nodes?: Maybe<Array<Maybe<AuditEvent>>>;
|
|
10543
10634
|
pageInfo?: Maybe<AuditsPageInfo>;
|
|
10544
10635
|
};
|
|
10636
|
+
export declare enum AppBuildStatus {
|
|
10637
|
+
Failed = "FAILED",
|
|
10638
|
+
Processing = "PROCESSING",
|
|
10639
|
+
Ready = "READY"
|
|
10640
|
+
}
|
|
10545
10641
|
export type AppConnection = {
|
|
10546
10642
|
__typename?: 'AppConnection';
|
|
10547
10643
|
edges?: Maybe<Array<Maybe<AppEdge>>>;
|
|
@@ -12191,6 +12287,35 @@ export type ArjHierarchyConfigurationLevel = {
|
|
|
12191
12287
|
issueTypes?: Maybe<Array<Scalars['String']['output']>>;
|
|
12192
12288
|
title: Scalars['String']['output'];
|
|
12193
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
|
+
};
|
|
12194
12319
|
export type AssetsAriAttribute = AssetsObjectTypeAttribute & {
|
|
12195
12320
|
__typename?: 'AssetsARIAttribute';
|
|
12196
12321
|
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -17459,6 +17584,7 @@ export type Build = {
|
|
|
17459
17584
|
appId: Scalars['ID']['output'];
|
|
17460
17585
|
createdAt: Scalars['String']['output'];
|
|
17461
17586
|
createdByUser?: Maybe<User>;
|
|
17587
|
+
status: AppBuildStatus;
|
|
17462
17588
|
tag: Scalars['String']['output'];
|
|
17463
17589
|
};
|
|
17464
17590
|
export type BuildConnection = {
|
|
@@ -20889,7 +21015,8 @@ export type CloudifyAnalysisPart = {
|
|
|
20889
21015
|
};
|
|
20890
21016
|
export declare enum CloudifyAnalysisResult {
|
|
20891
21017
|
Failed = "FAILED",
|
|
20892
|
-
Finished = "FINISHED"
|
|
21018
|
+
Finished = "FINISHED",
|
|
21019
|
+
FinishedWithErrors = "FINISHED_WITH_ERRORS"
|
|
20893
21020
|
}
|
|
20894
21021
|
export type CloudifyAnalysisServiceProgress = {
|
|
20895
21022
|
__typename?: 'CloudifyAnalysisServiceProgress';
|
|
@@ -20921,7 +21048,7 @@ export type CloudifyCloudProjectTargetInput = {
|
|
|
20921
21048
|
export type CloudifyCustomizationIdInput = {
|
|
20922
21049
|
id?: InputMaybe<Scalars['String']['input']>;
|
|
20923
21050
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
20924
|
-
type
|
|
21051
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
20925
21052
|
};
|
|
20926
21053
|
export type CloudifyDcInstanceTarget = {
|
|
20927
21054
|
__typename?: 'CloudifyDcInstanceTarget';
|
|
@@ -20994,6 +21121,7 @@ export type CloudifyProjectAri = {
|
|
|
20994
21121
|
export type CloudifyRawCustomizationRecommendation = {
|
|
20995
21122
|
__typename?: 'CloudifyRawCustomizationRecommendation';
|
|
20996
21123
|
content: Scalars['String']['output'];
|
|
21124
|
+
customizationIds: Array<Scalars['ID']['output']>;
|
|
20997
21125
|
id: Scalars['ID']['output'];
|
|
20998
21126
|
type: CloudifyRawCustomizationRecommendationType;
|
|
20999
21127
|
};
|
|
@@ -21064,6 +21192,7 @@ export type CloudifyRecommendationsSummary = {
|
|
|
21064
21192
|
lastAnalysisResult?: Maybe<CloudifyAnalysisResult>;
|
|
21065
21193
|
migrationPaths: Array<CloudifyMigrationPathCount>;
|
|
21066
21194
|
reportUrl?: Maybe<Scalars['String']['output']>;
|
|
21195
|
+
scanReportId?: Maybe<Scalars['ID']['output']>;
|
|
21067
21196
|
totalAnalyzed: Scalars['Int']['output'];
|
|
21068
21197
|
};
|
|
21069
21198
|
export type CloudifySiteTarget = {
|
|
@@ -21923,6 +22052,7 @@ export type CommerceExpCcpEntitlement = {
|
|
|
21923
22052
|
accountModificationForBac?: Maybe<Array<Maybe<CommerceExpEntitlementAccountModificationForBac>>>;
|
|
21924
22053
|
actions?: Maybe<CommerceExpEntitlementActions>;
|
|
21925
22054
|
actions2?: Maybe<CommerceExpEntitlementActionsV2>;
|
|
22055
|
+
aggCcpEntitlement?: Maybe<CcpEntitlement>;
|
|
21926
22056
|
allRelatedEntitlementsForBac?: Maybe<Array<Maybe<CommerceExpCcpEntitlement>>>;
|
|
21927
22057
|
allowanceExemptions?: Maybe<CommerceExpUtsAllowanceExemptionList>;
|
|
21928
22058
|
allowancePoolContributors?: Maybe<Array<Maybe<CommerceExpAllowancePoolContributor>>>;
|
|
@@ -22678,6 +22808,7 @@ export type CommerceExpCcpTransactionAccount = {
|
|
|
22678
22808
|
status?: Maybe<CommerceExpTransactionAccountStatus>;
|
|
22679
22809
|
usersWithRolesOnEntitlements?: Maybe<Array<Maybe<CommerceExpUserEntitlementRoles>>>;
|
|
22680
22810
|
version?: Maybe<Scalars['Int']['output']>;
|
|
22811
|
+
wallets?: Maybe<Array<Maybe<CommerceExpCcpWallet>>>;
|
|
22681
22812
|
};
|
|
22682
22813
|
export type CommerceExpCcpTransactionAccountCurrentUserPermissionsArgs = {
|
|
22683
22814
|
permissionIds: Array<Scalars['String']['input']>;
|
|
@@ -22717,6 +22848,28 @@ export type CommerceExpCcpTransactionAccountQuotes2Args = {
|
|
|
22717
22848
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
22718
22849
|
sort?: InputMaybe<Array<CommerceExpSort>>;
|
|
22719
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
|
+
};
|
|
22720
22873
|
export type CommerceExpChargeDetails = {
|
|
22721
22874
|
__typename?: 'CommerceExpChargeDetails';
|
|
22722
22875
|
chargeQuantities?: Maybe<Array<Maybe<CommerceExpChargeQuantity>>>;
|
|
@@ -22814,10 +22967,12 @@ export type CommerceExpContact = {
|
|
|
22814
22967
|
contactType?: Maybe<CommerceExpContactType>;
|
|
22815
22968
|
customerType?: Maybe<CommerceExpCustomerType>;
|
|
22816
22969
|
isPrimary?: Maybe<Scalars['Boolean']['output']>;
|
|
22970
|
+
principal?: Maybe<User>;
|
|
22817
22971
|
principalAri?: Maybe<Scalars['String']['output']>;
|
|
22818
22972
|
resourceAri?: Maybe<Scalars['String']['output']>;
|
|
22819
22973
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
22820
22974
|
updatedBy?: Maybe<Scalars['String']['output']>;
|
|
22975
|
+
userId?: Maybe<Scalars['String']['output']>;
|
|
22821
22976
|
};
|
|
22822
22977
|
export type CommerceExpContactInput = {
|
|
22823
22978
|
contactType: CommerceExpContactType;
|
|
@@ -23069,6 +23224,7 @@ export type CommerceExpCreateEntitlementOrderOptions = {
|
|
|
23069
23224
|
billingCycle?: InputMaybe<CommerceExpPricingPlanInterval>;
|
|
23070
23225
|
chargeQuantities?: InputMaybe<Array<CommerceExpChargeElementDetails>>;
|
|
23071
23226
|
invoiceGroupId?: InputMaybe<Scalars['ID']['input']>;
|
|
23227
|
+
matchTrialLength?: InputMaybe<Scalars['Boolean']['input']>;
|
|
23072
23228
|
pricingPlanId?: InputMaybe<Scalars['ID']['input']>;
|
|
23073
23229
|
provisioningRequestId?: InputMaybe<Scalars['ID']['input']>;
|
|
23074
23230
|
trial?: InputMaybe<CommerceExpTrialIntentInput>;
|
|
@@ -25504,6 +25660,10 @@ export declare enum CommerceExpVersionChangeEntityEnum {
|
|
|
25504
25660
|
PaymentMethodUpdated = "PAYMENT_METHOD_UPDATED",
|
|
25505
25661
|
ShipToUpdated = "SHIP_TO_UPDATED"
|
|
25506
25662
|
}
|
|
25663
|
+
export declare enum CommerceExpWalletCurrency {
|
|
25664
|
+
Jpy = "JPY",
|
|
25665
|
+
Usd = "USD"
|
|
25666
|
+
}
|
|
25507
25667
|
export type CommerceExpWalletInfo = {
|
|
25508
25668
|
__typename?: 'CommerceExpWalletInfo';
|
|
25509
25669
|
sourceId?: Maybe<Scalars['String']['output']>;
|
|
@@ -25528,6 +25688,11 @@ export type CommerceExpWalletPaymentMethodPaginatedEntitlementsArgs = {
|
|
|
25528
25688
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25529
25689
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
25530
25690
|
};
|
|
25691
|
+
export declare enum CommerceExpWalletStatus {
|
|
25692
|
+
Active = "ACTIVE",
|
|
25693
|
+
Closed = "CLOSED",
|
|
25694
|
+
Suspended = "SUSPENDED"
|
|
25695
|
+
}
|
|
25531
25696
|
export type CommerceExperienceCapability = {
|
|
25532
25697
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
25533
25698
|
isAvailableToUser?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -30785,6 +30950,18 @@ export type ConfluenceAccessLinkInfo = {
|
|
|
30785
30950
|
accessType: ConfluenceShareableLinkAccessType;
|
|
30786
30951
|
status: PublicLinkStatus;
|
|
30787
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
|
+
};
|
|
30788
30965
|
export type ConfluenceAccessRequestSettings = {
|
|
30789
30966
|
__typename?: 'ConfluenceAccessRequestSettings';
|
|
30790
30967
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -32980,6 +33157,7 @@ export type ConfluenceDevDocsDocTypeConfigInput = {
|
|
|
32980
33157
|
docTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
32981
33158
|
};
|
|
32982
33159
|
export type ConfluenceDevDocsRepositoryConfigInput = {
|
|
33160
|
+
customPrompt?: InputMaybe<Scalars['String']['input']>;
|
|
32983
33161
|
docTypes: Array<ConfluenceDevDocsDocTypeConfigInput>;
|
|
32984
33162
|
ref?: InputMaybe<Scalars['String']['input']>;
|
|
32985
33163
|
repoName: Scalars['String']['input'];
|
|
@@ -36553,6 +36731,7 @@ export type ConfluenceSiteConfiguration = {
|
|
|
36553
36731
|
isAddWildcardsToUserAndGroupSearchesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
36554
36732
|
isAnonymousAccessToRemoteApiEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
36555
36733
|
isContactAdministratorsFormEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
36734
|
+
isCwrRemixCreationEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
36556
36735
|
isDigestSlackNotificationEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
36557
36736
|
isEditorConversionForSiteEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
36558
36737
|
isEditorFullWidthEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -36619,6 +36798,16 @@ export type ConfluenceSlideLinks = {
|
|
|
36619
36798
|
base?: Maybe<Scalars['String']['output']>;
|
|
36620
36799
|
webUi?: Maybe<Scalars['String']['output']>;
|
|
36621
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
|
+
};
|
|
36622
36811
|
export declare enum ConfluenceSmartFolderSyncOutcome {
|
|
36623
36812
|
Ran = "RAN",
|
|
36624
36813
|
SkippedPaused = "SKIPPED_PAUSED",
|
|
@@ -37719,6 +37908,15 @@ export type ConfluenceUpdateCustomRolePayload = Payload & {
|
|
|
37719
37908
|
success: Scalars['Boolean']['output'];
|
|
37720
37909
|
taskId?: Maybe<Scalars['ID']['output']>;
|
|
37721
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
|
+
};
|
|
37722
37920
|
export type ConfluenceUpdateDefaultTitleEmojiInput = {
|
|
37723
37921
|
contentId: Scalars['ID']['input'];
|
|
37724
37922
|
defaultTitleEmoji: ConfluenceGraphQlDefaultTitleEmoji;
|
|
@@ -38817,8 +39015,11 @@ export type ContentContentAnalyticsViewsByUserArgs = {
|
|
|
38817
39015
|
accountIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
38818
39016
|
actorType?: InputMaybe<ConfluencePageAnalyticsActorType>;
|
|
38819
39017
|
engageTimeThreshold?: InputMaybe<Scalars['Int']['input']>;
|
|
39018
|
+
fromDate?: InputMaybe<Scalars['String']['input']>;
|
|
38820
39019
|
isPrivacyModeEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38821
39020
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
39021
|
+
timezone?: InputMaybe<Scalars['String']['input']>;
|
|
39022
|
+
toDate?: InputMaybe<Scalars['String']['input']>;
|
|
38822
39023
|
};
|
|
38823
39024
|
export type ContentContentStateArgs = {
|
|
38824
39025
|
isDraft?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -39537,7 +39738,6 @@ export type ConvoAiHomeThreadSuggestedAction = {
|
|
|
39537
39738
|
export declare enum ConvoAiHomeThreadSuggestedActionOriginType {
|
|
39538
39739
|
CommentRule = "COMMENT_RULE",
|
|
39539
39740
|
ConfluenceInlineTasksRule = "CONFLUENCE_INLINE_TASKS_RULE",
|
|
39540
|
-
ConfluencePageRule = "CONFLUENCE_PAGE_RULE",
|
|
39541
39741
|
ConfluenceTaggedPageRule = "CONFLUENCE_TAGGED_PAGE_RULE",
|
|
39542
39742
|
ConfluenceUpdatedPageRule = "CONFLUENCE_UPDATED_PAGE_RULE",
|
|
39543
39743
|
ConfluenceWatchedPageRule = "CONFLUENCE_WATCHED_PAGE_RULE",
|
|
@@ -39753,6 +39953,7 @@ export declare enum ConvoAiSearchAgentEffort {
|
|
|
39753
39953
|
Light = "LIGHT"
|
|
39754
39954
|
}
|
|
39755
39955
|
export type ConvoAiSearchAgentInput = {
|
|
39956
|
+
clientRequestId?: InputMaybe<Scalars['String']['input']>;
|
|
39756
39957
|
cloudId: Scalars['ID']['input'];
|
|
39757
39958
|
effort?: InputMaybe<ConvoAiSearchAgentEffort>;
|
|
39758
39959
|
maxSources?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -40553,6 +40754,12 @@ export type CplsGetContributorWorkAssociationsInput = {
|
|
|
40553
40754
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
40554
40755
|
workDataIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
40555
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
|
+
};
|
|
40556
40763
|
export type CplsImportCapacityDataInput = {
|
|
40557
40764
|
cloudId: Scalars['ID']['input'];
|
|
40558
40765
|
contributions?: InputMaybe<Array<CplsAddContributionInput>>;
|
|
@@ -40771,6 +40978,25 @@ export type CplsWorkConnection = {
|
|
|
40771
40978
|
edges?: Maybe<Array<CplsWorkEdge>>;
|
|
40772
40979
|
pageInfo: PageInfo;
|
|
40773
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
|
+
};
|
|
40774
41000
|
export type CplsWorkContributorConnection = {
|
|
40775
41001
|
__typename?: 'CplsWorkContributorConnection';
|
|
40776
41002
|
edges?: Maybe<Array<CplsWorkContributorEdge>>;
|
|
@@ -45415,6 +45641,7 @@ export type DevAiAutodevNextUnassignWorkItemPayload = Payload & {
|
|
|
45415
45641
|
};
|
|
45416
45642
|
export type DevAiAutodevNextUpdateWorkstreamInput = {
|
|
45417
45643
|
cloudId: Scalars['ID']['input'];
|
|
45644
|
+
loopType?: InputMaybe<DevAiAutodevNextWorkstreamLoopTypeInput>;
|
|
45418
45645
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
45419
45646
|
settings?: InputMaybe<DevAiAutodevNextWorkstreamSettingsInput>;
|
|
45420
45647
|
status?: InputMaybe<DevAiAutodevNextWorkstreamStatus>;
|
|
@@ -45541,6 +45768,9 @@ export type DevAiAutodevNextWorkstreamEdge = {
|
|
|
45541
45768
|
cursor: Scalars['String']['output'];
|
|
45542
45769
|
node: DevAiAutodevNextWorkstream;
|
|
45543
45770
|
};
|
|
45771
|
+
export type DevAiAutodevNextWorkstreamFilter = {
|
|
45772
|
+
ownership?: InputMaybe<DevAiAutodevNextWorkstreamOwnershipFilter>;
|
|
45773
|
+
};
|
|
45544
45774
|
export declare enum DevAiAutodevNextWorkstreamFindWorkMode {
|
|
45545
45775
|
BacklogScan = "BACKLOG_SCAN",
|
|
45546
45776
|
CodeScan = "CODE_SCAN"
|
|
@@ -45550,6 +45780,10 @@ export type DevAiAutodevNextWorkstreamLastSweep = {
|
|
|
45550
45780
|
completedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
45551
45781
|
startedAt: Scalars['DateTime']['output'];
|
|
45552
45782
|
};
|
|
45783
|
+
export declare enum DevAiAutodevNextWorkstreamLoopTypeInput {
|
|
45784
|
+
Admin = "ADMIN",
|
|
45785
|
+
User = "USER"
|
|
45786
|
+
}
|
|
45553
45787
|
export type DevAiAutodevNextWorkstreamMember = {
|
|
45554
45788
|
__typename?: 'DevAiAutodevNextWorkstreamMember';
|
|
45555
45789
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -45564,6 +45798,10 @@ export declare enum DevAiAutodevNextWorkstreamMemberRole {
|
|
|
45564
45798
|
Member = "MEMBER",
|
|
45565
45799
|
Owner = "OWNER"
|
|
45566
45800
|
}
|
|
45801
|
+
export type DevAiAutodevNextWorkstreamOwnershipFilter = {
|
|
45802
|
+
isOwner: Scalars['Boolean']['input'];
|
|
45803
|
+
userAri: Scalars['ID']['input'];
|
|
45804
|
+
};
|
|
45567
45805
|
export type DevAiAutodevNextWorkstreamSettings = {
|
|
45568
45806
|
__typename?: 'DevAiAutodevNextWorkstreamSettings';
|
|
45569
45807
|
assigneeAllowlist?: Maybe<Array<User>>;
|
|
@@ -50344,7 +50582,12 @@ export declare enum ExternalContentRepresentation {
|
|
|
50344
50582
|
}
|
|
50345
50583
|
export type ExternalContributor = {
|
|
50346
50584
|
__typename?: 'ExternalContributor';
|
|
50585
|
+
affiliation?: Maybe<Scalars['String']['output']>;
|
|
50586
|
+
hasAttended?: Maybe<Scalars['Boolean']['output']>;
|
|
50347
50587
|
interactionCount?: Maybe<Scalars['Long']['output']>;
|
|
50588
|
+
longestMonologueInSeconds?: Maybe<Scalars['Long']['output']>;
|
|
50589
|
+
role?: Maybe<Scalars['String']['output']>;
|
|
50590
|
+
talkTimeInSeconds?: Maybe<Scalars['Long']['output']>;
|
|
50348
50591
|
user?: Maybe<ExternalUser>;
|
|
50349
50592
|
};
|
|
50350
50593
|
export type ExternalConversation = Node & {
|
|
@@ -51743,6 +51986,7 @@ export type ExternalUserLinkedUsersArgs = {
|
|
|
51743
51986
|
export type ExternalVideo = Node & {
|
|
51744
51987
|
__typename?: 'ExternalVideo';
|
|
51745
51988
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
51989
|
+
belongsInSpace?: Maybe<ExternalAssociation>;
|
|
51746
51990
|
callOutcome?: Maybe<ExternalCallOutcome>;
|
|
51747
51991
|
chapters?: Maybe<Array<Maybe<ExternalChapter>>>;
|
|
51748
51992
|
commentCount?: Maybe<Scalars['Long']['output']>;
|
|
@@ -55089,6 +55333,8 @@ export type GraphInferenceInferenceQualityBucket = {
|
|
|
55089
55333
|
};
|
|
55090
55334
|
export type GraphInferenceInferenceQualityMetrics = {
|
|
55091
55335
|
__typename?: 'GraphInferenceInferenceQualityMetrics';
|
|
55336
|
+
cachedReadTokensSum?: Maybe<Scalars['Long']['output']>;
|
|
55337
|
+
cachedWriteTokensSum?: Maybe<Scalars['Long']['output']>;
|
|
55092
55338
|
claimMetricsReportedRuns?: Maybe<Scalars['Long']['output']>;
|
|
55093
55339
|
claimsGeneratedSum?: Maybe<Scalars['Long']['output']>;
|
|
55094
55340
|
claimsWithEvidenceSum?: Maybe<Scalars['Long']['output']>;
|
|
@@ -55118,6 +55364,7 @@ export type GraphInferenceInferenceQualityMetrics = {
|
|
|
55118
55364
|
taskRuns?: Maybe<Scalars['Long']['output']>;
|
|
55119
55365
|
tasksFailed?: Maybe<Scalars['Long']['output']>;
|
|
55120
55366
|
tasksSucceeded?: Maybe<Scalars['Long']['output']>;
|
|
55367
|
+
thoughtTokensSum?: Maybe<Scalars['Long']['output']>;
|
|
55121
55368
|
tokenUsageReportedRuns?: Maybe<Scalars['Long']['output']>;
|
|
55122
55369
|
totalTokensSum?: Maybe<Scalars['Long']['output']>;
|
|
55123
55370
|
};
|
|
@@ -55153,6 +55400,11 @@ export type GraphInferenceInferredProjectContext = {
|
|
|
55153
55400
|
cloudId: Scalars['String']['output'];
|
|
55154
55401
|
queryContext: Scalars['String']['output'];
|
|
55155
55402
|
};
|
|
55403
|
+
export type GraphInferenceInferredProjectEntity = {
|
|
55404
|
+
__typename?: 'GraphInferenceInferredProjectEntity';
|
|
55405
|
+
ari: Scalars['String']['output'];
|
|
55406
|
+
url: Scalars['String']['output'];
|
|
55407
|
+
};
|
|
55156
55408
|
export type GraphInferenceInferredProjectMeResponse = {
|
|
55157
55409
|
__typename?: 'GraphInferenceInferredProjectMeResponse';
|
|
55158
55410
|
apiVersion?: Maybe<Scalars['String']['output']>;
|
|
@@ -55169,6 +55421,18 @@ export type GraphInferenceInferredProjectPageInfo = {
|
|
|
55169
55421
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
55170
55422
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
55171
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
|
+
};
|
|
55172
55436
|
export type GraphInferenceInferredProjectViewer = {
|
|
55173
55437
|
__typename?: 'GraphInferenceInferredProjectViewer';
|
|
55174
55438
|
accountId: Scalars['String']['output'];
|
|
@@ -55383,6 +55647,15 @@ export type GraphIntegrationCreateDataConnectorConnectionInput = {
|
|
|
55383
55647
|
contextAri: Scalars['ID']['input'];
|
|
55384
55648
|
productAri: Scalars['ID']['input'];
|
|
55385
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
|
+
};
|
|
55386
55659
|
export type GraphIntegrationCreateSkillInput = {
|
|
55387
55660
|
contextAri: Scalars['ID']['input'];
|
|
55388
55661
|
description: Scalars['String']['input'];
|
|
@@ -60240,6 +60513,8 @@ export type GraphStore = {
|
|
|
60240
60513
|
userViewedGoalUpdateInverse?: Maybe<GraphStoreSimplifiedUserViewedGoalUpdateInverseConnection>;
|
|
60241
60514
|
userViewedGoalUpdateInverseBatch?: Maybe<GraphStoreBatchUserViewedGoalUpdateConnection>;
|
|
60242
60515
|
userViewedJiraIssue?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueConnection>;
|
|
60516
|
+
userViewedJiraIssueAnalyticsTest?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueAnalyticsTestConnection>;
|
|
60517
|
+
userViewedJiraIssueAnalyticsTestInverse?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueAnalyticsTestInverseConnection>;
|
|
60243
60518
|
userViewedJiraIssueInverse?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueInverseConnection>;
|
|
60244
60519
|
userViewedProjectUpdate?: Maybe<GraphStoreSimplifiedUserViewedProjectUpdateConnection>;
|
|
60245
60520
|
userViewedProjectUpdateBatch?: Maybe<GraphStoreBatchUserViewedProjectUpdateConnection>;
|
|
@@ -69371,6 +69646,22 @@ export type GraphStoreUserViewedJiraIssueArgs = {
|
|
|
69371
69646
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
69372
69647
|
sort?: InputMaybe<GraphStoreUserViewedJiraIssueSortInput>;
|
|
69373
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
|
+
};
|
|
69374
69665
|
export type GraphStoreUserViewedJiraIssueInverseArgs = {
|
|
69375
69666
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69376
69667
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -78081,6 +78372,10 @@ export type GraphStoreMeetingRecurrenceHasJiraProjectSortInput = {
|
|
|
78081
78372
|
export type GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageSortInput = {
|
|
78082
78373
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
78083
78374
|
};
|
|
78375
|
+
export type GraphStoreMemoryContentNodeMetadata = {
|
|
78376
|
+
__typename?: 'GraphStoreMemoryContentNodeMetadata';
|
|
78377
|
+
content?: Maybe<Scalars['String']['output']>;
|
|
78378
|
+
};
|
|
78084
78379
|
export type GraphStoreMercuryOrganizationHasAtlasGoalSortInput = {
|
|
78085
78380
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
78086
78381
|
};
|
|
@@ -78422,7 +78717,7 @@ export type GraphStoreMutationDeleteVersionUserAssociatedFeatureFlagArgs = {
|
|
|
78422
78717
|
export type GraphStoreMutationDeleteVulnerabilityAssociatedIssueArgs = {
|
|
78423
78718
|
input?: InputMaybe<GraphStoreDeleteVulnerabilityAssociatedIssueInput>;
|
|
78424
78719
|
};
|
|
78425
|
-
export type GraphStoreNodeMetadata = GraphStoreGraphMemoryNodeMetadata | GraphStoreInferredDecisionNodeMetadata | GraphStoreInferredProjectNodeMetadata | GraphStoreInferredTeamNodeMetadata;
|
|
78720
|
+
export type GraphStoreNodeMetadata = GraphStoreGraphMemoryNodeMetadata | GraphStoreInferredDecisionNodeMetadata | GraphStoreInferredProjectNodeMetadata | GraphStoreInferredTeamNodeMetadata | GraphStoreMemoryContentNodeMetadata;
|
|
78426
78721
|
export type GraphStoreNodeResponse = Node & {
|
|
78427
78722
|
__typename?: 'GraphStoreNodeResponse';
|
|
78428
78723
|
id: Scalars['ID']['output'];
|
|
@@ -92361,6 +92656,34 @@ export type GraphStoreSimplifiedUserViewedGoalUpdateInverseEdge = {
|
|
|
92361
92656
|
};
|
|
92362
92657
|
export type GraphStoreSimplifiedUserViewedGoalUpdateInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
92363
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;
|
|
92364
92687
|
export type GraphStoreSimplifiedUserViewedJiraIssueConnection = HasPageInfo & {
|
|
92365
92688
|
__typename?: 'GraphStoreSimplifiedUserViewedJiraIssueConnection';
|
|
92366
92689
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedJiraIssueEdge>>>;
|
|
@@ -93892,6 +94215,9 @@ export type GraphStoreUserViewedDocumentSortInput = {
|
|
|
93892
94215
|
export type GraphStoreUserViewedGoalUpdateSortInput = {
|
|
93893
94216
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
93894
94217
|
};
|
|
94218
|
+
export type GraphStoreUserViewedJiraIssueAnalyticsTestSortInput = {
|
|
94219
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
94220
|
+
};
|
|
93895
94221
|
export type GraphStoreUserViewedJiraIssueSortInput = {
|
|
93896
94222
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
93897
94223
|
};
|
|
@@ -118318,6 +118644,12 @@ export type GravityAddReactionPayload = Payload & {
|
|
|
118318
118644
|
errors?: Maybe<Array<MutationError>>;
|
|
118319
118645
|
success: Scalars['Boolean']['output'];
|
|
118320
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
|
+
};
|
|
118321
118653
|
export type GravityApplyDraftInput = {
|
|
118322
118654
|
draftId: Scalars['String']['input'];
|
|
118323
118655
|
};
|
|
@@ -118346,6 +118678,20 @@ export type GravityArrangementRow = {
|
|
|
118346
118678
|
export type GravityArrangementRowInput = {
|
|
118347
118679
|
issueIds: Array<Scalars['ID']['input']>;
|
|
118348
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
|
+
};
|
|
118349
118695
|
export type GravityCommentPayload = Payload & {
|
|
118350
118696
|
__typename?: 'GravityCommentPayload';
|
|
118351
118697
|
comment?: Maybe<GravityDraftComment>;
|
|
@@ -118686,6 +119032,10 @@ export declare enum GravitySortOrder {
|
|
|
118686
119032
|
Asc = "ASC",
|
|
118687
119033
|
Desc = "DESC"
|
|
118688
119034
|
}
|
|
119035
|
+
export type GravityStartAltaSessionInput = {
|
|
119036
|
+
agent: Scalars['String']['input'];
|
|
119037
|
+
prompt: Scalars['String']['input'];
|
|
119038
|
+
};
|
|
118689
119039
|
export type GravitySuggestedIdea = {
|
|
118690
119040
|
__typename?: 'GravitySuggestedIdea';
|
|
118691
119041
|
description: Scalars['String']['output'];
|
|
@@ -120313,6 +120663,7 @@ export type HelpCenterCreateTopicPayload = Payload & {
|
|
|
120313
120663
|
};
|
|
120314
120664
|
export type HelpCenterDeleteHubTranslationsInput = {
|
|
120315
120665
|
helpCenterAri: Scalars['ID']['input'];
|
|
120666
|
+
isDraft?: InputMaybe<Scalars['Boolean']['input']>;
|
|
120316
120667
|
locale: Scalars['String']['input'];
|
|
120317
120668
|
parentAri: Scalars['ID']['input'];
|
|
120318
120669
|
};
|
|
@@ -120432,6 +120783,7 @@ export type HelpCenterHubTranslationFieldInput = {
|
|
|
120432
120783
|
export type HelpCenterHubTranslationsInput = {
|
|
120433
120784
|
blocks: Array<HelpCenterHubTranslationBlockInput>;
|
|
120434
120785
|
helpCenterAri: Scalars['ID']['input'];
|
|
120786
|
+
isDraft?: InputMaybe<Scalars['Boolean']['input']>;
|
|
120435
120787
|
locale: Scalars['String']['input'];
|
|
120436
120788
|
parentAri: Scalars['ID']['input'];
|
|
120437
120789
|
};
|
|
@@ -121184,85 +121536,6 @@ export type HelpCentersConfig = {
|
|
|
121184
121536
|
};
|
|
121185
121537
|
export type HelpCentersConfigResult = HelpCentersConfig | QueryError;
|
|
121186
121538
|
export type HelpCentersListQueryResult = HelpCenterQueryResultConnection | QueryError;
|
|
121187
|
-
export type HelpExternalResource = Node & {
|
|
121188
|
-
__typename?: 'HelpExternalResource';
|
|
121189
|
-
containerAti: Scalars['String']['output'];
|
|
121190
|
-
containerId: Scalars['String']['output'];
|
|
121191
|
-
created: Scalars['String']['output'];
|
|
121192
|
-
description: Scalars['String']['output'];
|
|
121193
|
-
id: Scalars['ID']['output'];
|
|
121194
|
-
link: Scalars['String']['output'];
|
|
121195
|
-
resourceType: HelpExternalResourceLinkResourceType;
|
|
121196
|
-
title: Scalars['String']['output'];
|
|
121197
|
-
updated: Scalars['String']['output'];
|
|
121198
|
-
};
|
|
121199
|
-
export type HelpExternalResourceCreateInput = {
|
|
121200
|
-
containerAti: Scalars['String']['input'];
|
|
121201
|
-
containerId: Scalars['String']['input'];
|
|
121202
|
-
description: Scalars['String']['input'];
|
|
121203
|
-
link: Scalars['String']['input'];
|
|
121204
|
-
resourceType: HelpExternalResourceLinkResourceType;
|
|
121205
|
-
title: Scalars['String']['input'];
|
|
121206
|
-
};
|
|
121207
|
-
export type HelpExternalResourceEdge = {
|
|
121208
|
-
__typename?: 'HelpExternalResourceEdge';
|
|
121209
|
-
cursor: Scalars['String']['output'];
|
|
121210
|
-
node?: Maybe<HelpExternalResource>;
|
|
121211
|
-
};
|
|
121212
|
-
export declare enum HelpExternalResourceLinkResourceType {
|
|
121213
|
-
Channel = "CHANNEL",
|
|
121214
|
-
Knowledge = "KNOWLEDGE",
|
|
121215
|
-
RequestForm = "REQUEST_FORM"
|
|
121216
|
-
}
|
|
121217
|
-
export type HelpExternalResourceMutationApi = {
|
|
121218
|
-
__typename?: 'HelpExternalResourceMutationApi';
|
|
121219
|
-
createExternalResource?: Maybe<HelpExternalResourcePayload>;
|
|
121220
|
-
deleteExternalResource?: Maybe<HelpExternalResourcePayload>;
|
|
121221
|
-
updateExternalResource?: Maybe<HelpExternalResourcePayload>;
|
|
121222
|
-
};
|
|
121223
|
-
export type HelpExternalResourceMutationApiCreateExternalResourceArgs = {
|
|
121224
|
-
input: HelpExternalResourceCreateInput;
|
|
121225
|
-
};
|
|
121226
|
-
export type HelpExternalResourceMutationApiDeleteExternalResourceArgs = {
|
|
121227
|
-
id: Scalars['ID']['input'];
|
|
121228
|
-
};
|
|
121229
|
-
export type HelpExternalResourceMutationApiUpdateExternalResourceArgs = {
|
|
121230
|
-
input: HelpExternalResourceUpdateInput;
|
|
121231
|
-
};
|
|
121232
|
-
export type HelpExternalResourcePayload = Payload & {
|
|
121233
|
-
__typename?: 'HelpExternalResourcePayload';
|
|
121234
|
-
errors?: Maybe<Array<MutationError>>;
|
|
121235
|
-
externalResource?: Maybe<HelpExternalResource>;
|
|
121236
|
-
success: Scalars['Boolean']['output'];
|
|
121237
|
-
};
|
|
121238
|
-
export type HelpExternalResourceQueryApi = {
|
|
121239
|
-
__typename?: 'HelpExternalResourceQueryApi';
|
|
121240
|
-
getExternalResources?: Maybe<HelpExternalResourcesResult>;
|
|
121241
|
-
};
|
|
121242
|
-
export type HelpExternalResourceQueryApiGetExternalResourcesArgs = {
|
|
121243
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
121244
|
-
containerAti: Scalars['String']['input'];
|
|
121245
|
-
containerId: Scalars['String']['input'];
|
|
121246
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
121247
|
-
};
|
|
121248
|
-
export type HelpExternalResourceQueryError = {
|
|
121249
|
-
__typename?: 'HelpExternalResourceQueryError';
|
|
121250
|
-
extensions?: Maybe<Array<QueryErrorExtension>>;
|
|
121251
|
-
message?: Maybe<Scalars['String']['output']>;
|
|
121252
|
-
};
|
|
121253
|
-
export type HelpExternalResourceUpdateInput = {
|
|
121254
|
-
description: Scalars['String']['input'];
|
|
121255
|
-
id: Scalars['ID']['input'];
|
|
121256
|
-
link: Scalars['String']['input'];
|
|
121257
|
-
title: Scalars['String']['input'];
|
|
121258
|
-
};
|
|
121259
|
-
export type HelpExternalResources = {
|
|
121260
|
-
__typename?: 'HelpExternalResources';
|
|
121261
|
-
edges: Array<Maybe<HelpExternalResourceEdge>>;
|
|
121262
|
-
pageInfo: PageInfo;
|
|
121263
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
121264
|
-
};
|
|
121265
|
-
export type HelpExternalResourcesResult = HelpExternalResourceQueryError | HelpExternalResources;
|
|
121266
121539
|
export type HelpLayout = Node & {
|
|
121267
121540
|
__typename?: 'HelpLayout';
|
|
121268
121541
|
id: Scalars['ID']['output'];
|
|
@@ -124263,6 +124536,7 @@ export type JiraAgentSessionsField = JiraIssueField & JiraIssueFieldConfiguratio
|
|
|
124263
124536
|
__typename?: 'JiraAgentSessionsField';
|
|
124264
124537
|
agentSessions?: Maybe<JiraAgentSessionConnection>;
|
|
124265
124538
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
124539
|
+
canInvokeAgent?: Maybe<Scalars['Boolean']['output']>;
|
|
124266
124540
|
description?: Maybe<Scalars['String']['output']>;
|
|
124267
124541
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
124268
124542
|
fieldId: Scalars['String']['output'];
|
|
@@ -124290,6 +124564,10 @@ export type JiraAgentSessionsScopeInput = {
|
|
|
124290
124564
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
124291
124565
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
124292
124566
|
};
|
|
124567
|
+
export type JiraAgentSessionsUpdatedNoEnrichmentEvent = {
|
|
124568
|
+
__typename?: 'JiraAgentSessionsUpdatedNoEnrichmentEvent';
|
|
124569
|
+
issueId?: Maybe<Scalars['ID']['output']>;
|
|
124570
|
+
};
|
|
124293
124571
|
export type JiraAgentSpaceInstruction = {
|
|
124294
124572
|
__typename?: 'JiraAgentSpaceInstruction';
|
|
124295
124573
|
agentAri?: Maybe<Scalars['ID']['output']>;
|
|
@@ -126189,6 +126467,7 @@ export type JiraBaseNextActionsEntity = {
|
|
|
126189
126467
|
};
|
|
126190
126468
|
export type JiraBaseTimelineView = {
|
|
126191
126469
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
126470
|
+
childIssuesJql?: Maybe<Scalars['String']['output']>;
|
|
126192
126471
|
conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
|
|
126193
126472
|
error?: Maybe<QueryError>;
|
|
126194
126473
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
@@ -126414,6 +126693,7 @@ export type JiraBoardView = JiraView & Node & {
|
|
|
126414
126693
|
__typename?: 'JiraBoardView';
|
|
126415
126694
|
autoCompleteSprintErrorCount?: Maybe<Scalars['Int']['output']>;
|
|
126416
126695
|
availableTransitionsForIssue?: Maybe<JiraTransitionConnection>;
|
|
126696
|
+
availableTransitionsForIssues?: Maybe<JiraTransitionConnection>;
|
|
126417
126697
|
backlogStatuses?: Maybe<JiraBoardViewStatusConnection>;
|
|
126418
126698
|
board?: Maybe<JiraBoard>;
|
|
126419
126699
|
canArchiveIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -126463,6 +126743,11 @@ export type JiraBoardViewAvailableTransitionsForIssueArgs = {
|
|
|
126463
126743
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
126464
126744
|
issueId: Scalars['ID']['input'];
|
|
126465
126745
|
};
|
|
126746
|
+
export type JiraBoardViewAvailableTransitionsForIssuesArgs = {
|
|
126747
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
126748
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
126749
|
+
issueIds: Array<Scalars['ID']['input']>;
|
|
126750
|
+
};
|
|
126466
126751
|
export type JiraBoardViewBacklogStatusesArgs = {
|
|
126467
126752
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
126468
126753
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -127141,43 +127426,42 @@ export type JiraBulkMergeValidationResponse = {
|
|
|
127141
127426
|
success: Scalars['Boolean']['output'];
|
|
127142
127427
|
};
|
|
127143
127428
|
export type JiraBulkMergeValidationResult = JiraBulkMergeValidationResponse | QueryError;
|
|
127144
|
-
export type
|
|
127429
|
+
export type JiraBulkMoveClassificationInput = {
|
|
127145
127430
|
sourceClassificationIds: Array<Scalars['ID']['input']>;
|
|
127146
127431
|
targetClassificationId: Scalars['ID']['input'];
|
|
127147
127432
|
};
|
|
127148
|
-
export type JiraBulkMoveClassificationMappingInput = {
|
|
127149
|
-
classifications: Array<JiraBulkMoveClassificationEntryInput>;
|
|
127150
|
-
sourceIssueTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
127151
|
-
sourceProjectId?: InputMaybe<Scalars['ID']['input']>;
|
|
127152
|
-
};
|
|
127153
127433
|
export type JiraBulkMoveInput = {
|
|
127154
127434
|
inferClassificationDefaults: Scalars['Boolean']['input'];
|
|
127155
127435
|
inferFieldDefaults: Scalars['Boolean']['input'];
|
|
127156
127436
|
inferStatusDefaults: Scalars['Boolean']['input'];
|
|
127157
|
-
|
|
127437
|
+
inferSubtaskTypeDefaults: Scalars['Boolean']['input'];
|
|
127158
127438
|
inputId: Scalars['String']['input'];
|
|
127159
127439
|
selectedIssueIds: Array<Scalars['ID']['input']>;
|
|
127160
|
-
|
|
127440
|
+
targetClassifications?: InputMaybe<Array<JiraBulkMoveClassificationInput>>;
|
|
127161
127441
|
targetIssueTypeId: Scalars['ID']['input'];
|
|
127162
|
-
targetMandatoryFields?: InputMaybe<Array<
|
|
127442
|
+
targetMandatoryFields?: InputMaybe<Array<JiraBulkMoveMandatoryFieldInput>>;
|
|
127163
127443
|
targetParentIssueId?: InputMaybe<Scalars['ID']['input']>;
|
|
127164
127444
|
targetProjectId: Scalars['ID']['input'];
|
|
127165
|
-
|
|
127445
|
+
targetStatuses?: InputMaybe<Array<JiraBulkMoveStatusInput>>;
|
|
127166
127446
|
};
|
|
127167
|
-
export type
|
|
127168
|
-
|
|
127169
|
-
|
|
127170
|
-
|
|
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;
|
|
127171
127456
|
};
|
|
127172
|
-
export
|
|
127457
|
+
export declare enum JiraBulkMoveMandatoryFieldValueType {
|
|
127458
|
+
Adf = "ADF",
|
|
127459
|
+
Raw = "RAW"
|
|
127460
|
+
}
|
|
127461
|
+
export type JiraBulkMoveStatusInput = {
|
|
127173
127462
|
sourceStatusIds: Array<Scalars['ID']['input']>;
|
|
127174
127463
|
targetStatusId: Scalars['ID']['input'];
|
|
127175
127464
|
};
|
|
127176
|
-
export type JiraBulkMoveStatusMappingInput = {
|
|
127177
|
-
sourceIssueTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
127178
|
-
sourceProjectId?: InputMaybe<Scalars['ID']['input']>;
|
|
127179
|
-
statuses: Array<JiraBulkMoveStatusEntryInput>;
|
|
127180
|
-
};
|
|
127181
127465
|
export type JiraBulkOperationInput = {
|
|
127182
127466
|
bulkDeleteInput?: InputMaybe<JiraBulkDeleteInput>;
|
|
127183
127467
|
bulkEditInput?: InputMaybe<JiraBulkEditInput>;
|
|
@@ -128471,6 +128755,7 @@ export declare enum JiraCollapsibleSection {
|
|
|
128471
128755
|
Activity = "ACTIVITY",
|
|
128472
128756
|
AiPanelServicedesk = "AI_PANEL_SERVICEDESK",
|
|
128473
128757
|
Attachments = "ATTACHMENTS",
|
|
128758
|
+
CaseNotesServicedesk = "CASE_NOTES_SERVICEDESK",
|
|
128474
128759
|
ChildWorkItem = "CHILD_WORK_ITEM",
|
|
128475
128760
|
Description = "DESCRIPTION",
|
|
128476
128761
|
IncidentSuggestedResourcesServicedesk = "INCIDENT_SUGGESTED_RESOURCES_SERVICEDESK",
|
|
@@ -128628,6 +128913,14 @@ export type JiraComponentFieldOperationInput = {
|
|
|
128628
128913
|
ids: Array<Scalars['ID']['input']>;
|
|
128629
128914
|
operation: JiraMultiValueFieldOperations;
|
|
128630
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
|
+
}
|
|
128631
128924
|
export type JiraComponentInput = {
|
|
128632
128925
|
componentId: Scalars['ID']['input'];
|
|
128633
128926
|
};
|
|
@@ -130795,9 +131088,14 @@ export type JiraEditFieldSchemeInput = {
|
|
|
130795
131088
|
name: Scalars['String']['input'];
|
|
130796
131089
|
schemeId: Scalars['ID']['input'];
|
|
130797
131090
|
};
|
|
131091
|
+
export declare enum JiraEligibleProjectTemplateUsageFilter {
|
|
131092
|
+
RegularProjectsOnly = "REGULAR_PROJECTS_ONLY",
|
|
131093
|
+
TemplateBaseProjectsOnly = "TEMPLATE_BASE_PROJECTS_ONLY"
|
|
131094
|
+
}
|
|
130798
131095
|
export type JiraEligibleProjectsFilter = {
|
|
130799
131096
|
projectCategoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
130800
131097
|
projectCategoryIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
131098
|
+
projectTemplateUsage?: InputMaybe<JiraEligibleProjectTemplateUsageFilter>;
|
|
130801
131099
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
130802
131100
|
};
|
|
130803
131101
|
export declare enum JiraEmailMimeType {
|
|
@@ -131885,6 +132183,25 @@ export type JiraFlatOptionEdge = {
|
|
|
131885
132183
|
cursor: Scalars['String']['output'];
|
|
131886
132184
|
node?: Maybe<JiraFlatOption>;
|
|
131887
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
|
+
};
|
|
131888
132205
|
export type JiraForgeAppEgressDeclaration = {
|
|
131889
132206
|
__typename?: 'JiraForgeAppEgressDeclaration';
|
|
131890
132207
|
addresses?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -132923,6 +133240,7 @@ export type JiraGroupedListViewViewSettingsArgs = {
|
|
|
132923
133240
|
export type JiraGroupedTimelineView = JiraBaseTimelineView & JiraFieldSetsViewMetadata & JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
132924
133241
|
__typename?: 'JiraGroupedTimelineView';
|
|
132925
133242
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
133243
|
+
childIssuesJql?: Maybe<Scalars['String']['output']>;
|
|
132926
133244
|
conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
|
|
132927
133245
|
defaultJql?: Maybe<Scalars['String']['output']>;
|
|
132928
133246
|
error?: Maybe<QueryError>;
|
|
@@ -133152,6 +133470,7 @@ export type JiraIccActivityValue = {
|
|
|
133152
133470
|
groupName?: Maybe<Scalars['String']['output']>;
|
|
133153
133471
|
hypothesisCount?: Maybe<Scalars['String']['output']>;
|
|
133154
133472
|
incidentName?: Maybe<Scalars['String']['output']>;
|
|
133473
|
+
mitigationVersion?: Maybe<Scalars['String']['output']>;
|
|
133155
133474
|
planName?: Maybe<Scalars['String']['output']>;
|
|
133156
133475
|
status?: Maybe<Scalars['String']['output']>;
|
|
133157
133476
|
statusPageIncidentId?: Maybe<Scalars['String']['output']>;
|
|
@@ -133474,6 +133793,7 @@ export type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScenarioIssu
|
|
|
133474
133793
|
mercuryProjectStatus?: Maybe<MercuryProjectStatus>;
|
|
133475
133794
|
mercuryProjectType?: Maybe<MercuryProjectType>;
|
|
133476
133795
|
mercuryProjectUrl?: Maybe<Scalars['URL']['output']>;
|
|
133796
|
+
mercuryStartDate?: Maybe<Scalars['DateTime']['output']>;
|
|
133477
133797
|
mercuryTargetDate?: Maybe<Scalars['String']['output']>;
|
|
133478
133798
|
mercuryTargetDateEnd?: Maybe<Scalars['DateTime']['output']>;
|
|
133479
133799
|
mercuryTargetDateStart?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -134263,6 +134583,10 @@ export type JiraIssueCreateAdditionalServicesServicesArgs = {
|
|
|
134263
134583
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
134264
134584
|
};
|
|
134265
134585
|
export type JiraIssueCreateAdditionalServicesResult = JiraIssueCreateAdditionalServices | QueryError;
|
|
134586
|
+
export type JiraIssueCreateContextInput = {
|
|
134587
|
+
jqls?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
134588
|
+
linkedIssue?: InputMaybe<JiraLinkedIssueCreateInput>;
|
|
134589
|
+
};
|
|
134266
134590
|
export type JiraIssueCreateFieldValidationRule = {
|
|
134267
134591
|
errorMessage?: InputMaybe<Scalars['String']['input']>;
|
|
134268
134592
|
fields: Array<Scalars['String']['input']>;
|
|
@@ -134337,6 +134661,10 @@ export type JiraIssueCreateServiceEdge = {
|
|
|
134337
134661
|
cursor: Scalars['String']['output'];
|
|
134338
134662
|
node?: Maybe<JiraIssueCreateService>;
|
|
134339
134663
|
};
|
|
134664
|
+
export declare enum JiraIssueCreateTypeFilter {
|
|
134665
|
+
LinkedIssueCreate = "LINKED_ISSUE_CREATE",
|
|
134666
|
+
Standard = "STANDARD"
|
|
134667
|
+
}
|
|
134340
134668
|
export type JiraIssueCreateValidationRule = {
|
|
134341
134669
|
fieldValidations?: InputMaybe<Array<JiraIssueCreateFieldValidationRule>>;
|
|
134342
134670
|
};
|
|
@@ -137670,6 +137998,11 @@ export type JiraLinkedIssueConnectionPageCursorsArgs = {
|
|
|
137670
137998
|
maxCursors: Scalars['Int']['input'];
|
|
137671
137999
|
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
137672
138000
|
};
|
|
138001
|
+
export type JiraLinkedIssueCreateInput = {
|
|
138002
|
+
includeAttachments?: InputMaybe<Scalars['Boolean']['input']>;
|
|
138003
|
+
includeLinks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
138004
|
+
sourceIssueId: Scalars['ID']['input'];
|
|
138005
|
+
};
|
|
137673
138006
|
export type JiraLinkedIssuesInput = {
|
|
137674
138007
|
inwardIssues?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
137675
138008
|
outwardIssues?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -141237,6 +141570,12 @@ export type JiraPolicyRulesByDomainInput = {
|
|
|
141237
141570
|
domain: Scalars['String']['input'];
|
|
141238
141571
|
rules: Array<JiraPolicyRuleInput>;
|
|
141239
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
|
+
};
|
|
141240
141579
|
export type JiraPostIncidentReviewLink = Node & {
|
|
141241
141580
|
__typename?: 'JiraPostIncidentReviewLink';
|
|
141242
141581
|
id: Scalars['ID']['output'];
|
|
@@ -141471,6 +141810,7 @@ export type JiraProject = Node & {
|
|
|
141471
141810
|
linkedOperationsIncidentsByProject?: Maybe<GraphStoreSimplifiedJswProjectAssociatedIncidentConnection>;
|
|
141472
141811
|
linkedSecurityContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
141473
141812
|
linkedSecurityVulnerabilitiesByProject?: Maybe<GraphJiraVulnerabilityConnection>;
|
|
141813
|
+
manageWorkflowUrl?: Maybe<Scalars['String']['output']>;
|
|
141474
141814
|
mostRecentlyViewedBoard?: Maybe<JiraBoardResult>;
|
|
141475
141815
|
name: Scalars['String']['output'];
|
|
141476
141816
|
navigationItems?: Maybe<JiraNavigationItemConnection>;
|
|
@@ -141568,6 +141908,7 @@ export type JiraProjectCapabilitiesArgs = {
|
|
|
141568
141908
|
export type JiraProjectComponentsArgs = {
|
|
141569
141909
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
141570
141910
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
141911
|
+
filterById?: InputMaybe<JiraComponentIdsFilterInput>;
|
|
141571
141912
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
141572
141913
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
141573
141914
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -142229,10 +142570,12 @@ export type JiraProjectPolicy = Node & {
|
|
|
142229
142570
|
associatedProjects?: Maybe<JiraProjectPolicyAssociationConnection>;
|
|
142230
142571
|
description?: Maybe<Scalars['String']['output']>;
|
|
142231
142572
|
eligibleProjects?: Maybe<JiraProjectConnection>;
|
|
142573
|
+
hasViolation?: Maybe<Scalars['Boolean']['output']>;
|
|
142232
142574
|
id: Scalars['ID']['output'];
|
|
142233
142575
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
142234
142576
|
name?: Maybe<Scalars['String']['output']>;
|
|
142235
142577
|
rules?: Maybe<JiraProjectPolicyRuleConnection>;
|
|
142578
|
+
violatingProjects?: Maybe<JiraPolicyViolatingProjectsConnection>;
|
|
142236
142579
|
};
|
|
142237
142580
|
export type JiraProjectPolicyAssociatedProjectsArgs = {
|
|
142238
142581
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -142250,6 +142593,11 @@ export type JiraProjectPolicyRulesArgs = {
|
|
|
142250
142593
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
142251
142594
|
ruleTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
142252
142595
|
};
|
|
142596
|
+
export type JiraProjectPolicyViolatingProjectsArgs = {
|
|
142597
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
142598
|
+
filter?: InputMaybe<JiraProjectPolicyProjectFilter>;
|
|
142599
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
142600
|
+
};
|
|
142253
142601
|
export type JiraProjectPolicyAssociation = {
|
|
142254
142602
|
__typename?: 'JiraProjectPolicyAssociation';
|
|
142255
142603
|
complianceState?: Maybe<JiraProjectPolicyComplianceState>;
|
|
@@ -142781,6 +143129,7 @@ export type JiraQuery = {
|
|
|
142781
143129
|
filter?: Maybe<JiraFilter>;
|
|
142782
143130
|
filters?: Maybe<Array<Maybe<JiraFilter>>>;
|
|
142783
143131
|
fixFormulaFieldExpression?: Maybe<JiraFormulaFieldSuggestedExpressionResult>;
|
|
143132
|
+
forYou_agentReadinessProfile?: Maybe<JiraForYouAgentReadinessProfile>;
|
|
142784
143133
|
forYou_recommendedActions?: Maybe<JiraRecommendedActionCategoryConnection>;
|
|
142785
143134
|
forge: JiraForgeQuery;
|
|
142786
143135
|
formattingRulesByProject?: Maybe<JiraFormattingRuleConnection>;
|
|
@@ -143014,7 +143363,7 @@ export type JiraQueryAgentSessionsByScopeArgs = {
|
|
|
143014
143363
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
143015
143364
|
cloudId: Scalars['ID']['input'];
|
|
143016
143365
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
143017
|
-
isDeleted
|
|
143366
|
+
isDeleted?: InputMaybe<Scalars['Boolean']['input']>;
|
|
143018
143367
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
143019
143368
|
scope: JiraAgentSessionsScopeInput;
|
|
143020
143369
|
state?: InputMaybe<JiraAgentSessionStateCategory>;
|
|
@@ -143351,6 +143700,9 @@ export type JiraQueryFixFormulaFieldExpressionArgs = {
|
|
|
143351
143700
|
cloudId: Scalars['ID']['input'];
|
|
143352
143701
|
suggestionContext: JiraFormulaFieldFixContext;
|
|
143353
143702
|
};
|
|
143703
|
+
export type JiraQueryForYou_AgentReadinessProfileArgs = {
|
|
143704
|
+
cloudId: Scalars['ID']['input'];
|
|
143705
|
+
};
|
|
143354
143706
|
export type JiraQueryForYou_RecommendedActionsArgs = {
|
|
143355
143707
|
cloudId: Scalars['ID']['input'];
|
|
143356
143708
|
};
|
|
@@ -144480,11 +144832,13 @@ export type JiraRecentItemsFilter = {
|
|
|
144480
144832
|
types?: InputMaybe<Array<JiraSearchableEntityType>>;
|
|
144481
144833
|
};
|
|
144482
144834
|
export declare enum JiraRecommendationCategory {
|
|
144835
|
+
Component = "COMPONENT",
|
|
144483
144836
|
CustomField = "CUSTOM_FIELD",
|
|
144484
144837
|
IssueArchival = "ISSUE_ARCHIVAL",
|
|
144485
144838
|
PermissionGrantScheme = "PERMISSION_GRANT_SCHEME",
|
|
144486
144839
|
ProjectCleanup = "PROJECT_CLEANUP",
|
|
144487
144840
|
ProjectRoleActor = "PROJECT_ROLE_ACTOR",
|
|
144841
|
+
Release = "RELEASE",
|
|
144488
144842
|
WorkflowScheme = "WORKFLOW_SCHEME",
|
|
144489
144843
|
WorkflowStatus = "WORKFLOW_STATUS"
|
|
144490
144844
|
}
|
|
@@ -149450,6 +149804,7 @@ export type JiraSubscription = {
|
|
|
149450
149804
|
onAiAgentSessionCreateByProjects?: Maybe<JiraAgentSessionCreateEvent>;
|
|
149451
149805
|
onAiAgentSessionCreateV2?: Maybe<JiraAgentSessionCreateEvent>;
|
|
149452
149806
|
onAiAgentSessionCreateV3?: Maybe<JiraAgentSessionCreateEvent>;
|
|
149807
|
+
onAiAgentSessionsUpdatedByScopeNoEnrichment?: Maybe<JiraAgentSessionsUpdatedNoEnrichmentEvent>;
|
|
149453
149808
|
onAttachmentCreatedByProjects?: Maybe<JiraPlatformAttachment>;
|
|
149454
149809
|
onAttachmentCreatedByProjectsV2?: Maybe<JiraAttachmentByAriResult>;
|
|
149455
149810
|
onAttachmentDeletedByProjects?: Maybe<JiraAttachmentDeletedStreamHubPayload>;
|
|
@@ -149507,6 +149862,10 @@ export type JiraSubscriptionOnAiAgentSessionCreateV3Args = {
|
|
|
149507
149862
|
cloudId: Scalars['ID']['input'];
|
|
149508
149863
|
issueId: Scalars['String']['input'];
|
|
149509
149864
|
};
|
|
149865
|
+
export type JiraSubscriptionOnAiAgentSessionsUpdatedByScopeNoEnrichmentArgs = {
|
|
149866
|
+
cloudId: Scalars['ID']['input'];
|
|
149867
|
+
scope?: InputMaybe<JiraAgentSessionsScopeInput>;
|
|
149868
|
+
};
|
|
149510
149869
|
export type JiraSubscriptionOnAttachmentCreatedByProjectsArgs = {
|
|
149511
149870
|
cloudId: Scalars['ID']['input'];
|
|
149512
149871
|
projectIds: Array<Scalars['String']['input']>;
|
|
@@ -149798,6 +150157,7 @@ export type JiraTabLayout = {
|
|
|
149798
150157
|
id: Scalars['ID']['output'];
|
|
149799
150158
|
items: Array<JiraFieldLayoutItem>;
|
|
149800
150159
|
name: Scalars['String']['output'];
|
|
150160
|
+
rankedItems?: Maybe<Array<Maybe<JiraFieldLayoutItem>>>;
|
|
149801
150161
|
tabId?: Maybe<Scalars['String']['output']>;
|
|
149802
150162
|
};
|
|
149803
150163
|
export type JiraTeam = Node & {
|
|
@@ -150112,6 +150472,7 @@ export type JiraTimelineStaticViewInput = {
|
|
|
150112
150472
|
export type JiraTimelineView = JiraBaseTimelineView & JiraFieldSetsViewMetadata & JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
150113
150473
|
__typename?: 'JiraTimelineView';
|
|
150114
150474
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
150475
|
+
childIssuesJql?: Maybe<Scalars['String']['output']>;
|
|
150115
150476
|
conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
|
|
150116
150477
|
error?: Maybe<QueryError>;
|
|
150117
150478
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
@@ -150335,6 +150696,7 @@ export type JiraTransitionAgent = {
|
|
|
150335
150696
|
export type JiraTransitionAgentRule = {
|
|
150336
150697
|
__typename?: 'JiraTransitionAgentRule';
|
|
150337
150698
|
agent: JiraTransitionAgent;
|
|
150699
|
+
conditionExpression?: Maybe<Scalars['String']['output']>;
|
|
150338
150700
|
promptValue?: Maybe<Scalars['String']['output']>;
|
|
150339
150701
|
ruleId?: Maybe<Scalars['ID']['output']>;
|
|
150340
150702
|
};
|
|
@@ -154584,6 +154946,7 @@ export type JsmChannelsServiceAgentResolutionPlan = {
|
|
|
154584
154946
|
__typename?: 'JsmChannelsServiceAgentResolutionPlan';
|
|
154585
154947
|
contentSources?: Maybe<Array<Maybe<JsmChannelsServiceAgentResolutionContentSource>>>;
|
|
154586
154948
|
customPlanNodeAttributes?: Maybe<Array<JsmChannelsCustomPlanNodeAttribute>>;
|
|
154949
|
+
generatedFromSimilarPlans?: Maybe<Scalars['Boolean']['output']>;
|
|
154587
154950
|
isRetriable: Scalars['Boolean']['output'];
|
|
154588
154951
|
planId?: Maybe<Scalars['ID']['output']>;
|
|
154589
154952
|
runbooks?: Maybe<Array<Maybe<JsmChannelsServiceAgentResolutionRunbook>>>;
|
|
@@ -155869,6 +156232,56 @@ export type JsmTelemetryIncidentResponderField = {
|
|
|
155869
156232
|
fieldId?: Maybe<Scalars['String']['output']>;
|
|
155870
156233
|
value: Array<JsmTelemetryIncidentResponder>;
|
|
155871
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
|
+
};
|
|
155872
156285
|
export type JsmTelemetryIncidentStatus = {
|
|
155873
156286
|
__typename?: 'JsmTelemetryIncidentStatus';
|
|
155874
156287
|
id?: Maybe<Scalars['String']['output']>;
|
|
@@ -156218,6 +156631,13 @@ export type JsmTelemetryServiceInfo = {
|
|
|
156218
156631
|
apiStatus: Scalars['String']['output'];
|
|
156219
156632
|
serviceName: Scalars['String']['output'];
|
|
156220
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
|
+
};
|
|
156221
156641
|
export declare enum JsmTelemetrySource {
|
|
156222
156642
|
AiRecommended = "AI_RECOMMENDED",
|
|
156223
156643
|
Hypothesis = "HYPOTHESIS",
|
|
@@ -156694,10 +157114,70 @@ export type KitsuneCreateConnectorConfigPayload = Payload & {
|
|
|
156694
157114
|
errors?: Maybe<Array<MutationError>>;
|
|
156695
157115
|
success: Scalars['Boolean']['output'];
|
|
156696
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
|
+
};
|
|
156697
157125
|
export type KitsuneCreateFieldOptionInput = {
|
|
156698
157126
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
156699
157127
|
name: Scalars['String']['input'];
|
|
156700
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
|
+
};
|
|
156701
157181
|
export type KitsuneCustomer = {
|
|
156702
157182
|
__typename?: 'KitsuneCustomer';
|
|
156703
157183
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -156754,6 +157234,24 @@ export type KitsuneDateValue = {
|
|
|
156754
157234
|
_id: Scalars['ID']['output'];
|
|
156755
157235
|
value: Scalars['Date']['output'];
|
|
156756
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
|
+
};
|
|
156757
157255
|
export type KitsuneDeletedRecord = {
|
|
156758
157256
|
__typename?: 'KitsuneDeletedRecord';
|
|
156759
157257
|
id: Scalars['ID']['output'];
|
|
@@ -156957,6 +157455,15 @@ export type KitsuneFilterValueInput = {
|
|
|
156957
157455
|
valueNumber?: InputMaybe<Array<Scalars['Float']['input']>>;
|
|
156958
157456
|
valueText?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
156959
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
|
+
};
|
|
156960
157467
|
export type KitsuneHighlightFragment = {
|
|
156961
157468
|
__typename?: 'KitsuneHighlightFragment';
|
|
156962
157469
|
text: Scalars['String']['output'];
|
|
@@ -157010,6 +157517,16 @@ export type KitsuneInsightSuggestion = {
|
|
|
157010
157517
|
matchedContent: Scalars['String']['output'];
|
|
157011
157518
|
score?: Maybe<Scalars['Float']['output']>;
|
|
157012
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
|
+
};
|
|
157013
157530
|
export type KitsuneJob = {
|
|
157014
157531
|
__typename?: 'KitsuneJob';
|
|
157015
157532
|
completedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -157047,10 +157564,39 @@ export declare enum KitsuneJobType {
|
|
|
157047
157564
|
SyncCustomer = "SYNC_CUSTOMER",
|
|
157048
157565
|
UpdateFeedback = "UPDATE_FEEDBACK"
|
|
157049
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
|
+
};
|
|
157050
157577
|
export declare enum KitsuneLogicalOperator {
|
|
157051
157578
|
And = "AND",
|
|
157052
157579
|
Or = "OR"
|
|
157053
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
|
+
};
|
|
157054
157600
|
export type KitsuneNode = {
|
|
157055
157601
|
_id: Scalars['ID']['output'];
|
|
157056
157602
|
};
|
|
@@ -157099,6 +157645,15 @@ export type KitsuneRankInput = {
|
|
|
157099
157645
|
after?: InputMaybe<Scalars['ID']['input']>;
|
|
157100
157646
|
before?: InputMaybe<Scalars['ID']['input']>;
|
|
157101
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
|
+
};
|
|
157102
157657
|
export type KitsuneRemoveConnectorConfigInput = {
|
|
157103
157658
|
workspaceAri: Scalars['ID']['input'];
|
|
157104
157659
|
};
|
|
@@ -157108,6 +157663,28 @@ export type KitsuneRemoveConnectorConfigPayload = Payload & {
|
|
|
157108
157663
|
id?: Maybe<Scalars['ID']['output']>;
|
|
157109
157664
|
success: Scalars['Boolean']['output'];
|
|
157110
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
|
+
};
|
|
157111
157688
|
export type KitsuneRollupInput = {
|
|
157112
157689
|
externalId?: InputMaybe<Scalars['ID']['input']>;
|
|
157113
157690
|
ideaAri?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -157160,6 +157737,12 @@ export type KitsuneSectionViewsArgs = {
|
|
|
157160
157737
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
157161
157738
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
157162
157739
|
};
|
|
157740
|
+
export type KitsuneSectionPayload = Payload & {
|
|
157741
|
+
__typename?: 'KitsuneSectionPayload';
|
|
157742
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157743
|
+
section?: Maybe<KitsuneSection>;
|
|
157744
|
+
success: Scalars['Boolean']['output'];
|
|
157745
|
+
};
|
|
157163
157746
|
export type KitsuneSnippet = Node & {
|
|
157164
157747
|
__typename?: 'KitsuneSnippet';
|
|
157165
157748
|
aupViolationCategory?: Maybe<Scalars['String']['output']>;
|
|
@@ -157383,6 +157966,7 @@ export type KitsuneSourceInputWeb = {
|
|
|
157383
157966
|
export type KitsuneSpace = Node & {
|
|
157384
157967
|
__typename?: 'KitsuneSpace';
|
|
157385
157968
|
accessLevel: KitsuneSpaceAccessLevel;
|
|
157969
|
+
accessPrincipals: KitsuneSpaceAccessPrincipalConnection;
|
|
157386
157970
|
description?: Maybe<Scalars['String']['output']>;
|
|
157387
157971
|
feedbacks: KitsuneFeedbackConnection;
|
|
157388
157972
|
fields: KitsuneFieldConnection;
|
|
@@ -157391,6 +157975,12 @@ export type KitsuneSpace = Node & {
|
|
|
157391
157975
|
sourceCategories: KitsuneSourceCategoryConnection;
|
|
157392
157976
|
viewTree: KitsuneViewTreeConnection;
|
|
157393
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
|
+
};
|
|
157394
157984
|
export type KitsuneSpaceFeedbacksArgs = {
|
|
157395
157985
|
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
157396
157986
|
};
|
|
@@ -157418,6 +158008,21 @@ export declare enum KitsuneSpaceAccessLevel {
|
|
|
157418
158008
|
Open = "OPEN",
|
|
157419
158009
|
Private = "PRIVATE"
|
|
157420
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
|
+
}
|
|
157421
158026
|
export type KitsuneSpaceConnection = KitsuneConnection & {
|
|
157422
158027
|
__typename?: 'KitsuneSpaceConnection';
|
|
157423
158028
|
edges: Array<KitsuneSpaceEdge>;
|
|
@@ -157428,6 +158033,18 @@ export type KitsuneSpaceEdge = KitsuneEdge & {
|
|
|
157428
158033
|
cursor: Scalars['String']['output'];
|
|
157429
158034
|
node?: Maybe<KitsuneSpace>;
|
|
157430
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
|
+
};
|
|
157431
158048
|
export type KitsuneSummary = {
|
|
157432
158049
|
__typename?: 'KitsuneSummary';
|
|
157433
158050
|
content?: Maybe<Scalars['KitsuneADF']['output']>;
|
|
@@ -157475,6 +158092,53 @@ export type KitsuneUpdateConnectorConfigPayload = Payload & {
|
|
|
157475
158092
|
errors?: Maybe<Array<MutationError>>;
|
|
157476
158093
|
success: Scalars['Boolean']['output'];
|
|
157477
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
|
+
};
|
|
157478
158142
|
export type KitsuneUser = {
|
|
157479
158143
|
__typename?: 'KitsuneUser';
|
|
157480
158144
|
user?: Maybe<User>;
|
|
@@ -157516,6 +158180,12 @@ export type KitsuneViewEdge = KitsuneEdge & {
|
|
|
157516
158180
|
cursor: Scalars['String']['output'];
|
|
157517
158181
|
node?: Maybe<KitsuneView>;
|
|
157518
158182
|
};
|
|
158183
|
+
export type KitsuneViewPayload = Payload & {
|
|
158184
|
+
__typename?: 'KitsuneViewPayload';
|
|
158185
|
+
errors?: Maybe<Array<MutationError>>;
|
|
158186
|
+
success: Scalars['Boolean']['output'];
|
|
158187
|
+
view?: Maybe<KitsuneView>;
|
|
158188
|
+
};
|
|
157519
158189
|
export type KitsuneViewTree = KitsuneSection | KitsuneView;
|
|
157520
158190
|
export type KitsuneViewTreeConnection = KitsuneConnection & {
|
|
157521
158191
|
__typename?: 'KitsuneViewTreeConnection';
|
|
@@ -159032,6 +159702,7 @@ export type KnownUser = Person & {
|
|
|
159032
159702
|
accountType?: Maybe<Scalars['String']['output']>;
|
|
159033
159703
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
159034
159704
|
email?: Maybe<Scalars['String']['output']>;
|
|
159705
|
+
jobTitle?: Maybe<Scalars['String']['output']>;
|
|
159035
159706
|
links?: Maybe<LinksContextSelfBase>;
|
|
159036
159707
|
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
159037
159708
|
permissionType?: Maybe<SitePermissionType>;
|
|
@@ -159703,6 +160374,14 @@ export type LoomMeetingEdge = {
|
|
|
159703
160374
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
159704
160375
|
node?: Maybe<LoomMeeting>;
|
|
159705
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
|
+
};
|
|
159706
160385
|
export type LoomMeetingOneClickAction = {
|
|
159707
160386
|
__typename?: 'LoomMeetingOneClickAction';
|
|
159708
160387
|
action?: Maybe<Scalars['String']['output']>;
|
|
@@ -160158,161 +160837,6 @@ export type LoopCommentEdge = {
|
|
|
160158
160837
|
cursor: Scalars['String']['output'];
|
|
160159
160838
|
node?: Maybe<LoopComment>;
|
|
160160
160839
|
};
|
|
160161
|
-
export type LpCertSort = {
|
|
160162
|
-
sortDirection?: InputMaybe<SortDirection>;
|
|
160163
|
-
sortField?: InputMaybe<LpCertSortField>;
|
|
160164
|
-
};
|
|
160165
|
-
export declare enum LpCertSortField {
|
|
160166
|
-
ActiveDate = "ACTIVE_DATE",
|
|
160167
|
-
ExpireDate = "EXPIRE_DATE",
|
|
160168
|
-
Id = "ID",
|
|
160169
|
-
ImageUrl = "IMAGE_URL",
|
|
160170
|
-
Name = "NAME",
|
|
160171
|
-
NameAbbr = "NAME_ABBR",
|
|
160172
|
-
PublicUrl = "PUBLIC_URL",
|
|
160173
|
-
Status = "STATUS",
|
|
160174
|
-
Type = "TYPE"
|
|
160175
|
-
}
|
|
160176
|
-
export declare enum LpCertStatus {
|
|
160177
|
-
Active = "ACTIVE",
|
|
160178
|
-
Expired = "EXPIRED"
|
|
160179
|
-
}
|
|
160180
|
-
export declare enum LpCertType {
|
|
160181
|
-
Badge = "BADGE",
|
|
160182
|
-
Certification = "CERTIFICATION",
|
|
160183
|
-
Standing = "STANDING"
|
|
160184
|
-
}
|
|
160185
|
-
export type LpCertmetricsCertificate = {
|
|
160186
|
-
__typename?: 'LpCertmetricsCertificate';
|
|
160187
|
-
activeDate?: Maybe<Scalars['String']['output']>;
|
|
160188
|
-
expireDate?: Maybe<Scalars['String']['output']>;
|
|
160189
|
-
id?: Maybe<Scalars['String']['output']>;
|
|
160190
|
-
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
160191
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
160192
|
-
nameAbbr?: Maybe<Scalars['String']['output']>;
|
|
160193
|
-
publicUrl?: Maybe<Scalars['String']['output']>;
|
|
160194
|
-
status?: Maybe<LpCertStatus>;
|
|
160195
|
-
type?: Maybe<LpCertType>;
|
|
160196
|
-
};
|
|
160197
|
-
export type LpCertmetricsCertificateConnection = {
|
|
160198
|
-
__typename?: 'LpCertmetricsCertificateConnection';
|
|
160199
|
-
edges?: Maybe<Array<LpCertmetricsCertificateEdge>>;
|
|
160200
|
-
pageInfo?: Maybe<LpPageInfo>;
|
|
160201
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
160202
|
-
};
|
|
160203
|
-
export type LpCertmetricsCertificateEdge = {
|
|
160204
|
-
__typename?: 'LpCertmetricsCertificateEdge';
|
|
160205
|
-
cursor: Scalars['String']['output'];
|
|
160206
|
-
node?: Maybe<LpCertmetricsCertificate>;
|
|
160207
|
-
};
|
|
160208
|
-
export type LpCertmetricsCertificateResult = LpCertmetricsCertificateConnection | QueryError;
|
|
160209
|
-
export type LpConnectionQueryErrorExtension = QueryErrorExtension & {
|
|
160210
|
-
__typename?: 'LpConnectionQueryErrorExtension';
|
|
160211
|
-
errorType?: Maybe<Scalars['String']['output']>;
|
|
160212
|
-
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
160213
|
-
};
|
|
160214
|
-
export type LpCourseProgress = {
|
|
160215
|
-
__typename?: 'LpCourseProgress';
|
|
160216
|
-
completedDate?: Maybe<Scalars['String']['output']>;
|
|
160217
|
-
courseId?: Maybe<Scalars['String']['output']>;
|
|
160218
|
-
id?: Maybe<Scalars['String']['output']>;
|
|
160219
|
-
isFromIntellum: Scalars['Boolean']['output'];
|
|
160220
|
-
lessons?: Maybe<Array<Maybe<LpLessonProgress>>>;
|
|
160221
|
-
status?: Maybe<LpCourseStatus>;
|
|
160222
|
-
title?: Maybe<Scalars['String']['output']>;
|
|
160223
|
-
url?: Maybe<Scalars['String']['output']>;
|
|
160224
|
-
};
|
|
160225
|
-
export type LpCourseProgressConnection = {
|
|
160226
|
-
__typename?: 'LpCourseProgressConnection';
|
|
160227
|
-
edges?: Maybe<Array<LpCourseProgressEdge>>;
|
|
160228
|
-
pageInfo?: Maybe<LpPageInfo>;
|
|
160229
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
160230
|
-
};
|
|
160231
|
-
export type LpCourseProgressEdge = {
|
|
160232
|
-
__typename?: 'LpCourseProgressEdge';
|
|
160233
|
-
cursor: Scalars['String']['output'];
|
|
160234
|
-
node?: Maybe<LpCourseProgress>;
|
|
160235
|
-
};
|
|
160236
|
-
export type LpCourseProgressResult = LpCourseProgressConnection | QueryError;
|
|
160237
|
-
export type LpCourseSort = {
|
|
160238
|
-
sortDirection?: InputMaybe<SortDirection>;
|
|
160239
|
-
sortField?: InputMaybe<LpCourseSortField>;
|
|
160240
|
-
};
|
|
160241
|
-
export declare enum LpCourseSortField {
|
|
160242
|
-
CompletedDate = "COMPLETED_DATE",
|
|
160243
|
-
CourseId = "COURSE_ID",
|
|
160244
|
-
Id = "ID",
|
|
160245
|
-
Status = "STATUS",
|
|
160246
|
-
Title = "TITLE",
|
|
160247
|
-
Url = "URL"
|
|
160248
|
-
}
|
|
160249
|
-
export declare enum LpCourseStatus {
|
|
160250
|
-
Completed = "COMPLETED",
|
|
160251
|
-
InProgress = "IN_PROGRESS"
|
|
160252
|
-
}
|
|
160253
|
-
export type LpLearner = Node & {
|
|
160254
|
-
__typename?: 'LpLearner';
|
|
160255
|
-
atlassianId: Scalars['String']['output'];
|
|
160256
|
-
certmetricsCertificates?: Maybe<LpCertmetricsCertificateResult>;
|
|
160257
|
-
courses?: Maybe<LpCourseProgressResult>;
|
|
160258
|
-
id: Scalars['ID']['output'];
|
|
160259
|
-
};
|
|
160260
|
-
export type LpLearnerCertmetricsCertificatesArgs = {
|
|
160261
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
160262
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
160263
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
160264
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
160265
|
-
sorting?: InputMaybe<LpCertSort>;
|
|
160266
|
-
status?: InputMaybe<LpCertStatus>;
|
|
160267
|
-
type?: InputMaybe<Array<InputMaybe<LpCertType>>>;
|
|
160268
|
-
};
|
|
160269
|
-
export type LpLearnerCoursesArgs = {
|
|
160270
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
160271
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
160272
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
160273
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
160274
|
-
sorting?: InputMaybe<LpCourseSort>;
|
|
160275
|
-
status?: InputMaybe<LpCourseStatus>;
|
|
160276
|
-
};
|
|
160277
|
-
export type LpLearnerData = {
|
|
160278
|
-
__typename?: 'LpLearnerData';
|
|
160279
|
-
learnerByAtlassianId?: Maybe<LpLearner>;
|
|
160280
|
-
learnersByAtlassianIds?: Maybe<Array<Maybe<LpLearner>>>;
|
|
160281
|
-
learnersByIds?: Maybe<Array<Maybe<LpLearner>>>;
|
|
160282
|
-
node?: Maybe<Node>;
|
|
160283
|
-
};
|
|
160284
|
-
export type LpLearnerDataLearnerByAtlassianIdArgs = {
|
|
160285
|
-
atlassianId: Scalars['String']['input'];
|
|
160286
|
-
};
|
|
160287
|
-
export type LpLearnerDataLearnersByAtlassianIdsArgs = {
|
|
160288
|
-
atlassianIds: Array<Scalars['String']['input']>;
|
|
160289
|
-
};
|
|
160290
|
-
export type LpLearnerDataLearnersByIdsArgs = {
|
|
160291
|
-
ids: Array<Scalars['ID']['input']>;
|
|
160292
|
-
};
|
|
160293
|
-
export type LpLearnerDataNodeArgs = {
|
|
160294
|
-
id: Scalars['ID']['input'];
|
|
160295
|
-
};
|
|
160296
|
-
export type LpLessonProgress = {
|
|
160297
|
-
__typename?: 'LpLessonProgress';
|
|
160298
|
-
lessonId?: Maybe<Scalars['String']['output']>;
|
|
160299
|
-
status?: Maybe<Scalars['String']['output']>;
|
|
160300
|
-
title?: Maybe<Scalars['String']['output']>;
|
|
160301
|
-
};
|
|
160302
|
-
export type LpPageInfo = {
|
|
160303
|
-
__typename?: 'LpPageInfo';
|
|
160304
|
-
endCursor?: Maybe<Scalars['String']['output']>;
|
|
160305
|
-
hasNextPage: Scalars['Boolean']['output'];
|
|
160306
|
-
hasPreviousPage: Scalars['Boolean']['output'];
|
|
160307
|
-
startCursor?: Maybe<Scalars['String']['output']>;
|
|
160308
|
-
};
|
|
160309
|
-
export type LpQueryError = Node & {
|
|
160310
|
-
__typename?: 'LpQueryError';
|
|
160311
|
-
extensions?: Maybe<Array<QueryErrorExtension>>;
|
|
160312
|
-
id: Scalars['ID']['output'];
|
|
160313
|
-
identifier?: Maybe<Scalars['ID']['output']>;
|
|
160314
|
-
message?: Maybe<Scalars['String']['output']>;
|
|
160315
|
-
};
|
|
160316
160840
|
export type M360ServiceHelloWorldPayload = {
|
|
160317
160841
|
__typename?: 'M360ServiceHelloWorldPayload';
|
|
160318
160842
|
greeting?: Maybe<Scalars['String']['output']>;
|
|
@@ -160654,6 +161178,7 @@ export type MarketplaceConsoleAppInput = {
|
|
|
160654
161178
|
export type MarketplaceConsoleAppPublishWizardAppSecurityPrefillOptionsResponse = {
|
|
160655
161179
|
__typename?: 'MarketplaceConsoleAppPublishWizardAppSecurityPrefillOptionsResponse';
|
|
160656
161180
|
eligibleSources: Array<MarketplaceConsoleAppPublishWizardPrefillSourceApp>;
|
|
161181
|
+
prefillCase: MarketplaceConsoleAppPublishWizardPrefillCase;
|
|
160657
161182
|
selfPriorAppKey?: Maybe<Scalars['String']['output']>;
|
|
160658
161183
|
};
|
|
160659
161184
|
export type MarketplaceConsoleAppPublishWizardCheckResult = {
|
|
@@ -160747,6 +161272,11 @@ export declare enum MarketplaceConsoleAppPublishWizardFillStrategy {
|
|
|
160747
161272
|
Partial = "PARTIAL",
|
|
160748
161273
|
PreFilled = "PRE_FILLED"
|
|
160749
161274
|
}
|
|
161275
|
+
export declare enum MarketplaceConsoleAppPublishWizardPrefillCase {
|
|
161276
|
+
CopyFromSibling = "COPY_FROM_SIBLING",
|
|
161277
|
+
Fresh = "FRESH",
|
|
161278
|
+
SelfPrior = "SELF_PRIOR"
|
|
161279
|
+
}
|
|
160750
161280
|
export type MarketplaceConsoleAppPublishWizardPrefillSourceApp = {
|
|
160751
161281
|
__typename?: 'MarketplaceConsoleAppPublishWizardPrefillSourceApp';
|
|
160752
161282
|
appKey: Scalars['String']['output'];
|
|
@@ -160757,6 +161287,22 @@ export declare enum MarketplaceConsoleAppPublishWizardPrefillSourceOrigin {
|
|
|
160757
161287
|
Donut = "DONUT",
|
|
160758
161288
|
Hermes = "HERMES"
|
|
160759
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
|
+
};
|
|
160760
161306
|
export type MarketplaceConsoleAppPublishWizardReadinessResponse = {
|
|
160761
161307
|
__typename?: 'MarketplaceConsoleAppPublishWizardReadinessResponse';
|
|
160762
161308
|
checks: Array<MarketplaceConsoleAppPublishWizardCheckResult>;
|
|
@@ -162462,6 +163008,7 @@ export type MarketplaceConsoleQueryApi = {
|
|
|
162462
163008
|
__typename?: 'MarketplaceConsoleQueryApi';
|
|
162463
163009
|
appPrivateListings?: Maybe<MarketplaceConsolePrivateListingsTokens>;
|
|
162464
163010
|
appPublishWizardAppSecurityPrefillOptions?: Maybe<MarketplaceConsoleAppPublishWizardAppSecurityPrefillOptionsResponse>;
|
|
163011
|
+
appPublishWizardPublishEntry?: Maybe<MarketplaceConsoleAppPublishWizardPublishEntryResponse>;
|
|
162465
163012
|
appPublishWizardReadiness?: Maybe<MarketplaceConsoleAppPublishWizardReadinessResponse>;
|
|
162466
163013
|
appPublishWizardSession?: Maybe<MarketplaceConsoleAppPublishWizardSessionResponse>;
|
|
162467
163014
|
appPublishWizardWorkflowStatus?: Maybe<MarketplaceConsoleAppPublishWizardWorkflowStatusResponse>;
|
|
@@ -162507,6 +163054,12 @@ export type MarketplaceConsoleQueryApiAppPublishWizardAppSecurityPrefillOptionsA
|
|
|
162507
163054
|
buildNumber: Scalars['String']['input'];
|
|
162508
163055
|
partnerId: Scalars['String']['input'];
|
|
162509
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
|
+
};
|
|
162510
163063
|
export type MarketplaceConsoleQueryApiAppPublishWizardReadinessArgs = {
|
|
162511
163064
|
appSoftwareId: Scalars['ID']['input'];
|
|
162512
163065
|
submissionId: Scalars['ID']['input'];
|
|
@@ -162648,6 +163201,7 @@ export type MarketplaceConsoleStartAppPublishWizardInput = {
|
|
|
162648
163201
|
appSecuritySourceAppKey?: InputMaybe<Scalars['String']['input']>;
|
|
162649
163202
|
buildNumber: Scalars['String']['input'];
|
|
162650
163203
|
partnerId: Scalars['String']['input'];
|
|
163204
|
+
prefillFromPriorSubmission?: InputMaybe<Scalars['Boolean']['input']>;
|
|
162651
163205
|
};
|
|
162652
163206
|
export type MarketplaceConsoleTagsContent = {
|
|
162653
163207
|
__typename?: 'MarketplaceConsoleTagsContent';
|
|
@@ -164679,6 +165233,114 @@ export type MarketplaceStoreSearchFilter = {
|
|
|
164679
165233
|
key: Scalars['String']['output'];
|
|
164680
165234
|
value: Array<Scalars['String']['output']>;
|
|
164681
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
|
+
};
|
|
164682
165344
|
export type MarketplaceStoreSearchMetadata = {
|
|
164683
165345
|
__typename?: 'MarketplaceStoreSearchMetadata';
|
|
164684
165346
|
filters: Array<MarketplaceStoreSearchFilter>;
|
|
@@ -164717,6 +165379,18 @@ export type MarketplaceStoreSideNavigationItem = {
|
|
|
164717
165379
|
name: Scalars['String']['output'];
|
|
164718
165380
|
path: Scalars['String']['output'];
|
|
164719
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
|
+
};
|
|
164720
165394
|
export type MarketplaceStoreSiteDetailsInput = {
|
|
164721
165395
|
cloudId: Scalars['String']['input'];
|
|
164722
165396
|
product: MarketplaceStoreSiteProduct;
|
|
@@ -165513,9 +166187,9 @@ export type MercuryAskEdge = {
|
|
|
165513
166187
|
node?: Maybe<MercuryAskResult>;
|
|
165514
166188
|
};
|
|
165515
166189
|
export declare enum MercuryAskEventType {
|
|
166190
|
+
AcceptProposedDate = "ACCEPT_PROPOSED_DATE",
|
|
165516
166191
|
Create = "CREATE",
|
|
165517
|
-
|
|
165518
|
-
DeleteLink = "DELETE_LINK",
|
|
166192
|
+
RejectProposedDate = "REJECT_PROPOSED_DATE",
|
|
165519
166193
|
Update = "UPDATE"
|
|
165520
166194
|
}
|
|
165521
166195
|
export declare enum MercuryAskField {
|
|
@@ -165536,6 +166210,8 @@ export declare enum MercuryAskField {
|
|
|
165536
166210
|
Name = "NAME",
|
|
165537
166211
|
Owner = "OWNER",
|
|
165538
166212
|
Priority = "PRIORITY",
|
|
166213
|
+
ProposedDate = "PROPOSED_DATE",
|
|
166214
|
+
ProposedDateType = "PROPOSED_DATE_TYPE",
|
|
165539
166215
|
ReceivingOrganization = "RECEIVING_ORGANIZATION",
|
|
165540
166216
|
ReceivingTeam = "RECEIVING_TEAM",
|
|
165541
166217
|
ReceivingUser = "RECEIVING_USER",
|
|
@@ -165543,7 +166219,8 @@ export declare enum MercuryAskField {
|
|
|
165543
166219
|
SubmittingOrganization = "SUBMITTING_ORGANIZATION",
|
|
165544
166220
|
SubmittingTeam = "SUBMITTING_TEAM",
|
|
165545
166221
|
SubmittingUser = "SUBMITTING_USER",
|
|
165546
|
-
TargetDate = "TARGET_DATE"
|
|
166222
|
+
TargetDate = "TARGET_DATE",
|
|
166223
|
+
TargetDateType = "TARGET_DATE_TYPE"
|
|
165547
166224
|
}
|
|
165548
166225
|
export type MercuryAskLink = Node & {
|
|
165549
166226
|
__typename?: 'MercuryAskLink';
|
|
@@ -166791,7 +167468,12 @@ export type MercuryCreateFocusAreaInput = {
|
|
|
166791
167468
|
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
166792
167469
|
focusAreaTypeId: Scalars['ID']['input'];
|
|
166793
167470
|
name: Scalars['String']['input'];
|
|
167471
|
+
owner?: InputMaybe<Scalars['String']['input']>;
|
|
166794
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>;
|
|
166795
167477
|
};
|
|
166796
167478
|
export type MercuryCreateFocusAreaPayload = Payload & {
|
|
166797
167479
|
__typename?: 'MercuryCreateFocusAreaPayload';
|
|
@@ -166814,6 +167496,18 @@ export type MercuryCreateFocusAreaStatusUpdatePayload = Payload & {
|
|
|
166814
167496
|
errors?: Maybe<Array<MutationError>>;
|
|
166815
167497
|
success: Scalars['Boolean']['output'];
|
|
166816
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
|
+
};
|
|
166817
167511
|
export type MercuryCreateInvestmentCategoryInput = {
|
|
166818
167512
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
166819
167513
|
name: Scalars['String']['input'];
|
|
@@ -167115,6 +167809,13 @@ export type MercuryCustomSelectFieldOptionInput = {
|
|
|
167115
167809
|
settings?: InputMaybe<Array<MercuryCustomFieldSelectionOptionSettingInput>>;
|
|
167116
167810
|
value: Scalars['String']['input'];
|
|
167117
167811
|
};
|
|
167812
|
+
export type MercuryDataIntegrationsMutationApi = {
|
|
167813
|
+
__typename?: 'MercuryDataIntegrationsMutationApi';
|
|
167814
|
+
createFocusAreasFromOnboarding?: Maybe<MercuryCreateFocusAreasFromOnboardingPayload>;
|
|
167815
|
+
};
|
|
167816
|
+
export type MercuryDataIntegrationsMutationApiCreateFocusAreasFromOnboardingArgs = {
|
|
167817
|
+
input: MercuryCreateFocusAreasFromOnboardingInput;
|
|
167818
|
+
};
|
|
167118
167819
|
export type MercuryDataIntegrationsQueryApi = {
|
|
167119
167820
|
__typename?: 'MercuryDataIntegrationsQueryApi';
|
|
167120
167821
|
importJob?: Maybe<MercuryImportJob>;
|
|
@@ -167747,6 +168448,7 @@ export type MercuryExternalUser = {
|
|
|
167747
168448
|
export type MercuryFinancialVersion = Node & {
|
|
167748
168449
|
__typename?: 'MercuryFinancialVersion';
|
|
167749
168450
|
id: Scalars['ID']['output'];
|
|
168451
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
167750
168452
|
type: MercuryFinancialVersionType;
|
|
167751
168453
|
};
|
|
167752
168454
|
export type MercuryFinancialVersionBenefitDimensionSummary = MercuryFinancialVersionBenefitTypeSummary;
|
|
@@ -167846,6 +168548,23 @@ export type MercuryFiscalCalendarConfigurationSort = {
|
|
|
167846
168548
|
export declare enum MercuryFiscalCalendarConfigurationSortField {
|
|
167847
168549
|
CreatedDate = "CREATED_DATE"
|
|
167848
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
|
+
}
|
|
167849
168568
|
export type MercuryFocusArea = Node & {
|
|
167850
168569
|
__typename?: 'MercuryFocusArea';
|
|
167851
168570
|
aboutContent: MercuryFocusAreaAbout;
|
|
@@ -168462,6 +169181,15 @@ export type MercuryFocusAreaTypeAggregation = {
|
|
|
168462
169181
|
__typename?: 'MercuryFocusAreaTypeAggregation';
|
|
168463
169182
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
168464
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
|
+
};
|
|
168465
169193
|
export type MercuryFocusAreaUserAccess = {
|
|
168466
169194
|
__typename?: 'MercuryFocusAreaUserAccess';
|
|
168467
169195
|
accessLevel?: Maybe<MercuryFocusAreaUserAccessLevel>;
|
|
@@ -168502,6 +169230,10 @@ export type MercuryForYouInsightsFilter = {
|
|
|
168502
169230
|
forYouInsightType?: InputMaybe<MercuryForYouInsightType>;
|
|
168503
169231
|
insightType?: InputMaybe<MercuryInsightTypeEnum>;
|
|
168504
169232
|
};
|
|
169233
|
+
export declare enum MercuryForYouOwnershipType {
|
|
169234
|
+
Own = "OWN",
|
|
169235
|
+
Watch = "WATCH"
|
|
169236
|
+
}
|
|
168505
169237
|
export type MercuryFundChangeSummary = {
|
|
168506
169238
|
__typename?: 'MercuryFundChangeSummary';
|
|
168507
169239
|
amount?: Maybe<MercuryFundChangeSummaryFields>;
|
|
@@ -170085,6 +170817,14 @@ export type MercuryOnUpdateChangeProposalsPayload = Payload & {
|
|
|
170085
170817
|
strategicEventId: Scalars['ID']['output'];
|
|
170086
170818
|
success: Scalars['Boolean']['output'];
|
|
170087
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
|
+
};
|
|
170088
170828
|
export type MercuryOrganization = Node & {
|
|
170089
170829
|
__typename?: 'MercuryOrganization';
|
|
170090
170830
|
aboutContent: MercuryOrganizationAbout;
|
|
@@ -171219,9 +171959,13 @@ export type MercuryPlansMutationApiUnlinkFocusAreasFromPlanArgs = {
|
|
|
171219
171959
|
};
|
|
171220
171960
|
export type MercuryPlansQueryApi = {
|
|
171221
171961
|
__typename?: 'MercuryPlansQueryApi';
|
|
171962
|
+
fiscalYearRealignmentJob?: Maybe<MercuryFiscalYearPlanRealignmentJob>;
|
|
171222
171963
|
plans?: Maybe<Array<MercuryPlan>>;
|
|
171223
171964
|
plansSearch?: Maybe<MercuryPlanConnection>;
|
|
171224
171965
|
};
|
|
171966
|
+
export type MercuryPlansQueryApiFiscalYearRealignmentJobArgs = {
|
|
171967
|
+
cloudId: Scalars['ID']['input'];
|
|
171968
|
+
};
|
|
171225
171969
|
export type MercuryPlansQueryApiPlansArgs = {
|
|
171226
171970
|
ids: Array<Scalars['ID']['input']>;
|
|
171227
171971
|
};
|
|
@@ -171749,6 +172493,7 @@ export type MercuryQueryApi = {
|
|
|
171749
172493
|
focusAreasByAris?: Maybe<Array<MercuryFocusArea>>;
|
|
171750
172494
|
focusAreasByExternalIds?: Maybe<Array<Maybe<MercuryFocusArea>>>;
|
|
171751
172495
|
focusAreasTopologicallySorted?: Maybe<Array<MercuryFocusArea>>;
|
|
172496
|
+
forYouFocusAreaTypeMetrics?: Maybe<MercuryFocusAreaTypeMetrics>;
|
|
171752
172497
|
mediaReadToken?: Maybe<MercuryMediaToken>;
|
|
171753
172498
|
mediaUploadToken?: Maybe<MercuryMediaToken>;
|
|
171754
172499
|
myPreference?: Maybe<MercuryPreference>;
|
|
@@ -171885,6 +172630,10 @@ export type MercuryQueryApiFocusAreasByExternalIdsArgs = {
|
|
|
171885
172630
|
export type MercuryQueryApiFocusAreasTopologicallySortedArgs = {
|
|
171886
172631
|
focusAreaIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
171887
172632
|
};
|
|
172633
|
+
export type MercuryQueryApiForYouFocusAreaTypeMetricsArgs = {
|
|
172634
|
+
cloudId: Scalars['ID']['input'];
|
|
172635
|
+
ownershipType: MercuryForYouOwnershipType;
|
|
172636
|
+
};
|
|
171888
172637
|
export type MercuryQueryApiMediaReadTokenArgs = {
|
|
171889
172638
|
cloudId: Scalars['ID']['input'];
|
|
171890
172639
|
entityId: Scalars['ID']['input'];
|
|
@@ -172627,6 +173376,7 @@ export type MercurySetBaselineInput = {
|
|
|
172627
173376
|
endYearMonth: Scalars['String']['input'];
|
|
172628
173377
|
financialVersionId: Scalars['ID']['input'];
|
|
172629
173378
|
focusAreaId: Scalars['ID']['input'];
|
|
173379
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
172630
173380
|
startYearMonth: Scalars['String']['input'];
|
|
172631
173381
|
};
|
|
172632
173382
|
export type MercurySetBaselinePayload = Payload & {
|
|
@@ -174972,6 +175722,7 @@ export type Mutation = {
|
|
|
174972
175722
|
agentWorkspace_assignAgentToGap?: Maybe<AgentWorkspaceAssignAgentToGapPayload>;
|
|
174973
175723
|
agentWorkspace_assignAgentsToSkill?: Maybe<AgentWorkspaceAssignAgentsToSkillPayload>;
|
|
174974
175724
|
agentWorkspace_bulkUpsertDraftedRoutingTableEntries?: Maybe<AgentWorkspaceBulkUpsertDraftedRoutingTableEntriesPayload>;
|
|
175725
|
+
agentWorkspace_bulkUpsertDraftedTeamRoutingTableEntries?: Maybe<AgentWorkspaceBulkUpsertDraftedTeamRoutingTableEntriesPayload>;
|
|
174975
175726
|
agentWorkspace_cancelRoutingTableGeneration?: Maybe<AgentWorkspaceCancelRoutingTableGenerationPayload>;
|
|
174976
175727
|
agentWorkspace_cancelSmartRoutingDryRun?: Maybe<AgentWorkspaceSmartRoutingDryRun>;
|
|
174977
175728
|
agentWorkspace_createAndLinkTeamsFromGroups?: Maybe<AgentWorkspaceCreateAndLinkTeamsPayload>;
|
|
@@ -175002,6 +175753,7 @@ export type Mutation = {
|
|
|
175002
175753
|
agentWorkspace_startBulkScheduleImportJob?: Maybe<AgentWorkspaceStartBulkImportPayload>;
|
|
175003
175754
|
agentWorkspace_startGenerateRoutingTable?: Maybe<AgentWorkspaceStartGenerateRoutingTablePayload>;
|
|
175004
175755
|
agentWorkspace_startGenerateRoutingTableV2?: Maybe<AgentWorkspaceStartGenerateRoutingTablePayload>;
|
|
175756
|
+
agentWorkspace_startGenerateTeamRoutingTable?: Maybe<AgentWorkspaceStartGenerateRoutingTablePayload>;
|
|
175005
175757
|
agentWorkspace_startSmartRoutingDryRun?: Maybe<AgentWorkspaceStartSmartRoutingDryRunPayload>;
|
|
175006
175758
|
agentWorkspace_submitDraftedRoutingTable?: Maybe<AgentWorkspaceSubmitDraftedRoutingTablePayload>;
|
|
175007
175759
|
agentWorkspace_submitDraftedTeamRoutingTable?: Maybe<AgentWorkspaceSubmitDraftedTeamRoutingTablePayload>;
|
|
@@ -175037,6 +175789,8 @@ export type Mutation = {
|
|
|
175037
175789
|
archivePages?: Maybe<BulkArchivePagePayload>;
|
|
175038
175790
|
archivePolarisInsights?: Maybe<ArchivePolarisInsightsPayload>;
|
|
175039
175791
|
archiveSpace?: Maybe<ArchiveSpacePayload>;
|
|
175792
|
+
artifact_createArtifact?: Maybe<ArtifactCreatePayload>;
|
|
175793
|
+
artifact_createContent?: Maybe<ArtifactCreateContentPayload>;
|
|
175040
175794
|
assetsDM_addDataDictionary?: Maybe<AssetsDmAddDataDictionaryResponse>;
|
|
175041
175795
|
assetsDM_addDefaultAttributeMapping?: Maybe<AssetsDmAddDefaultAttributeMappingResponse>;
|
|
175042
175796
|
assetsDM_associateObjectTag?: Maybe<AssetsDmObjectTagAssociateResponse>;
|
|
@@ -175162,6 +175916,7 @@ export type Mutation = {
|
|
|
175162
175916
|
avp_moveDashboardRow?: Maybe<AvpMoveDashboardRowPayload>;
|
|
175163
175917
|
avp_removeDashboardElement?: Maybe<AvpRemoveDashboardElementPayload>;
|
|
175164
175918
|
avp_removeDashboardRow?: Maybe<AvpRemoveDashboardRowPayload>;
|
|
175919
|
+
avp_replaceEmptyCanvasElement?: Maybe<AvpReplaceEmptyCanvasElementPayload>;
|
|
175165
175920
|
avp_signForgeContextToken?: Maybe<AvpSignForgeContextTokenPayload>;
|
|
175166
175921
|
avp_starDashboard?: Maybe<AvpStarDashboardPayload>;
|
|
175167
175922
|
avp_toggleCanvasElementExpanded?: Maybe<AvpToggleCanvasElementExpandedPayload>;
|
|
@@ -175241,6 +175996,7 @@ export type Mutation = {
|
|
|
175241
175996
|
completeSprint?: Maybe<CompleteSprintResponse>;
|
|
175242
175997
|
confluence?: Maybe<ConfluenceMutationApi>;
|
|
175243
175998
|
confluence_acceptAnswer?: Maybe<ConfluenceAcceptAnswerPayload>;
|
|
175999
|
+
confluence_accessLinkSpacesAction?: Maybe<ConfluenceAccessLinkSpacesActionPayload>;
|
|
175244
176000
|
confluence_addInlineReaction?: Maybe<ConfluenceInlineReactionPayload>;
|
|
175245
176001
|
confluence_addReaction?: Maybe<ConfluenceReactionPayload>;
|
|
175246
176002
|
confluence_addTrack?: Maybe<ConfluenceAddTrackPayload>;
|
|
@@ -175315,6 +176071,7 @@ export type Mutation = {
|
|
|
175315
176071
|
confluence_patchCalendar?: Maybe<ConfluencePatchCalendarPayload>;
|
|
175316
176072
|
confluence_patchFolder?: Maybe<ConfluencePatchFolderPayload>;
|
|
175317
176073
|
confluence_patchSpaceSettings?: Maybe<ConfluencePatchSpaceSettingsPayload>;
|
|
176074
|
+
confluence_pauseSmartFolderSync?: Maybe<ConfluenceSmartFolderSyncControlPayload>;
|
|
175318
176075
|
confluence_publishBlueprintSharedDraft?: Maybe<ConfluencePublishBlueprintSharedDraftPayload>;
|
|
175319
176076
|
confluence_publishDraftWithApprovalReviewTransfer?: Maybe<ConfluenceWorkflowApplicationPayload>;
|
|
175320
176077
|
confluence_recordCompanionTipScrollSignal?: Maybe<ConfluenceRecordCompanionTipScrollSignalPayload>;
|
|
@@ -175332,6 +176089,7 @@ export type Mutation = {
|
|
|
175332
176089
|
confluence_resolveSpaceAccessRequest?: Maybe<ConfluenceResolveSpaceAccessRequestPayload>;
|
|
175333
176090
|
confluence_restoreContentVersion?: Maybe<ConfluenceRestoreContentVersionPayload>;
|
|
175334
176091
|
confluence_restoreSystemRole?: Maybe<ConfluenceRestoreSystemRolePayload>;
|
|
176092
|
+
confluence_resumeSmartFolderSync?: Maybe<ConfluenceSmartFolderSyncControlPayload>;
|
|
175335
176093
|
confluence_sendToDesktop?: Maybe<ConfluenceDesktopSendPayload>;
|
|
175336
176094
|
confluence_setContentApprovalsSpaceSettings?: Maybe<ConfluenceContentApprovalsSpaceSettingsPayload>;
|
|
175337
176095
|
confluence_setContentGeneralAccessMode?: Maybe<ConfluenceSetContentGeneralAccessModePayload>;
|
|
@@ -175367,6 +176125,7 @@ export type Mutation = {
|
|
|
175367
176125
|
confluence_updateCoverPicture?: Maybe<ConfluenceUpdateCoverPicturePayload>;
|
|
175368
176126
|
confluence_updateCustomContentPermissions?: Maybe<ConfluenceUpdateCustomContentPermissionsPayload>;
|
|
175369
176127
|
confluence_updateCustomRole?: Maybe<ConfluenceUpdateCustomRolePayload>;
|
|
176128
|
+
confluence_updateCwrRemixCreationConfiguration?: Maybe<ConfluenceUpdateCwrRemixCreationConfigurationPayload>;
|
|
175370
176129
|
confluence_updateDefaultTitleEmoji?: Maybe<ConfluenceUpdateDefaultTitleEmojiPayload>;
|
|
175371
176130
|
confluence_updateInstance?: Maybe<ConfluenceUpdateInstancePayload>;
|
|
175372
176131
|
confluence_updateMarkdownMode?: Maybe<ConfluenceUpdateMarkdownModePayload>;
|
|
@@ -175726,6 +176485,7 @@ export type Mutation = {
|
|
|
175726
176485
|
graphIntegration_addTwgCapabilityContainer?: Maybe<GraphIntegrationAddTwgCapabilityContainerPayload>;
|
|
175727
176486
|
graphIntegration_createDataConnectorConnection?: Maybe<GraphIntegrationCreateConnectionPayload>;
|
|
175728
176487
|
graphIntegration_createSkill?: Maybe<GraphIntegrationSkill>;
|
|
176488
|
+
graphIntegration_createSkillCloneLink?: Maybe<GraphIntegrationCreateSkillCloneLinkPayload>;
|
|
175729
176489
|
graphIntegration_customAuthDelete?: Maybe<GraphIntegrationCustomAuthDeletePayload>;
|
|
175730
176490
|
graphIntegration_customAuthUpdate?: Maybe<GraphIntegrationCustomAuthMutationPayload>;
|
|
175731
176491
|
graphIntegration_customAuthUpdateStatus?: Maybe<GraphIntegrationCustomAuthMutationPayload>;
|
|
@@ -175915,6 +176675,7 @@ export type Mutation = {
|
|
|
175915
176675
|
gravity_reviseDraft?: Maybe<GravityDraftPayload>;
|
|
175916
176676
|
gravity_setActionStatus?: Maybe<GravityActionPayload>;
|
|
175917
176677
|
gravity_setViewArrangement?: Maybe<GravityViewArrangementPayload>;
|
|
176678
|
+
gravity_startAltaSession?: Maybe<GravityAltaSessionPayload>;
|
|
175918
176679
|
gravity_updateDeliverySettings?: Maybe<GravityUpdateDeliverySettingsPayload>;
|
|
175919
176680
|
gravity_updateDraftContent?: Maybe<GravityDraftPayload>;
|
|
175920
176681
|
gravity_upsertAction?: Maybe<GravityActionPayload>;
|
|
@@ -175924,7 +176685,6 @@ export type Mutation = {
|
|
|
175924
176685
|
growthUnifiedProfile_createUnifiedProfile?: Maybe<GrowthUnifiedProfileResult>;
|
|
175925
176686
|
hardDeleteSpace?: Maybe<HardDeleteSpacePayload>;
|
|
175926
176687
|
helpCenter?: Maybe<HelpCenterMutationApi>;
|
|
175927
|
-
helpExternalResource?: Maybe<HelpExternalResourceMutationApi>;
|
|
175928
176688
|
helpLayout?: Maybe<HelpLayoutMutationApi>;
|
|
175929
176689
|
helpObjectStore?: Maybe<HelpObjectStoreMutationApi>;
|
|
175930
176690
|
home_addTagsById?: Maybe<TownsquareAddTagToEntityPayload>;
|
|
@@ -176138,6 +176898,7 @@ export type Mutation = {
|
|
|
176138
176898
|
jsmTelemetry_addChart?: Maybe<JsmTelemetryAddChartResult>;
|
|
176139
176899
|
jsmTelemetry_createTelemetryConnection?: Maybe<JsmTelemetryCreateTelemetryConnectionPayload>;
|
|
176140
176900
|
jsmTelemetry_deleteTelemetryConnection?: Maybe<Scalars['Boolean']['output']>;
|
|
176901
|
+
jsmTelemetry_discoverAndSaveIncidentServiceMetrics?: Maybe<JsmTelemetryIncidentServiceMetricDiscoverySaveResult>;
|
|
176141
176902
|
jsmTelemetry_removeChart?: Maybe<JsmTelemetryRemoveChartResult>;
|
|
176142
176903
|
jsmTelemetry_removeDashboard?: Maybe<JsmTelemetryRemoveDashboardResult>;
|
|
176143
176904
|
jsmTelemetry_removeDashboardChart?: Maybe<JsmTelemetryRemoveDashboardChartResult>;
|
|
@@ -176150,35 +176911,54 @@ export type Mutation = {
|
|
|
176150
176911
|
kitsune_createCustomerField?: Maybe<KitsuneCustomerCustomField>;
|
|
176151
176912
|
kitsune_createFeedback?: Maybe<KitsuneFeedback>;
|
|
176152
176913
|
kitsune_createField?: Maybe<KitsuneField>;
|
|
176914
|
+
kitsune_createFieldV2?: Maybe<KitsuneCreateFieldPayload>;
|
|
176153
176915
|
kitsune_createInsight?: Maybe<KitsuneInsight>;
|
|
176916
|
+
kitsune_createInsightV2?: Maybe<KitsuneCreateInsightPayload>;
|
|
176154
176917
|
kitsune_createOrganization?: Maybe<KitsuneOrganization>;
|
|
176155
176918
|
kitsune_createOrganizationField?: Maybe<KitsuneCustomerCustomField>;
|
|
176156
176919
|
kitsune_createSection?: Maybe<KitsuneSection>;
|
|
176920
|
+
kitsune_createSectionV2?: Maybe<KitsuneSectionPayload>;
|
|
176157
176921
|
kitsune_createSnippet?: Maybe<KitsuneSnippet>;
|
|
176922
|
+
kitsune_createSnippetV2?: Maybe<KitsuneCreateSnippetPayload>;
|
|
176158
176923
|
kitsune_createSpace?: Maybe<KitsuneSpace>;
|
|
176159
176924
|
kitsune_createView?: Maybe<KitsuneView>;
|
|
176925
|
+
kitsune_createViewV2?: Maybe<KitsuneViewPayload>;
|
|
176160
176926
|
kitsune_exportFeedbackFromView?: Maybe<KitsuneJob>;
|
|
176161
176927
|
kitsune_generateFeedbackSummary?: Maybe<KitsuneFeedback>;
|
|
176162
176928
|
kitsune_generateInsightSummary?: Maybe<KitsuneInsight>;
|
|
176929
|
+
kitsune_generateInsightSummaryV2?: Maybe<KitsuneGenerateInsightSummaryPayload>;
|
|
176930
|
+
kitsune_inviteToSpace?: Maybe<KitsuneInviteToSpacePayload>;
|
|
176163
176931
|
kitsune_linkInsightsToIdea?: Maybe<Array<Maybe<KitsuneInsight>>>;
|
|
176932
|
+
kitsune_linkInsightsToIdeaV2?: Maybe<KitsuneLinkInsightsToIdeaPayload>;
|
|
176164
176933
|
kitsune_moveSection?: Maybe<KitsuneSpace>;
|
|
176934
|
+
kitsune_moveSectionV2?: Maybe<KitsuneMoveSectionPayload>;
|
|
176165
176935
|
kitsune_moveView?: Maybe<KitsuneSpace>;
|
|
176936
|
+
kitsune_moveViewV2?: Maybe<KitsuneMoveViewPayload>;
|
|
176166
176937
|
kitsune_refreshInsightCounters?: Maybe<KitsuneJob>;
|
|
176938
|
+
kitsune_refreshInsightCountersV2?: Maybe<KitsuneRefreshInsightCountersPayload>;
|
|
176167
176939
|
kitsune_removeConnectorConfig?: Maybe<KitsuneRemoveConnectorConfigPayload>;
|
|
176168
176940
|
kitsune_removeCustomer?: Maybe<KitsuneDeletedRecord>;
|
|
176169
176941
|
kitsune_removeCustomerField?: Maybe<KitsuneDeletedRecord>;
|
|
176170
176942
|
kitsune_removeFeedback?: Maybe<KitsuneDeletedRecord>;
|
|
176171
176943
|
kitsune_removeField?: Maybe<KitsuneDeletedRecord>;
|
|
176944
|
+
kitsune_removeFieldV2?: Maybe<KitsuneDeletedPayload>;
|
|
176172
176945
|
kitsune_removeFieldValue?: Maybe<KitsuneDeletedRecord>;
|
|
176946
|
+
kitsune_removeFieldValueV2?: Maybe<KitsuneDeletedPayload>;
|
|
176947
|
+
kitsune_removeFromSpace?: Maybe<KitsuneRemoveFromSpacePayload>;
|
|
176173
176948
|
kitsune_removeInsight?: Maybe<KitsuneDeletedRecord>;
|
|
176949
|
+
kitsune_removeInsightV2?: Maybe<KitsuneDeletedPayload>;
|
|
176174
176950
|
kitsune_removeOrganization?: Maybe<KitsuneDeletedRecord>;
|
|
176175
176951
|
kitsune_removeOrganizationField?: Maybe<KitsuneDeletedRecord>;
|
|
176176
176952
|
kitsune_removeSection?: Maybe<KitsuneDeletedRecord>;
|
|
176953
|
+
kitsune_removeSectionV2?: Maybe<KitsuneDeleteSectionPayload>;
|
|
176177
176954
|
kitsune_removeSnippet?: Maybe<KitsuneDeletedRecord>;
|
|
176955
|
+
kitsune_removeSnippetV2?: Maybe<KitsuneDeletedPayload>;
|
|
176178
176956
|
kitsune_removeSpace?: Maybe<KitsuneJob>;
|
|
176179
176957
|
kitsune_removeView?: Maybe<KitsuneDeletedRecord>;
|
|
176958
|
+
kitsune_removeViewV2?: Maybe<KitsuneDeleteViewPayload>;
|
|
176180
176959
|
kitsune_resyncFeedback?: Maybe<KitsuneJob>;
|
|
176181
176960
|
kitsune_resyncInsights?: Maybe<KitsuneJob>;
|
|
176961
|
+
kitsune_resyncInsightsV2?: Maybe<KitsuneResyncInsightsPayload>;
|
|
176182
176962
|
kitsune_syncCsmProperties?: Maybe<KitsuneJob>;
|
|
176183
176963
|
kitsune_syncCustomerFields?: Maybe<KitsuneJob>;
|
|
176184
176964
|
kitsune_syncCustomers?: Maybe<KitsuneJob>;
|
|
@@ -176187,13 +176967,18 @@ export type Mutation = {
|
|
|
176187
176967
|
kitsune_updateCustomerField?: Maybe<KitsuneCustomerCustomField>;
|
|
176188
176968
|
kitsune_updateFeedback?: Maybe<KitsuneFeedback>;
|
|
176189
176969
|
kitsune_updateField?: Maybe<KitsuneField>;
|
|
176970
|
+
kitsune_updateFieldV2?: Maybe<KitsuneUpdateFieldPayload>;
|
|
176190
176971
|
kitsune_updateInsight?: Maybe<KitsuneInsight>;
|
|
176972
|
+
kitsune_updateInsightV2?: Maybe<KitsuneUpdateInsightPayload>;
|
|
176191
176973
|
kitsune_updateOrganization?: Maybe<KitsuneOrganization>;
|
|
176192
176974
|
kitsune_updateOrganizationField?: Maybe<KitsuneCustomerCustomField>;
|
|
176193
176975
|
kitsune_updateSection?: Maybe<KitsuneSection>;
|
|
176976
|
+
kitsune_updateSectionV2?: Maybe<KitsuneSectionPayload>;
|
|
176194
176977
|
kitsune_updateSnippet?: Maybe<KitsuneSnippet>;
|
|
176978
|
+
kitsune_updateSnippetV2?: Maybe<KitsuneUpdateSnippetPayload>;
|
|
176195
176979
|
kitsune_updateSpace?: Maybe<KitsuneSpace>;
|
|
176196
176980
|
kitsune_updateView?: Maybe<KitsuneView>;
|
|
176981
|
+
kitsune_updateViewV2?: Maybe<KitsuneViewPayload>;
|
|
176197
176982
|
knowledgeBase?: Maybe<KnowledgeBaseMutationApi>;
|
|
176198
176983
|
knowledgeBaseSpacePermission_updateView: KnowledgeBaseSpacePermissionMutationResponse;
|
|
176199
176984
|
knowledgeBase_linkSources?: Maybe<KnowledgeBaseLinkSourcesResponse>;
|
|
@@ -176235,6 +177020,7 @@ export type Mutation = {
|
|
|
176235
177020
|
mercury_createAskCustomFieldDefinition?: Maybe<MercuryCreateCustomFieldDefinitionPayload>;
|
|
176236
177021
|
mercury_createAskStatusUpdate?: Maybe<MercuryUpsertAskStatusUpdatePayload>;
|
|
176237
177022
|
mercury_createAsks?: Maybe<MercuryCreateAsksPayload>;
|
|
177023
|
+
mercury_dataIntegrations?: Maybe<MercuryDataIntegrationsMutationApi>;
|
|
176238
177024
|
mercury_deleteAsk?: Maybe<MercuryDeleteAskPayload>;
|
|
176239
177025
|
mercury_deleteAskCustomFieldDefinition?: Maybe<MercuryDeleteCustomFieldDefinitionPayload>;
|
|
176240
177026
|
mercury_deleteAskCustomFieldDefinitionOptions?: Maybe<MercuryDeleteCustomFieldDefinitionOptionsPayload>;
|
|
@@ -176306,6 +177092,7 @@ export type Mutation = {
|
|
|
176306
177092
|
playbook_updateJiraPlaybook?: Maybe<UpdateJiraPlaybookPayload>;
|
|
176307
177093
|
playbook_updateJiraPlaybookLabel?: Maybe<UpdateJiraPlaybookLabelPayload>;
|
|
176308
177094
|
playbook_updateJiraPlaybookState?: Maybe<UpdateJiraPlaybookStatePayload>;
|
|
177095
|
+
processCombinedAppBuild?: Maybe<ProcessCombinedAppBuildResponse>;
|
|
176309
177096
|
projects_addGoalLink?: Maybe<TownsquareProjectsAddGoalLinkPayload>;
|
|
176310
177097
|
projects_addJiraWorkItemLink?: Maybe<TownsquareProjectsAddJiraWorkItemLinkPayload>;
|
|
176311
177098
|
projects_addMembers?: Maybe<TownsquareProjectsAddMembersPayload>;
|
|
@@ -176402,8 +177189,6 @@ export type Mutation = {
|
|
|
176402
177189
|
radar_updateSkillMappingStatuses?: Maybe<Array<RadarWorkerSkill>>;
|
|
176403
177190
|
radar_updateWorkerSkillMappings?: Maybe<Array<RadarUpdateWorkerSkillMappingsResponse>>;
|
|
176404
177191
|
radar_updateWorkspaceSettings?: Maybe<RadarMutationResponse>;
|
|
176405
|
-
radar_upsertAiScopedBudgetPolicies?: Maybe<RadarUpsertAiScopedBudgetPoliciesPayload>;
|
|
176406
|
-
radar_upsertAiWorkspaceBudgetPolicy?: Maybe<RadarAiWorkspaceBudgetPolicy>;
|
|
176407
177192
|
radar_upsertLastAppliedFilter?: Maybe<RadarLastAppliedFilter>;
|
|
176408
177193
|
radar_upsertView?: Maybe<RadarView>;
|
|
176409
177194
|
radar_upsertWorkTypeAllocations?: Maybe<RadarMutationResponse>;
|
|
@@ -177043,6 +177828,9 @@ export type MutationAgentWorkspace_AssignAgentsToSkillArgs = {
|
|
|
177043
177828
|
export type MutationAgentWorkspace_BulkUpsertDraftedRoutingTableEntriesArgs = {
|
|
177044
177829
|
input: AgentWorkspaceBulkUpsertDraftedRoutingTableEntriesInput;
|
|
177045
177830
|
};
|
|
177831
|
+
export type MutationAgentWorkspace_BulkUpsertDraftedTeamRoutingTableEntriesArgs = {
|
|
177832
|
+
input: AgentWorkspaceBulkUpsertDraftedTeamRoutingTableEntriesInput;
|
|
177833
|
+
};
|
|
177046
177834
|
export type MutationAgentWorkspace_CancelRoutingTableGenerationArgs = {
|
|
177047
177835
|
input: AgentWorkspaceCancelRoutingTableGenerationInput;
|
|
177048
177836
|
};
|
|
@@ -177136,6 +177924,9 @@ export type MutationAgentWorkspace_StartGenerateRoutingTableArgs = {
|
|
|
177136
177924
|
export type MutationAgentWorkspace_StartGenerateRoutingTableV2Args = {
|
|
177137
177925
|
input: AgentWorkspaceStartGenerateRoutingTableInputV2;
|
|
177138
177926
|
};
|
|
177927
|
+
export type MutationAgentWorkspace_StartGenerateTeamRoutingTableArgs = {
|
|
177928
|
+
input: AgentWorkspaceStartGenerateTeamRoutingTableInput;
|
|
177929
|
+
};
|
|
177139
177930
|
export type MutationAgentWorkspace_StartSmartRoutingDryRunArgs = {
|
|
177140
177931
|
input: AgentWorkspaceStartSmartRoutingDryRunInput;
|
|
177141
177932
|
};
|
|
@@ -177236,6 +178027,9 @@ export type MutationArchivePolarisInsightsArgs = {
|
|
|
177236
178027
|
export type MutationArchiveSpaceArgs = {
|
|
177237
178028
|
input: ArchiveSpaceInput;
|
|
177238
178029
|
};
|
|
178030
|
+
export type MutationArtifact_CreateArtifactArgs = {
|
|
178031
|
+
input: ArtifactCreateInput;
|
|
178032
|
+
};
|
|
177239
178033
|
export type MutationAssetsDm_AddDataDictionaryArgs = {
|
|
177240
178034
|
cloudId: Scalars['ID']['input'];
|
|
177241
178035
|
payload: AssetsDmAddDataDictionaryInput;
|
|
@@ -177770,6 +178564,9 @@ export type MutationAvp_RemoveDashboardElementArgs = {
|
|
|
177770
178564
|
export type MutationAvp_RemoveDashboardRowArgs = {
|
|
177771
178565
|
input: AvpRemoveDashboardRowInput;
|
|
177772
178566
|
};
|
|
178567
|
+
export type MutationAvp_ReplaceEmptyCanvasElementArgs = {
|
|
178568
|
+
input: AvpReplaceEmptyCanvasElementInput;
|
|
178569
|
+
};
|
|
177773
178570
|
export type MutationAvp_SignForgeContextTokenArgs = {
|
|
177774
178571
|
input: AvpSignForgeContextTokenInput;
|
|
177775
178572
|
};
|
|
@@ -178019,6 +178816,10 @@ export type MutationConfluence_AcceptAnswerArgs = {
|
|
|
178019
178816
|
cloudId: Scalars['ID']['input'];
|
|
178020
178817
|
input: ConfluenceAcceptAnswerInput;
|
|
178021
178818
|
};
|
|
178819
|
+
export type MutationConfluence_AccessLinkSpacesActionArgs = {
|
|
178820
|
+
cloudId: Scalars['ID']['input'];
|
|
178821
|
+
input: ConfluenceAccessLinkSpacesActionInput;
|
|
178822
|
+
};
|
|
178022
178823
|
export type MutationConfluence_AddInlineReactionArgs = {
|
|
178023
178824
|
cloudId: Scalars['ID']['input'];
|
|
178024
178825
|
input: ConfluenceAddInlineReactionInput;
|
|
@@ -178313,6 +179114,10 @@ export type MutationConfluence_PatchSpaceSettingsArgs = {
|
|
|
178313
179114
|
cloudId: Scalars['ID']['input'];
|
|
178314
179115
|
input: ConfluencePatchSpaceSettingsInput;
|
|
178315
179116
|
};
|
|
179117
|
+
export type MutationConfluence_PauseSmartFolderSyncArgs = {
|
|
179118
|
+
cloudId: Scalars['ID']['input'];
|
|
179119
|
+
input: ConfluenceSmartFolderSyncControlInput;
|
|
179120
|
+
};
|
|
178316
179121
|
export type MutationConfluence_PublishBlueprintSharedDraftArgs = {
|
|
178317
179122
|
cloudId: Scalars['ID']['input'];
|
|
178318
179123
|
input?: InputMaybe<ConfluencePublishBlueprintSharedDraftInput>;
|
|
@@ -178383,6 +179188,10 @@ export type MutationConfluence_RestoreSystemRoleArgs = {
|
|
|
178383
179188
|
cloudId: Scalars['ID']['input'];
|
|
178384
179189
|
input: ConfluenceRestoreSystemRoleInput;
|
|
178385
179190
|
};
|
|
179191
|
+
export type MutationConfluence_ResumeSmartFolderSyncArgs = {
|
|
179192
|
+
cloudId: Scalars['ID']['input'];
|
|
179193
|
+
input: ConfluenceSmartFolderSyncControlInput;
|
|
179194
|
+
};
|
|
178386
179195
|
export type MutationConfluence_SendToDesktopArgs = {
|
|
178387
179196
|
cloudId: Scalars['ID']['input'];
|
|
178388
179197
|
input: ConfluenceSendToDesktopRequestInput;
|
|
@@ -178526,6 +179335,10 @@ export type MutationConfluence_UpdateCustomRoleArgs = {
|
|
|
178526
179335
|
cloudId: Scalars['ID']['input'];
|
|
178527
179336
|
input: ConfluenceUpdateCustomRoleInput;
|
|
178528
179337
|
};
|
|
179338
|
+
export type MutationConfluence_UpdateCwrRemixCreationConfigurationArgs = {
|
|
179339
|
+
cloudId: Scalars['ID']['input'];
|
|
179340
|
+
input: ConfluenceUpdateCwrRemixCreationConfigurationInput;
|
|
179341
|
+
};
|
|
178529
179342
|
export type MutationConfluence_UpdateDefaultTitleEmojiArgs = {
|
|
178530
179343
|
cloudId: Scalars['ID']['input'];
|
|
178531
179344
|
input: ConfluenceUpdateDefaultTitleEmojiInput;
|
|
@@ -179762,6 +180575,9 @@ export type MutationGraphIntegration_CreateDataConnectorConnectionArgs = {
|
|
|
179762
180575
|
export type MutationGraphIntegration_CreateSkillArgs = {
|
|
179763
180576
|
input: GraphIntegrationCreateSkillInput;
|
|
179764
180577
|
};
|
|
180578
|
+
export type MutationGraphIntegration_CreateSkillCloneLinkArgs = {
|
|
180579
|
+
input: GraphIntegrationCreateSkillCloneLinkInput;
|
|
180580
|
+
};
|
|
179765
180581
|
export type MutationGraphIntegration_CustomAuthDeleteArgs = {
|
|
179766
180582
|
input: GraphIntegrationCustomAuthDeleteInput;
|
|
179767
180583
|
};
|
|
@@ -180341,6 +181157,10 @@ export type MutationGravity_SetViewArrangementArgs = {
|
|
|
180341
181157
|
cloudId: Scalars['ID']['input'];
|
|
180342
181158
|
input: GravitySetViewArrangementInput;
|
|
180343
181159
|
};
|
|
181160
|
+
export type MutationGravity_StartAltaSessionArgs = {
|
|
181161
|
+
cloudId: Scalars['ID']['input'];
|
|
181162
|
+
input: GravityStartAltaSessionInput;
|
|
181163
|
+
};
|
|
180344
181164
|
export type MutationGravity_UpdateDeliverySettingsArgs = {
|
|
180345
181165
|
cloudId: Scalars['ID']['input'];
|
|
180346
181166
|
input: GravityUpdateDeliverySettingsInput;
|
|
@@ -180371,9 +181191,6 @@ export type MutationHardDeleteSpaceArgs = {
|
|
|
180371
181191
|
export type MutationHelpCenterArgs = {
|
|
180372
181192
|
cloudId: Scalars['ID']['input'];
|
|
180373
181193
|
};
|
|
180374
|
-
export type MutationHelpExternalResourceArgs = {
|
|
180375
|
-
cloudId: Scalars['ID']['input'];
|
|
180376
|
-
};
|
|
180377
181194
|
export type MutationHelpLayoutArgs = {
|
|
180378
181195
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
180379
181196
|
};
|
|
@@ -181071,6 +181888,11 @@ export type MutationJsmTelemetry_DeleteTelemetryConnectionArgs = {
|
|
|
181071
181888
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
181072
181889
|
input: JsmTelemetryDeleteTelemetryConnectionInput;
|
|
181073
181890
|
};
|
|
181891
|
+
export type MutationJsmTelemetry_DiscoverAndSaveIncidentServiceMetricsArgs = {
|
|
181892
|
+
cloudId: Scalars['ID']['input'];
|
|
181893
|
+
incidentId: Scalars['ID']['input'];
|
|
181894
|
+
input: JsmTelemetryIncidentServiceMetricDiscoverySaveInput;
|
|
181895
|
+
};
|
|
181074
181896
|
export type MutationJsmTelemetry_RemoveChartArgs = {
|
|
181075
181897
|
chartId: Scalars['ID']['input'];
|
|
181076
181898
|
cloudId: Scalars['ID']['input'];
|
|
@@ -181136,6 +181958,9 @@ export type MutationKitsune_CreateFieldArgs = {
|
|
|
181136
181958
|
valueType: KitsuneFieldValueType;
|
|
181137
181959
|
workspaceAri: Scalars['ID']['input'];
|
|
181138
181960
|
};
|
|
181961
|
+
export type MutationKitsune_CreateFieldV2Args = {
|
|
181962
|
+
input: KitsuneCreateFieldInput;
|
|
181963
|
+
};
|
|
181139
181964
|
export type MutationKitsune_CreateInsightArgs = {
|
|
181140
181965
|
content?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
181141
181966
|
externalId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -181144,6 +181969,9 @@ export type MutationKitsune_CreateInsightArgs = {
|
|
|
181144
181969
|
spaceAri: Scalars['ID']['input'];
|
|
181145
181970
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
181146
181971
|
};
|
|
181972
|
+
export type MutationKitsune_CreateInsightV2Args = {
|
|
181973
|
+
input: KitsuneCreateInsightInput;
|
|
181974
|
+
};
|
|
181147
181975
|
export type MutationKitsune_CreateOrganizationArgs = {
|
|
181148
181976
|
domainName?: InputMaybe<Scalars['String']['input']>;
|
|
181149
181977
|
name: Scalars['String']['input'];
|
|
@@ -181161,12 +181989,18 @@ export type MutationKitsune_CreateSectionArgs = {
|
|
|
181161
181989
|
name: Scalars['String']['input'];
|
|
181162
181990
|
spaceAri: Scalars['ID']['input'];
|
|
181163
181991
|
};
|
|
181992
|
+
export type MutationKitsune_CreateSectionV2Args = {
|
|
181993
|
+
input: KitsuneCreateSectionInput;
|
|
181994
|
+
};
|
|
181164
181995
|
export type MutationKitsune_CreateSnippetArgs = {
|
|
181165
181996
|
content: Array<Scalars['String']['input']>;
|
|
181166
181997
|
feedbackId: Scalars['ID']['input'];
|
|
181167
181998
|
insightId: Scalars['ID']['input'];
|
|
181168
181999
|
markId?: InputMaybe<Scalars['ID']['input']>;
|
|
181169
182000
|
};
|
|
182001
|
+
export type MutationKitsune_CreateSnippetV2Args = {
|
|
182002
|
+
input: KitsuneCreateSnippetInput;
|
|
182003
|
+
};
|
|
181170
182004
|
export type MutationKitsune_CreateSpaceArgs = {
|
|
181171
182005
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
181172
182006
|
name: Scalars['String']['input'];
|
|
@@ -181182,6 +182016,9 @@ export type MutationKitsune_CreateViewArgs = {
|
|
|
181182
182016
|
spaceAri: Scalars['ID']['input'];
|
|
181183
182017
|
type: KitsuneViewType;
|
|
181184
182018
|
};
|
|
182019
|
+
export type MutationKitsune_CreateViewV2Args = {
|
|
182020
|
+
input: KitsuneCreateViewInput;
|
|
182021
|
+
};
|
|
181185
182022
|
export type MutationKitsune_ExportFeedbackFromViewArgs = {
|
|
181186
182023
|
viewId: Scalars['ID']['input'];
|
|
181187
182024
|
workspaceAri: Scalars['ID']['input'];
|
|
@@ -181192,22 +182029,42 @@ export type MutationKitsune_GenerateFeedbackSummaryArgs = {
|
|
|
181192
182029
|
export type MutationKitsune_GenerateInsightSummaryArgs = {
|
|
181193
182030
|
insightAri: Scalars['ID']['input'];
|
|
181194
182031
|
};
|
|
182032
|
+
export type MutationKitsune_GenerateInsightSummaryV2Args = {
|
|
182033
|
+
input: KitsuneGenerateInsightSummaryInput;
|
|
182034
|
+
};
|
|
182035
|
+
export type MutationKitsune_InviteToSpaceArgs = {
|
|
182036
|
+
input: KitsuneInviteToSpaceInput;
|
|
182037
|
+
};
|
|
181195
182038
|
export type MutationKitsune_LinkInsightsToIdeaArgs = {
|
|
181196
182039
|
ideaAri: Scalars['ID']['input'];
|
|
181197
182040
|
insightIds: Array<Scalars['ID']['input']>;
|
|
181198
182041
|
};
|
|
182042
|
+
export type MutationKitsune_LinkInsightsToIdeaV2Args = {
|
|
182043
|
+
input: KitsuneLinkInsightsToIdeaInput;
|
|
182044
|
+
};
|
|
181199
182045
|
export type MutationKitsune_MoveSectionArgs = {
|
|
181200
182046
|
rank: KitsuneRankInput;
|
|
181201
182047
|
sectionAri: Scalars['ID']['input'];
|
|
181202
182048
|
};
|
|
182049
|
+
export type MutationKitsune_MoveSectionV2Args = {
|
|
182050
|
+
id: Scalars['ID']['input'];
|
|
182051
|
+
input: KitsuneMoveSectionInput;
|
|
182052
|
+
};
|
|
181203
182053
|
export type MutationKitsune_MoveViewArgs = {
|
|
181204
182054
|
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
181205
182055
|
rank?: InputMaybe<KitsuneRankInput>;
|
|
181206
182056
|
viewAri: Scalars['ID']['input'];
|
|
181207
182057
|
};
|
|
182058
|
+
export type MutationKitsune_MoveViewV2Args = {
|
|
182059
|
+
id: Scalars['ID']['input'];
|
|
182060
|
+
input: KitsuneMoveViewInput;
|
|
182061
|
+
};
|
|
181208
182062
|
export type MutationKitsune_RefreshInsightCountersArgs = {
|
|
181209
182063
|
workspaceAri: Scalars['ID']['input'];
|
|
181210
182064
|
};
|
|
182065
|
+
export type MutationKitsune_RefreshInsightCountersV2Args = {
|
|
182066
|
+
input: KitsuneRefreshInsightCountersInput;
|
|
182067
|
+
};
|
|
181211
182068
|
export type MutationKitsune_RemoveConnectorConfigArgs = {
|
|
181212
182069
|
id: Scalars['ID']['input'];
|
|
181213
182070
|
input: KitsuneRemoveConnectorConfigInput;
|
|
@@ -181225,13 +182082,26 @@ export type MutationKitsune_RemoveFeedbackArgs = {
|
|
|
181225
182082
|
export type MutationKitsune_RemoveFieldArgs = {
|
|
181226
182083
|
id: Scalars['ID']['input'];
|
|
181227
182084
|
};
|
|
182085
|
+
export type MutationKitsune_RemoveFieldV2Args = {
|
|
182086
|
+
id: Scalars['ID']['input'];
|
|
182087
|
+
};
|
|
181228
182088
|
export type MutationKitsune_RemoveFieldValueArgs = {
|
|
181229
182089
|
fieldValueId: Scalars['ID']['input'];
|
|
181230
182090
|
workspaceAri: Scalars['ID']['input'];
|
|
181231
182091
|
};
|
|
182092
|
+
export type MutationKitsune_RemoveFieldValueV2Args = {
|
|
182093
|
+
id: Scalars['ID']['input'];
|
|
182094
|
+
input: KitsuneRemoveFieldValueInput;
|
|
182095
|
+
};
|
|
182096
|
+
export type MutationKitsune_RemoveFromSpaceArgs = {
|
|
182097
|
+
input: KitsuneRemoveFromSpaceInput;
|
|
182098
|
+
};
|
|
181232
182099
|
export type MutationKitsune_RemoveInsightArgs = {
|
|
181233
182100
|
id: Scalars['ID']['input'];
|
|
181234
182101
|
};
|
|
182102
|
+
export type MutationKitsune_RemoveInsightV2Args = {
|
|
182103
|
+
id: Scalars['ID']['input'];
|
|
182104
|
+
};
|
|
181235
182105
|
export type MutationKitsune_RemoveOrganizationArgs = {
|
|
181236
182106
|
ari: Scalars['ID']['input'];
|
|
181237
182107
|
};
|
|
@@ -181242,15 +182112,24 @@ export type MutationKitsune_RemoveOrganizationFieldArgs = {
|
|
|
181242
182112
|
export type MutationKitsune_RemoveSectionArgs = {
|
|
181243
182113
|
sectionAri: Scalars['ID']['input'];
|
|
181244
182114
|
};
|
|
182115
|
+
export type MutationKitsune_RemoveSectionV2Args = {
|
|
182116
|
+
id: Scalars['ID']['input'];
|
|
182117
|
+
};
|
|
181245
182118
|
export type MutationKitsune_RemoveSnippetArgs = {
|
|
181246
182119
|
id: Scalars['ID']['input'];
|
|
181247
182120
|
};
|
|
182121
|
+
export type MutationKitsune_RemoveSnippetV2Args = {
|
|
182122
|
+
id: Scalars['ID']['input'];
|
|
182123
|
+
};
|
|
181248
182124
|
export type MutationKitsune_RemoveSpaceArgs = {
|
|
181249
182125
|
id: Scalars['ID']['input'];
|
|
181250
182126
|
};
|
|
181251
182127
|
export type MutationKitsune_RemoveViewArgs = {
|
|
181252
182128
|
viewAri: Scalars['ID']['input'];
|
|
181253
182129
|
};
|
|
182130
|
+
export type MutationKitsune_RemoveViewV2Args = {
|
|
182131
|
+
id: Scalars['ID']['input'];
|
|
182132
|
+
};
|
|
181254
182133
|
export type MutationKitsune_ResyncFeedbackArgs = {
|
|
181255
182134
|
dateRange?: InputMaybe<KitsuneDateRangeInput>;
|
|
181256
182135
|
rebuildEmbeddings?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -181259,6 +182138,9 @@ export type MutationKitsune_ResyncFeedbackArgs = {
|
|
|
181259
182138
|
export type MutationKitsune_ResyncInsightsArgs = {
|
|
181260
182139
|
workspaceAri: Scalars['ID']['input'];
|
|
181261
182140
|
};
|
|
182141
|
+
export type MutationKitsune_ResyncInsightsV2Args = {
|
|
182142
|
+
input: KitsuneResyncInsightsInput;
|
|
182143
|
+
};
|
|
181262
182144
|
export type MutationKitsune_SyncCsmPropertiesArgs = {
|
|
181263
182145
|
workspaceAri: Scalars['ID']['input'];
|
|
181264
182146
|
};
|
|
@@ -181301,6 +182183,10 @@ export type MutationKitsune_UpdateFieldArgs = {
|
|
|
181301
182183
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
181302
182184
|
options?: InputMaybe<KitsuneFieldOptionsInput>;
|
|
181303
182185
|
};
|
|
182186
|
+
export type MutationKitsune_UpdateFieldV2Args = {
|
|
182187
|
+
id: Scalars['ID']['input'];
|
|
182188
|
+
input: KitsuneUpdateFieldInput;
|
|
182189
|
+
};
|
|
181304
182190
|
export type MutationKitsune_UpdateInsightArgs = {
|
|
181305
182191
|
content?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
181306
182192
|
externalId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -181309,6 +182195,10 @@ export type MutationKitsune_UpdateInsightArgs = {
|
|
|
181309
182195
|
summaryContent?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
181310
182196
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
181311
182197
|
};
|
|
182198
|
+
export type MutationKitsune_UpdateInsightV2Args = {
|
|
182199
|
+
id: Scalars['ID']['input'];
|
|
182200
|
+
input: KitsuneUpdateInsightInput;
|
|
182201
|
+
};
|
|
181312
182202
|
export type MutationKitsune_UpdateOrganizationArgs = {
|
|
181313
182203
|
defaultCustomerId?: InputMaybe<Scalars['ID']['input']>;
|
|
181314
182204
|
domain?: InputMaybe<KitsuneOrganizationDomainInput>;
|
|
@@ -181330,11 +182220,19 @@ export type MutationKitsune_UpdateSectionArgs = {
|
|
|
181330
182220
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
181331
182221
|
sectionAri: Scalars['ID']['input'];
|
|
181332
182222
|
};
|
|
182223
|
+
export type MutationKitsune_UpdateSectionV2Args = {
|
|
182224
|
+
id: Scalars['ID']['input'];
|
|
182225
|
+
input: KitsuneUpdateSectionInput;
|
|
182226
|
+
};
|
|
181333
182227
|
export type MutationKitsune_UpdateSnippetArgs = {
|
|
181334
182228
|
content?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
181335
182229
|
id: Scalars['ID']['input'];
|
|
181336
182230
|
insightId?: InputMaybe<Scalars['ID']['input']>;
|
|
181337
182231
|
};
|
|
182232
|
+
export type MutationKitsune_UpdateSnippetV2Args = {
|
|
182233
|
+
id: Scalars['ID']['input'];
|
|
182234
|
+
input: KitsuneUpdateSnippetInput;
|
|
182235
|
+
};
|
|
181338
182236
|
export type MutationKitsune_UpdateSpaceArgs = {
|
|
181339
182237
|
accessLevel?: InputMaybe<KitsuneSpaceAccessLevel>;
|
|
181340
182238
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -181348,6 +182246,10 @@ export type MutationKitsune_UpdateViewArgs = {
|
|
|
181348
182246
|
id: Scalars['ID']['input'];
|
|
181349
182247
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
181350
182248
|
};
|
|
182249
|
+
export type MutationKitsune_UpdateViewV2Args = {
|
|
182250
|
+
id: Scalars['ID']['input'];
|
|
182251
|
+
input: KitsuneUpdateViewInput;
|
|
182252
|
+
};
|
|
181351
182253
|
export type MutationKnowledgeBaseArgs = {
|
|
181352
182254
|
cloudId: Scalars['ID']['input'];
|
|
181353
182255
|
};
|
|
@@ -181652,6 +182554,9 @@ export type MutationPlaybook_UpdateJiraPlaybookLabelArgs = {
|
|
|
181652
182554
|
export type MutationPlaybook_UpdateJiraPlaybookStateArgs = {
|
|
181653
182555
|
input: UpdateJiraPlaybookStateInput;
|
|
181654
182556
|
};
|
|
182557
|
+
export type MutationProcessCombinedAppBuildArgs = {
|
|
182558
|
+
input: ProcessCombinedAppBuildInput;
|
|
182559
|
+
};
|
|
181655
182560
|
export type MutationProjects_AddGoalLinkArgs = {
|
|
181656
182561
|
input: TownsquareProjectsAddGoalLink;
|
|
181657
182562
|
};
|
|
@@ -181974,14 +182879,6 @@ export type MutationRadar_UpdateWorkspaceSettingsArgs = {
|
|
|
181974
182879
|
cloudId: Scalars['ID']['input'];
|
|
181975
182880
|
input: RadarWorkspaceSettingsInput;
|
|
181976
182881
|
};
|
|
181977
|
-
export type MutationRadar_UpsertAiScopedBudgetPoliciesArgs = {
|
|
181978
|
-
cloudId: Scalars['ID']['input'];
|
|
181979
|
-
input: RadarUpsertAiScopedBudgetPoliciesInput;
|
|
181980
|
-
};
|
|
181981
|
-
export type MutationRadar_UpsertAiWorkspaceBudgetPolicyArgs = {
|
|
181982
|
-
cloudId: Scalars['ID']['input'];
|
|
181983
|
-
input: RadarUpsertAiWorkspaceBudgetPolicyInput;
|
|
181984
|
-
};
|
|
181985
182882
|
export type MutationRadar_UpsertLastAppliedFilterArgs = {
|
|
181986
182883
|
cloudId: Scalars['ID']['input'];
|
|
181987
182884
|
input: RadarLastAppliedFilterInput;
|
|
@@ -185242,6 +186139,84 @@ export type ProactiveAiStratusTestInsightsResponse = {
|
|
|
185242
186139
|
minionResults: Array<ProactiveAiStratusTestInsightsMinionResult>;
|
|
185243
186140
|
traceId: Scalars['String']['output'];
|
|
185244
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
|
+
};
|
|
185245
186220
|
export declare enum Product {
|
|
185246
186221
|
Confluence = "CONFLUENCE"
|
|
185247
186222
|
}
|
|
@@ -185323,12 +186298,21 @@ export type PsmActiveSensors = {
|
|
|
185323
186298
|
};
|
|
185324
186299
|
export type PsmActiveSensorsFilter = {
|
|
185325
186300
|
category?: InputMaybe<Scalars['String']['input']>;
|
|
186301
|
+
remediationCategories?: InputMaybe<Array<PsmRemediationCategory>>;
|
|
185326
186302
|
remediationModes?: InputMaybe<Array<PsmRemediationMode>>;
|
|
185327
186303
|
};
|
|
185328
186304
|
export declare enum PsmActorType {
|
|
185329
186305
|
System = "SYSTEM",
|
|
185330
186306
|
User = "USER"
|
|
185331
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
|
+
}
|
|
185332
186316
|
export type PsmAuditActor = {
|
|
185333
186317
|
__typename?: 'PsmAuditActor';
|
|
185334
186318
|
accountId: Scalars['ID']['output'];
|
|
@@ -185460,8 +186444,11 @@ export declare enum PsmDeviceHealthStatus {
|
|
|
185460
186444
|
}
|
|
185461
186445
|
export type PsmDeviceIdentity = {
|
|
185462
186446
|
__typename?: 'PsmDeviceIdentity';
|
|
186447
|
+
configuration?: Maybe<PsmDeviceConfiguration>;
|
|
185463
186448
|
deviceName?: Maybe<Scalars['String']['output']>;
|
|
185464
186449
|
isDeviceOffline?: Maybe<Scalars['Boolean']['output']>;
|
|
186450
|
+
lastSeen?: Maybe<Scalars['DateTime']['output']>;
|
|
186451
|
+
owner?: Maybe<PsmDeviceOwner>;
|
|
185465
186452
|
serialNumber: Scalars['String']['output'];
|
|
185466
186453
|
};
|
|
185467
186454
|
export type PsmDeviceOwner = {
|
|
@@ -185485,6 +186472,21 @@ export declare enum PsmDeviceStatus {
|
|
|
185485
186472
|
Orphan = "ORPHAN",
|
|
185486
186473
|
Unmapped = "UNMAPPED"
|
|
185487
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
|
+
};
|
|
185488
186490
|
export type PsmFinishOnboardTenantInput = {
|
|
185489
186491
|
spaceId: Scalars['ID']['input'];
|
|
185490
186492
|
};
|
|
@@ -185561,6 +186563,16 @@ export type PsmRemediatedBy = {
|
|
|
185561
186563
|
kind?: Maybe<PsmActorType>;
|
|
185562
186564
|
name?: Maybe<Scalars['String']['output']>;
|
|
185563
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
|
+
};
|
|
185564
186576
|
export declare enum PsmRemediationMode {
|
|
185565
186577
|
AgentAction = "AGENT_ACTION",
|
|
185566
186578
|
Automated = "AUTOMATED"
|
|
@@ -185608,6 +186620,7 @@ export type PsmSensorConfig = {
|
|
|
185608
186620
|
description?: Maybe<Scalars['String']['output']>;
|
|
185609
186621
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
185610
186622
|
id: Scalars['ID']['output'];
|
|
186623
|
+
kbArticleAris?: Maybe<Array<Scalars['String']['output']>>;
|
|
185611
186624
|
name?: Maybe<Scalars['String']['output']>;
|
|
185612
186625
|
remediationType?: Maybe<PsmSensorRemediationType>;
|
|
185613
186626
|
sensorId?: Maybe<Scalars['String']['output']>;
|
|
@@ -185688,6 +186701,7 @@ export type PsmSensorTriggerState = {
|
|
|
185688
186701
|
lastRemediatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
185689
186702
|
lastRemediatedBy?: Maybe<PsmRemediatedBy>;
|
|
185690
186703
|
lastRemediationError?: Maybe<Scalars['String']['output']>;
|
|
186704
|
+
remediationCategory?: Maybe<PsmRemediationCategoryInfo>;
|
|
185691
186705
|
remediationMode?: Maybe<PsmRemediationMode>;
|
|
185692
186706
|
remediationStatus?: Maybe<PsmRemediationStatus>;
|
|
185693
186707
|
remediationType?: Maybe<PsmSensorRemediationType>;
|
|
@@ -186100,6 +187114,7 @@ export type Query = {
|
|
|
186100
187114
|
admin_breachingConnectionsForUnit?: Maybe<AdminBreachingConnectionsConnection>;
|
|
186101
187115
|
admin_checkLicensesCapacity?: Maybe<AdminCheckLicensesCapacity>;
|
|
186102
187116
|
admin_connectedAppInstallations?: Maybe<AdminConnectedResourcesConnection>;
|
|
187117
|
+
admin_domainClaims?: Maybe<AdminDomainClaimConnection>;
|
|
186103
187118
|
admin_effectiveRoleAssignmentsByPrincipal?: Maybe<AdminRoleAssignmentEffectiveConnection>;
|
|
186104
187119
|
admin_fetchConnectorFormData?: Maybe<AdminFormFieldConnection>;
|
|
186105
187120
|
admin_fetchConnectorFormEntities?: Maybe<AdminFormFieldConnection>;
|
|
@@ -186319,6 +187334,7 @@ export type Query = {
|
|
|
186319
187334
|
appSwitcher_unitProfile?: Maybe<AppSwitcherUnitProfileResult>;
|
|
186320
187335
|
apps?: Maybe<AppConnection>;
|
|
186321
187336
|
aquaOutgoingEmailLogs?: Maybe<AquaOutgoingEmailLogsQueryApi>;
|
|
187337
|
+
artifact_getArtifact?: Maybe<Artifact>;
|
|
186322
187338
|
assetsDM_adapters?: Maybe<AssetsDmAdapters>;
|
|
186323
187339
|
assetsDM_advisoryNotifications?: Maybe<AssetsDmAdvisoryNotificationsResponse>;
|
|
186324
187340
|
assetsDM_allCleansingRules?: Maybe<Array<AssetsDmDefFunction>>;
|
|
@@ -186637,6 +187653,7 @@ export type Query = {
|
|
|
186637
187653
|
confluence_getPlaylist?: Maybe<ConfluencePlaylist>;
|
|
186638
187654
|
confluence_getSmartContentFeatures?: Maybe<Array<Maybe<SmartPageFeatures>>>;
|
|
186639
187655
|
confluence_getTotalPendingContentAccessRequestsCount?: Maybe<Scalars['Int']['output']>;
|
|
187656
|
+
confluence_getTotalPendingSpaceAccessRequestsCount?: Maybe<Scalars['Int']['output']>;
|
|
186640
187657
|
confluence_getWacTemplate?: Maybe<ConfluenceWacTemplate>;
|
|
186641
187658
|
confluence_getWorkflowReviewByApplicationId?: Maybe<ConfluenceWorkflowReviewWithDecisionsPayload>;
|
|
186642
187659
|
confluence_hasClearPermissionForSpace?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -186720,6 +187737,7 @@ export type Query = {
|
|
|
186720
187737
|
confluence_spaceRoleMode?: Maybe<ConfluenceSpaceRoleMode>;
|
|
186721
187738
|
confluence_spaceWatchersUnfiltered?: Maybe<PaginatedPersonList>;
|
|
186722
187739
|
confluence_spacesByCombinationId?: Maybe<ConfluencePermissionTransitionSpaceConnection>;
|
|
187740
|
+
confluence_staticMacro?: Maybe<ConfluenceStaticMacroRendered>;
|
|
186723
187741
|
confluence_staticMacros?: Maybe<ConfluenceStaticMacroRenderedConnection>;
|
|
186724
187742
|
confluence_storage?: Maybe<ConfluenceStorage>;
|
|
186725
187743
|
confluence_subCalendarEmbedInfo?: Maybe<Array<Maybe<ConfluenceSubCalendarEmbedInfo>>>;
|
|
@@ -186795,6 +187813,7 @@ export type Query = {
|
|
|
186795
187813
|
cpls_getContributorContributionAggregations?: Maybe<CplsContributorContributionAggregationsResult>;
|
|
186796
187814
|
cpls_getContributorScopeAssociations?: Maybe<CplsContributorScopeAssociationConnection>;
|
|
186797
187815
|
cpls_getContributorWorkAssociations?: Maybe<CplsContributorWorkAssociationConnection>;
|
|
187816
|
+
cpls_getWorkContributionAggregations?: Maybe<CplsWorkContributionAggregationsResult>;
|
|
186798
187817
|
cpls_peopleView?: Maybe<CplsPeopleView>;
|
|
186799
187818
|
cpls_recommendWork?: Maybe<CplsWorkRecommendations>;
|
|
186800
187819
|
cpls_recommendWorkForContributor?: Maybe<CplsWorkRecommendations>;
|
|
@@ -187007,6 +188026,7 @@ export type Query = {
|
|
|
187007
188026
|
goals_byIds?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
187008
188027
|
goals_byKey?: Maybe<TownsquareGoal>;
|
|
187009
188028
|
goals_capabilities?: Maybe<TownsquareGoalAppCapabilities>;
|
|
188029
|
+
goals_customFieldDefinitionSearch?: Maybe<TownsquareCustomFieldDefinitionConnection>;
|
|
187010
188030
|
goals_directoryViewById?: Maybe<TownsquareDirectoryView>;
|
|
187011
188031
|
goals_directoryViewSearch?: Maybe<TownsquareDirectoryViewConnection>;
|
|
187012
188032
|
goals_explainSearch?: Maybe<TownsquareSearchExplanation>;
|
|
@@ -187043,6 +188063,7 @@ export type Query = {
|
|
|
187043
188063
|
graphInference_inferenceModels?: Maybe<GraphInferenceInferenceModelsResponse>;
|
|
187044
188064
|
graphInference_inferenceQualityMetrics?: Maybe<GraphInferenceInferenceQualityMetricsResponse>;
|
|
187045
188065
|
graphInference_inferredProjectMe?: Maybe<GraphInferenceInferredProjectMeResponse>;
|
|
188066
|
+
graphInference_inferredProjectSummaries?: Maybe<GraphInferenceInferredProjectSummariesResponse>;
|
|
187046
188067
|
graphIntegration_availableTwgCapabilityContainers?: Maybe<Array<Maybe<GraphIntegrationTwgCapabilityContainerMeta>>>;
|
|
187047
188068
|
graphIntegration_componentDirectoryDimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
|
|
187048
188069
|
graphIntegration_componentDirectoryItems?: Maybe<GraphIntegrationDirectoryItemConnection>;
|
|
@@ -187066,6 +188087,7 @@ export type Query = {
|
|
|
187066
188087
|
graphIntegration_skillDimensionMetadata?: Maybe<GraphIntegrationSkillDimensionMetadata>;
|
|
187067
188088
|
graphIntegration_skillItems?: Maybe<Array<Maybe<GraphIntegrationSkillItem>>>;
|
|
187068
188089
|
graphIntegration_twgCapabilityContainer?: Maybe<GraphIntegrationTwgCapabilityContainer>;
|
|
188090
|
+
graphIntegration_twgCapabilityContainerTools?: Maybe<Array<GraphIntegrationActionAdminManagementActionNode>>;
|
|
187069
188091
|
graphIntegration_twgCapabilityContainersInContext?: Maybe<GraphIntegrationTwgCapabilityContainerConnection>;
|
|
187070
188092
|
graphIntegration_twgPlatformCapabilityGlobalAdminSettings?: Maybe<GraphIntegrationTwgPlatformCapabilityGlobalAdminSettings>;
|
|
187071
188093
|
graphIntegration_twgProductAdminSettings?: Maybe<GraphIntegrationTwgProductAdminSettings>;
|
|
@@ -189141,6 +190163,8 @@ export type Query = {
|
|
|
189141
190163
|
graphStore_userViewedGoalUpdateInverse?: Maybe<GraphStoreSimplifiedUserViewedGoalUpdateInverseConnection>;
|
|
189142
190164
|
graphStore_userViewedGoalUpdateInverseBatch?: Maybe<GraphStoreBatchUserViewedGoalUpdateConnection>;
|
|
189143
190165
|
graphStore_userViewedJiraIssue?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueConnection>;
|
|
190166
|
+
graphStore_userViewedJiraIssueAnalyticsTest?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueAnalyticsTestConnection>;
|
|
190167
|
+
graphStore_userViewedJiraIssueAnalyticsTestInverse?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueAnalyticsTestInverseConnection>;
|
|
189144
190168
|
graphStore_userViewedJiraIssueInverse?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueInverseConnection>;
|
|
189145
190169
|
graphStore_userViewedProjectUpdate?: Maybe<GraphStoreSimplifiedUserViewedProjectUpdateConnection>;
|
|
189146
190170
|
graphStore_userViewedProjectUpdateBatch?: Maybe<GraphStoreBatchUserViewedProjectUpdateConnection>;
|
|
@@ -189209,6 +190233,7 @@ export type Query = {
|
|
|
189209
190233
|
graphStore_vulnerabilityAssociatedIssueRelationship?: Maybe<GraphStoreFullVulnerabilityAssociatedIssueConnection>;
|
|
189210
190234
|
graphStore_workerAssociatedExternalWorker?: Maybe<GraphStoreSimplifiedWorkerAssociatedExternalWorkerConnection>;
|
|
189211
190235
|
graphStore_workerAssociatedExternalWorkerInverse?: Maybe<GraphStoreSimplifiedWorkerAssociatedExternalWorkerInverseConnection>;
|
|
190236
|
+
gravity_canCreateViewsFromTemplates?: Maybe<GravityCanCreateViewsFromTemplatesResult>;
|
|
189212
190237
|
gravity_deliverySettings?: Maybe<GravityDeliverySettingsResult>;
|
|
189213
190238
|
gravity_detailedReaction?: Maybe<GravityDetailedReactionResult>;
|
|
189214
190239
|
gravity_draft?: Maybe<GravityDraft>;
|
|
@@ -189238,7 +190263,6 @@ export type Query = {
|
|
|
189238
190263
|
hasUserAccessAdminRole?: Maybe<Scalars['Boolean']['output']>;
|
|
189239
190264
|
hasUserCommented?: Maybe<Scalars['Boolean']['output']>;
|
|
189240
190265
|
helpCenter?: Maybe<HelpCenterQueryApi>;
|
|
189241
|
-
helpExternalResource?: Maybe<HelpExternalResourceQueryApi>;
|
|
189242
190266
|
helpLayout?: Maybe<HelpLayoutQueryApi>;
|
|
189243
190267
|
helpObjectStore?: Maybe<HelpObjectStoreQueryApi>;
|
|
189244
190268
|
helpObjectStore_searchArticles?: Maybe<HelpObjectStoreArticleSearchResponse>;
|
|
@@ -189310,7 +190334,10 @@ export type Query = {
|
|
|
189310
190334
|
jira_isTenantConvertedToNfa?: Maybe<Scalars['Boolean']['output']>;
|
|
189311
190335
|
jira_issueCreateAdditionalServices?: Maybe<JiraIssueCreateAdditionalServicesResult>;
|
|
189312
190336
|
jira_issueCreateFields?: Maybe<JiraIssueCreateFieldsResult>;
|
|
190337
|
+
jira_issueCreateFieldsInContext?: Maybe<JiraIssueCreateFieldsResult>;
|
|
189313
190338
|
jira_issueCreateLayout?: Maybe<JiraIssueCreateLayoutResult>;
|
|
190339
|
+
jira_issueCreateLayoutInContext?: Maybe<JiraIssueCreateLayoutResult>;
|
|
190340
|
+
jira_issueCreateLayoutInContextWithML?: Maybe<JiraIssueCreateLayoutResult>;
|
|
189314
190341
|
jira_issueCreateLayoutWithML?: Maybe<JiraIssueCreateLayoutResult>;
|
|
189315
190342
|
jira_issueSearchTopLevelIssueFieldsAggregation?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
189316
190343
|
jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
|
|
@@ -189378,6 +190405,8 @@ export type Query = {
|
|
|
189378
190405
|
jsmTelemetry_chartData?: Maybe<JsmTelemetryChartDataResult>;
|
|
189379
190406
|
jsmTelemetry_dashboard?: Maybe<JsmTelemetryDashboardResult>;
|
|
189380
190407
|
jsmTelemetry_dashboardByScope?: Maybe<JsmTelemetryDashboardData>;
|
|
190408
|
+
jsmTelemetry_discoverAllIncidentServiceMetrics?: Maybe<JsmTelemetryIncidentServiceMetricDiscoveryAllResult>;
|
|
190409
|
+
jsmTelemetry_discoverIncidentServiceMetrics?: Maybe<JsmTelemetryIncidentServiceMetricDiscoveryResult>;
|
|
189381
190410
|
jsmTelemetry_getIncidentContext?: Maybe<JsmTelemetryIncidentContextResult>;
|
|
189382
190411
|
jsmTelemetry_getMetricAttributeValues?: Maybe<JsmTelemetryMetricAttributeValuesResult>;
|
|
189383
190412
|
jsmTelemetry_getMetricAttributes?: Maybe<JsmTelemetryMetricAttributesResult>;
|
|
@@ -189461,6 +190490,7 @@ export type Query = {
|
|
|
189461
190490
|
loom_joinableWorkspaces?: Maybe<Array<Maybe<LoomJoinableWorkspace>>>;
|
|
189462
190491
|
loom_meeting?: Maybe<LoomMeeting>;
|
|
189463
190492
|
loom_meetingActionItems?: Maybe<Array<Maybe<LoomMeetingActionItem>>>;
|
|
190493
|
+
loom_meetingJiraSuggestion?: Maybe<LoomMeetingJiraSuggestion>;
|
|
189464
190494
|
loom_meetingRecurrence?: Maybe<LoomMeetingRecurrence>;
|
|
189465
190495
|
loom_meetingRecurrences?: Maybe<Array<Maybe<LoomMeetingRecurrence>>>;
|
|
189466
190496
|
loom_meetings?: Maybe<Array<Maybe<LoomMeeting>>>;
|
|
@@ -189482,7 +190512,6 @@ export type Query = {
|
|
|
189482
190512
|
loom_workspace?: Maybe<LoomWorkspace>;
|
|
189483
190513
|
loom_workspaceTrendingVideos?: Maybe<Array<Maybe<LoomVideo>>>;
|
|
189484
190514
|
loom_workspaces?: Maybe<Array<Maybe<LoomWorkspace>>>;
|
|
189485
|
-
lpLearnerData?: Maybe<LpLearnerData>;
|
|
189486
190515
|
m360Service_helloWorld?: Maybe<M360ServiceHelloWorldPayload>;
|
|
189487
190516
|
macroBodyRenderer?: Maybe<MacroBody>;
|
|
189488
190517
|
macros?: Maybe<MacroConnection>;
|
|
@@ -189504,6 +190533,7 @@ export type Query = {
|
|
|
189504
190533
|
marketplaceStore_productTagsV2?: Maybe<Array<Maybe<MarketplaceStoreProductTag>>>;
|
|
189505
190534
|
marketplaceStore_recommendationsSectionV2?: Maybe<MarketplaceStoreRecommendationsSection>;
|
|
189506
190535
|
marketplaceStore_reviewSummaryV2?: Maybe<MarketplaceStoreReviewSummaryResponse>;
|
|
190536
|
+
marketplaceStore_similarObjects?: Maybe<MarketplaceStoreSimilarObjectsResponse>;
|
|
189507
190537
|
me: AuthenticationContext;
|
|
189508
190538
|
mediaConfiguration?: Maybe<MediaConfiguration>;
|
|
189509
190539
|
media_items?: Maybe<Array<MediaItem>>;
|
|
@@ -189595,6 +190625,8 @@ export type Query = {
|
|
|
189595
190625
|
popularFeed?: Maybe<PaginatedPopularFeed>;
|
|
189596
190626
|
postOffice_getMessages?: Maybe<PostOfficeEnrichedMessagePayload>;
|
|
189597
190627
|
postOffice_placeholder?: Maybe<Scalars['String']['output']>;
|
|
190628
|
+
proactiveAi_generateUserActions?: Maybe<ProactiveAiUserActionItemsGenerationResponse>;
|
|
190629
|
+
proactiveAi_retrieveUserActions?: Maybe<ProactiveAiUserActionItemsResponse>;
|
|
189598
190630
|
proactiveAi_rovoInsightsData?: Maybe<ProactiveAiRovoInsightsDataResponse>;
|
|
189599
190631
|
proactiveAi_rovoInsightsStatus?: Maybe<ProactiveAiRovoInsightsStatusResponse>;
|
|
189600
190632
|
proactiveAi_stratusTestInsights?: Maybe<ProactiveAiStratusTestInsightsResponse>;
|
|
@@ -189630,6 +190662,7 @@ export type Query = {
|
|
|
189630
190662
|
psm_dashboardOverview?: Maybe<PsmDashboardOverview>;
|
|
189631
190663
|
psm_device?: Maybe<PsmDevice>;
|
|
189632
190664
|
psm_devices?: Maybe<PsmDeviceConnection>;
|
|
190665
|
+
psm_eligibleUsersList?: Maybe<PsmEligibleUsersListResult>;
|
|
189633
190666
|
psm_onboardTenantStatus?: Maybe<PsmOnboardTenantStatusResult>;
|
|
189634
190667
|
psm_sensorCategories?: Maybe<PsmSensorCategoriesResult>;
|
|
189635
190668
|
psm_sensorDetails?: Maybe<PsmSensorConfigResult>;
|
|
@@ -189649,8 +190682,6 @@ export type Query = {
|
|
|
189649
190682
|
quickReload?: Maybe<QuickReload>;
|
|
189650
190683
|
radar_aiConnectorById?: Maybe<RadarAiConnector>;
|
|
189651
190684
|
radar_aiConnectors?: Maybe<RadarAiConnectorsConnection>;
|
|
189652
|
-
radar_aiScopedBudgetPolicies?: Maybe<RadarAiScopedBudgetPolicyConnection>;
|
|
189653
|
-
radar_aiWorkspaceBudgetPolicy?: Maybe<RadarAiWorkspaceBudgetPolicy>;
|
|
189654
190685
|
radar_availableCustomFieldsFromLastSync?: Maybe<RadarAvailableCustomFieldsFromLastSync>;
|
|
189655
190686
|
radar_benchmarks?: Maybe<Array<RadarMetricSettings>>;
|
|
189656
190687
|
radar_connectors?: Maybe<Array<RadarConnector>>;
|
|
@@ -189903,6 +190934,7 @@ export type Query = {
|
|
|
189903
190934
|
users?: Maybe<Array<User>>;
|
|
189904
190935
|
usersWithContentRestrictions?: Maybe<Array<Maybe<UserWithRestrictions>>>;
|
|
189905
190936
|
uts_allowanceExemptions?: Maybe<UtsAllowanceExemptionList>;
|
|
190937
|
+
uts_allowancePoolsByOwner?: Maybe<Array<Maybe<UtsAllowancePool>>>;
|
|
189906
190938
|
uts_meterConfiguration?: Maybe<UtsMeterConfiguration>;
|
|
189907
190939
|
uts_usageAlerts?: Maybe<Array<Maybe<UtsUsageAlert>>>;
|
|
189908
190940
|
validateConvertPageToLiveEdit?: Maybe<ConvertPageToLiveEditValidationResult>;
|
|
@@ -189992,6 +191024,7 @@ export type QueryAdmin_AuditLogEventIpAddressesArgs = {
|
|
|
189992
191024
|
filter?: InputMaybe<Scalars['String']['input']>;
|
|
189993
191025
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
189994
191026
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
191027
|
+
queryId?: InputMaybe<Scalars['String']['input']>;
|
|
189995
191028
|
};
|
|
189996
191029
|
export type QueryAdmin_AuditLogEventLocationsArgs = {
|
|
189997
191030
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -190000,6 +191033,7 @@ export type QueryAdmin_AuditLogEventLocationsArgs = {
|
|
|
190000
191033
|
filter?: InputMaybe<Scalars['String']['input']>;
|
|
190001
191034
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
190002
191035
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
191036
|
+
queryId?: InputMaybe<Scalars['String']['input']>;
|
|
190003
191037
|
};
|
|
190004
191038
|
export type QueryAdmin_AuditLogEventsArgs = {
|
|
190005
191039
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -190045,6 +191079,11 @@ export type QueryAdmin_ConnectedAppInstallationsArgs = {
|
|
|
190045
191079
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
190046
191080
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
190047
191081
|
};
|
|
191082
|
+
export type QueryAdmin_DomainClaimsArgs = {
|
|
191083
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
191084
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
191085
|
+
orgId: Scalars['ID']['input'];
|
|
191086
|
+
};
|
|
190048
191087
|
export type QueryAdmin_EffectiveRoleAssignmentsByPrincipalArgs = {
|
|
190049
191088
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
190050
191089
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -190710,6 +191749,7 @@ export type QueryAgentWorkspace_DraftedRoutingTableStatusArgs = {
|
|
|
190710
191749
|
};
|
|
190711
191750
|
export type QueryAgentWorkspace_DraftedTeamRoutingTableEntriesArgs = {
|
|
190712
191751
|
cloudId: Scalars['ID']['input'];
|
|
191752
|
+
draftId?: InputMaybe<Scalars['ID']['input']>;
|
|
190713
191753
|
projectKey: Scalars['String']['input'];
|
|
190714
191754
|
};
|
|
190715
191755
|
export type QueryAgentWorkspace_EligibleGroupsArgs = {
|
|
@@ -191209,6 +192249,9 @@ export type QueryAppsArgs = {
|
|
|
191209
192249
|
export type QueryAquaOutgoingEmailLogsArgs = {
|
|
191210
192250
|
cloudId: Scalars['ID']['input'];
|
|
191211
192251
|
};
|
|
192252
|
+
export type QueryArtifact_GetArtifactArgs = {
|
|
192253
|
+
id: Scalars['ID']['input'];
|
|
192254
|
+
};
|
|
191212
192255
|
export type QueryAssetsDm_AdaptersArgs = {
|
|
191213
192256
|
cloudId: Scalars['ID']['input'];
|
|
191214
192257
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -192705,6 +193748,9 @@ export type QueryConfluence_GetSmartContentFeaturesArgs = {
|
|
|
192705
193748
|
export type QueryConfluence_GetTotalPendingContentAccessRequestsCountArgs = {
|
|
192706
193749
|
cloudId: Scalars['ID']['input'];
|
|
192707
193750
|
};
|
|
193751
|
+
export type QueryConfluence_GetTotalPendingSpaceAccessRequestsCountArgs = {
|
|
193752
|
+
cloudId: Scalars['ID']['input'];
|
|
193753
|
+
};
|
|
192708
193754
|
export type QueryConfluence_GetWacTemplateArgs = {
|
|
192709
193755
|
cloudId: Scalars['ID']['input'];
|
|
192710
193756
|
};
|
|
@@ -193108,6 +194154,12 @@ export type QueryConfluence_SpacesByCombinationIdArgs = {
|
|
|
193108
194154
|
spaceSelection?: InputMaybe<ConfluencePermissionTransitionSpaceTargetSelectionInput>;
|
|
193109
194155
|
spaceTypeFilters?: InputMaybe<Array<InputMaybe<ConfluencePermissionTransitionSpaceTypeFilter>>>;
|
|
193110
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
|
+
};
|
|
193111
194163
|
export type QueryConfluence_StaticMacrosArgs = {
|
|
193112
194164
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
193113
194165
|
cloudId: Scalars['ID']['input'];
|
|
@@ -193525,6 +194577,9 @@ export type QueryCpls_GetContributorScopeAssociationsArgs = {
|
|
|
193525
194577
|
export type QueryCpls_GetContributorWorkAssociationsArgs = {
|
|
193526
194578
|
input: CplsGetContributorWorkAssociationsInput;
|
|
193527
194579
|
};
|
|
194580
|
+
export type QueryCpls_GetWorkContributionAggregationsArgs = {
|
|
194581
|
+
input: CplsGetWorkContributionAggregationsInput;
|
|
194582
|
+
};
|
|
193528
194583
|
export type QueryCpls_PeopleViewArgs = {
|
|
193529
194584
|
filters?: InputMaybe<CplsFiltersInput>;
|
|
193530
194585
|
id: Scalars['ID']['input'];
|
|
@@ -193984,6 +195039,7 @@ export type QueryDevai_AutodevNextWorkstreamTasksArgs = {
|
|
|
193984
195039
|
export type QueryDevai_AutodevNextWorkstreamsArgs = {
|
|
193985
195040
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
193986
195041
|
cloudId: Scalars['ID']['input'];
|
|
195042
|
+
filter?: InputMaybe<DevAiAutodevNextWorkstreamFilter>;
|
|
193987
195043
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
193988
195044
|
};
|
|
193989
195045
|
export type QueryDevai_AutodevRovoAgentsArgs = {
|
|
@@ -194426,6 +195482,13 @@ export type QueryGoals_ByKeyArgs = {
|
|
|
194426
195482
|
export type QueryGoals_CapabilitiesArgs = {
|
|
194427
195483
|
containerId: Scalars['ID']['input'];
|
|
194428
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
|
+
};
|
|
194429
195492
|
export type QueryGoals_DirectoryViewByIdArgs = {
|
|
194430
195493
|
containerId: Scalars['ID']['input'];
|
|
194431
195494
|
directoryId: Scalars['ID']['input'];
|
|
@@ -194653,6 +195716,10 @@ export type QueryGraphIntegration_TwgCapabilityContainerArgs = {
|
|
|
194653
195716
|
contextAri: Scalars['ID']['input'];
|
|
194654
195717
|
id: Scalars['String']['input'];
|
|
194655
195718
|
};
|
|
195719
|
+
export type QueryGraphIntegration_TwgCapabilityContainerToolsArgs = {
|
|
195720
|
+
contextAri: Scalars['ID']['input'];
|
|
195721
|
+
productAri: Scalars['ID']['input'];
|
|
195722
|
+
};
|
|
194656
195723
|
export type QueryGraphIntegration_TwgCapabilityContainersInContextArgs = {
|
|
194657
195724
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
194658
195725
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -210090,6 +211157,22 @@ export type QueryGraphStore_UserViewedJiraIssueArgs = {
|
|
|
210090
211157
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
210091
211158
|
sort?: InputMaybe<GraphStoreUserViewedJiraIssueSortInput>;
|
|
210092
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
|
+
};
|
|
210093
211176
|
export type QueryGraphStore_UserViewedJiraIssueInverseArgs = {
|
|
210094
211177
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
210095
211178
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -210594,6 +211677,11 @@ export type QueryGraphStore_WorkerAssociatedExternalWorkerInverseArgs = {
|
|
|
210594
211677
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
210595
211678
|
sort?: InputMaybe<GraphStoreWorkerAssociatedExternalWorkerSortInput>;
|
|
210596
211679
|
};
|
|
211680
|
+
export type QueryGravity_CanCreateViewsFromTemplatesArgs = {
|
|
211681
|
+
cloudId: Scalars['ID']['input'];
|
|
211682
|
+
projectId: Scalars['ID']['input'];
|
|
211683
|
+
templates: Array<GravityCanCreateViewFromTemplateInput>;
|
|
211684
|
+
};
|
|
210597
211685
|
export type QueryGravity_DeliverySettingsArgs = {
|
|
210598
211686
|
cloudId: Scalars['ID']['input'];
|
|
210599
211687
|
projectId: Scalars['ID']['input'];
|
|
@@ -210705,9 +211793,6 @@ export type QueryHasUserCommentedArgs = {
|
|
|
210705
211793
|
export type QueryHelpCenterArgs = {
|
|
210706
211794
|
cloudId: Scalars['ID']['input'];
|
|
210707
211795
|
};
|
|
210708
|
-
export type QueryHelpExternalResourceArgs = {
|
|
210709
|
-
cloudId: Scalars['ID']['input'];
|
|
210710
|
-
};
|
|
210711
211796
|
export type QueryHelpLayoutArgs = {
|
|
210712
211797
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
210713
211798
|
};
|
|
@@ -210987,6 +212072,21 @@ export type QueryJira_IssueCreateFieldsArgs = {
|
|
|
210987
212072
|
project?: InputMaybe<JiraProjectInput>;
|
|
210988
212073
|
requestType?: InputMaybe<JiraRequestTypeInput>;
|
|
210989
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
|
+
};
|
|
210990
212090
|
export type QueryJira_IssueCreateLayoutArgs = {
|
|
210991
212091
|
cloudId: Scalars['ID']['input'];
|
|
210992
212092
|
issueType?: InputMaybe<JiraIssueTypeInput>;
|
|
@@ -210995,6 +212095,24 @@ export type QueryJira_IssueCreateLayoutArgs = {
|
|
|
210995
212095
|
requestType?: InputMaybe<JiraRequestTypeInput>;
|
|
210996
212096
|
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
210997
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
|
+
};
|
|
210998
212116
|
export type QueryJira_IssueCreateLayoutWithMlArgs = {
|
|
210999
212117
|
cloudId: Scalars['ID']['input'];
|
|
211000
212118
|
issueType?: InputMaybe<JiraIssueTypeInput>;
|
|
@@ -211285,6 +212403,16 @@ export type QueryJsmTelemetry_DashboardByScopeArgs = {
|
|
|
211285
212403
|
scopeId: Scalars['String']['input'];
|
|
211286
212404
|
scopeType: JsmTelemetryScopeType;
|
|
211287
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
|
+
};
|
|
211288
212416
|
export type QueryJsmTelemetry_GetIncidentContextArgs = {
|
|
211289
212417
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
211290
212418
|
incidentId: Scalars['ID']['input'];
|
|
@@ -211617,6 +212745,10 @@ export type QueryLoom_MeetingArgs = {
|
|
|
211617
212745
|
export type QueryLoom_MeetingActionItemsArgs = {
|
|
211618
212746
|
id: Scalars['ID']['input'];
|
|
211619
212747
|
};
|
|
212748
|
+
export type QueryLoom_MeetingJiraSuggestionArgs = {
|
|
212749
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
212750
|
+
videoId: Scalars['ID']['input'];
|
|
212751
|
+
};
|
|
211620
212752
|
export type QueryLoom_MeetingRecurrenceArgs = {
|
|
211621
212753
|
id: Scalars['ID']['input'];
|
|
211622
212754
|
};
|
|
@@ -211762,6 +212894,9 @@ export type QueryMarketplaceStore_ReviewSummaryV2Args = {
|
|
|
211762
212894
|
appKey: Scalars['String']['input'];
|
|
211763
212895
|
hostingType: MarketplaceStoreAtlassianProductHostingType;
|
|
211764
212896
|
};
|
|
212897
|
+
export type QueryMarketplaceStore_SimilarObjectsArgs = {
|
|
212898
|
+
input: MarketplaceStoreSimilarObjectsInput;
|
|
212899
|
+
};
|
|
211765
212900
|
export type QueryMedia_ItemsArgs = {
|
|
211766
212901
|
clientId: Scalars['String']['input'];
|
|
211767
212902
|
cloudId: Scalars['ID']['input'];
|
|
@@ -212048,6 +213183,15 @@ export type QueryPostOffice_GetMessagesArgs = {
|
|
|
212048
213183
|
locale?: InputMaybe<Scalars['String']['input']>;
|
|
212049
213184
|
payload: PostOfficeGetMessagesInput;
|
|
212050
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
|
+
};
|
|
212051
213195
|
export type QueryProactiveAi_RovoInsightsDataArgs = {
|
|
212052
213196
|
cloudId: Scalars['ID']['input'];
|
|
212053
213197
|
debugInfo?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -212213,6 +213357,10 @@ export type QueryPsm_DevicesArgs = {
|
|
|
212213
213357
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
212214
213358
|
spaceId: Scalars['ID']['input'];
|
|
212215
213359
|
};
|
|
213360
|
+
export type QueryPsm_EligibleUsersListArgs = {
|
|
213361
|
+
cloudId: Scalars['ID']['input'];
|
|
213362
|
+
input: PsmEligibleUsersListInput;
|
|
213363
|
+
};
|
|
212216
213364
|
export type QueryPsm_OnboardTenantStatusArgs = {
|
|
212217
213365
|
cloudId: Scalars['ID']['input'];
|
|
212218
213366
|
input: PsmOnboardTenantStatusInput;
|
|
@@ -212292,14 +213440,6 @@ export type QueryRadar_AiConnectorsArgs = {
|
|
|
212292
213440
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
212293
213441
|
rql?: InputMaybe<Scalars['String']['input']>;
|
|
212294
213442
|
};
|
|
212295
|
-
export type QueryRadar_AiScopedBudgetPoliciesArgs = {
|
|
212296
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
212297
|
-
cloudId: Scalars['ID']['input'];
|
|
212298
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
212299
|
-
};
|
|
212300
|
-
export type QueryRadar_AiWorkspaceBudgetPolicyArgs = {
|
|
212301
|
-
cloudId: Scalars['ID']['input'];
|
|
212302
|
-
};
|
|
212303
213443
|
export type QueryRadar_AvailableCustomFieldsFromLastSyncArgs = {
|
|
212304
213444
|
cloudId: Scalars['ID']['input'];
|
|
212305
213445
|
};
|
|
@@ -212343,6 +213483,7 @@ export type QueryRadar_LastAppliedFilterArgs = {
|
|
|
212343
213483
|
};
|
|
212344
213484
|
export type QueryRadar_MetricsSettingsArgs = {
|
|
212345
213485
|
cloudId: Scalars['ID']['input'];
|
|
213486
|
+
metricKey?: InputMaybe<RadarOrgMetric>;
|
|
212346
213487
|
};
|
|
212347
213488
|
export type QueryRadar_NotificationSettingsArgs = {
|
|
212348
213489
|
cloudId: Scalars['ID']['input'];
|
|
@@ -213355,6 +214496,9 @@ export type QueryUts_AllowanceExemptionsArgs = {
|
|
|
213355
214496
|
scopeType?: InputMaybe<UtsAllowanceExemptionScopeType>;
|
|
213356
214497
|
usageKey?: InputMaybe<Scalars['String']['input']>;
|
|
213357
214498
|
};
|
|
214499
|
+
export type QueryUts_AllowancePoolsByOwnerArgs = {
|
|
214500
|
+
owner: Scalars['ID']['input'];
|
|
214501
|
+
};
|
|
213358
214502
|
export type QueryUts_MeterConfigurationArgs = {
|
|
213359
214503
|
usageKey: Scalars['String']['input'];
|
|
213360
214504
|
};
|
|
@@ -213479,9 +214623,6 @@ export type QuickReloadComment = {
|
|
|
213479
214623
|
primaryActions: Array<Maybe<CommentUserAction>>;
|
|
213480
214624
|
secondaryActions: Array<Maybe<CommentUserAction>>;
|
|
213481
214625
|
};
|
|
213482
|
-
export type RadarAiBudgetPolicyAllowanceInput = {
|
|
213483
|
-
amount: Scalars['String']['input'];
|
|
213484
|
-
};
|
|
213485
214626
|
export type RadarAiConnector = {
|
|
213486
214627
|
__typename?: 'RadarAiConnector';
|
|
213487
214628
|
config?: Maybe<RadarAiConnectorConfig>;
|
|
@@ -213564,12 +214705,6 @@ export type RadarAiScopedBudgetPolicyEdge = RadarEdge & {
|
|
|
213564
214705
|
cursor: Scalars['String']['output'];
|
|
213565
214706
|
node: RadarAiScopedBudgetPolicy;
|
|
213566
214707
|
};
|
|
213567
|
-
export type RadarAiWorkspaceBudgetPolicy = {
|
|
213568
|
-
__typename?: 'RadarAiWorkspaceBudgetPolicy';
|
|
213569
|
-
allowance: RadarMoney;
|
|
213570
|
-
allowanceAmount: Scalars['Int']['output'];
|
|
213571
|
-
id: Scalars['ID']['output'];
|
|
213572
|
-
};
|
|
213573
214708
|
export type RadarAriFieldValue = {
|
|
213574
214709
|
__typename?: 'RadarAriFieldValue';
|
|
213575
214710
|
ari?: Maybe<Scalars['ID']['output']>;
|
|
@@ -214411,24 +215546,6 @@ export type RadarUpdateWorkerSkillMappingsResponse = {
|
|
|
214411
215546
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
214412
215547
|
workerId: Scalars['ID']['output'];
|
|
214413
215548
|
};
|
|
214414
|
-
export type RadarUpsertAiScopedBudgetPoliciesInput = {
|
|
214415
|
-
deletedScopeFieldValues: Array<Scalars['String']['input']>;
|
|
214416
|
-
upserts: Array<RadarUpsertAiScopedBudgetPolicyInput>;
|
|
214417
|
-
};
|
|
214418
|
-
export type RadarUpsertAiScopedBudgetPoliciesPayload = {
|
|
214419
|
-
__typename?: 'RadarUpsertAiScopedBudgetPoliciesPayload';
|
|
214420
|
-
deletedScopeFieldValues: Array<Scalars['String']['output']>;
|
|
214421
|
-
policies: Array<RadarAiScopedBudgetPolicy>;
|
|
214422
|
-
};
|
|
214423
|
-
export type RadarUpsertAiScopedBudgetPolicyInput = {
|
|
214424
|
-
allowance?: InputMaybe<RadarAiBudgetPolicyAllowanceInput>;
|
|
214425
|
-
allowanceAmount?: InputMaybe<Scalars['Int']['input']>;
|
|
214426
|
-
scopeFieldValue: Scalars['String']['input'];
|
|
214427
|
-
};
|
|
214428
|
-
export type RadarUpsertAiWorkspaceBudgetPolicyInput = {
|
|
214429
|
-
allowance?: InputMaybe<RadarAiBudgetPolicyAllowanceInput>;
|
|
214430
|
-
allowanceAmount?: InputMaybe<Scalars['Int']['input']>;
|
|
214431
|
-
};
|
|
214432
215549
|
export type RadarUpsertViewInput = {
|
|
214433
215550
|
groupingField?: InputMaybe<Scalars['String']['input']>;
|
|
214434
215551
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -215981,6 +217098,7 @@ export declare enum Scope {
|
|
|
215981
217098
|
DashboardPropertyWrite = "DASHBOARD_PROPERTY_WRITE",
|
|
215982
217099
|
DashboardRead = "DASHBOARD_READ",
|
|
215983
217100
|
DashboardWrite = "DASHBOARD_WRITE",
|
|
217101
|
+
DeleteArtifactArtifacts = "DELETE_ARTIFACT_ARTIFACTS",
|
|
215984
217102
|
DeleteAssetsTwgCli = "DELETE_ASSETS_TWG_CLI",
|
|
215985
217103
|
DeleteBitbucketTwgCli = "DELETE_BITBUCKET_TWG_CLI",
|
|
215986
217104
|
DeleteCompassTwgCli = "DELETE_COMPASS_TWG_CLI",
|
|
@@ -216177,6 +217295,7 @@ export declare enum Scope {
|
|
|
216177
217295
|
ReadAppInstallation = "READ_APP_INSTALLATION",
|
|
216178
217296
|
ReadAppLogs = "READ_APP_LOGS",
|
|
216179
217297
|
ReadAppSystemToken = "READ_APP_SYSTEM_TOKEN",
|
|
217298
|
+
ReadArtifactArtifacts = "READ_ARTIFACT_ARTIFACTS",
|
|
216180
217299
|
ReadAssetsTwgCli = "READ_ASSETS_TWG_CLI",
|
|
216181
217300
|
ReadCapacityPlanning = "READ_CAPACITY_PLANNING",
|
|
216182
217301
|
ReadCmdbAttributeJira = "READ_CMDB_ATTRIBUTE_JIRA",
|
|
@@ -216363,6 +217482,7 @@ export declare enum Scope {
|
|
|
216363
217482
|
WorkflowSchemeWrite = "WORKFLOW_SCHEME_WRITE",
|
|
216364
217483
|
WorkflowWrite = "WORKFLOW_WRITE",
|
|
216365
217484
|
WriteAppDetails = "WRITE_APP_DETAILS",
|
|
217485
|
+
WriteArtifactArtifacts = "WRITE_ARTIFACT_ARTIFACTS",
|
|
216366
217486
|
WriteAssetsTwgCli = "WRITE_ASSETS_TWG_CLI",
|
|
216367
217487
|
WriteCapacityPlanning = "WRITE_CAPACITY_PLANNING",
|
|
216368
217488
|
WriteCmdbAttributeJira = "WRITE_CMDB_ATTRIBUTE_JIRA",
|
|
@@ -217385,6 +218505,7 @@ export type SearchResultGraphDocument = SearchL2FeatureProvider & SearchResult &
|
|
|
217385
218505
|
id: Scalars['ID']['output'];
|
|
217386
218506
|
initialContributors?: Maybe<Array<ThirdPartyUser>>;
|
|
217387
218507
|
integrationId?: Maybe<Scalars['String']['output']>;
|
|
218508
|
+
isSharedChannel?: Maybe<Scalars['Boolean']['output']>;
|
|
217388
218509
|
l2BodyTextInput?: Maybe<Scalars['String']['output']>;
|
|
217389
218510
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
217390
218511
|
l2TitleInput?: Maybe<Scalars['String']['output']>;
|
|
@@ -217842,6 +218963,31 @@ export type SearchScrapingMetadata = {
|
|
|
217842
218963
|
searchScrapingResponsesJson?: Maybe<Scalars['String']['output']>;
|
|
217843
218964
|
searcherErrors?: Maybe<Array<SearchError>>;
|
|
217844
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
|
+
};
|
|
217845
218991
|
export type SearchSlackReaction = {
|
|
217846
218992
|
__typename?: 'SearchSlackReaction';
|
|
217847
218993
|
count: Scalars['Int']['output'];
|
|
@@ -217901,6 +219047,7 @@ export type SearchThirdPartyFilter = {
|
|
|
217901
219047
|
lastUpdatedBy?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
217902
219048
|
range?: InputMaybe<Array<InputMaybe<SearchThirdPartyRangeFilter>>>;
|
|
217903
219049
|
salesforceFilters?: InputMaybe<SearchSalesforceFilters>;
|
|
219050
|
+
serviceNowFilters?: InputMaybe<SearchServiceNowFilters>;
|
|
217904
219051
|
subtypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
217905
219052
|
teamsFilters?: InputMaybe<SearchTeamsFilters>;
|
|
217906
219053
|
thirdPartyProducts?: InputMaybe<Array<SearchThirdPartyProduct>>;
|
|
@@ -224487,7 +225634,6 @@ export type StudioTemplate = {
|
|
|
224487
225634
|
howItWorks: Array<StudioTemplateHowItWorksStep>;
|
|
224488
225635
|
id: Scalars['String']['output'];
|
|
224489
225636
|
name: Scalars['String']['output'];
|
|
224490
|
-
skills?: Maybe<Array<Scalars['String']['output']>>;
|
|
224491
225637
|
type: Scalars['String']['output'];
|
|
224492
225638
|
usageCount: Scalars['Int']['output'];
|
|
224493
225639
|
};
|
|
@@ -224703,7 +225849,6 @@ export type SubscriptionConvoai_OnAgentSessionCreateArgs = {
|
|
|
224703
225849
|
export type SubscriptionConvoai_OnAgentSessionUpdateArgs = {
|
|
224704
225850
|
cloudId: Scalars['ID']['input'];
|
|
224705
225851
|
conversationId: Scalars['ID']['input'];
|
|
224706
|
-
excludeActionExecutionMessages?: InputMaybe<Scalars['Boolean']['input']>;
|
|
224707
225852
|
};
|
|
224708
225853
|
export type SubscriptionConvoai_OnAgentSessionUpdatedByProjectsArgs = {
|
|
224709
225854
|
cloudId: Scalars['ID']['input'];
|
|
@@ -224941,8 +226086,10 @@ export type SupportRequestAddCommentInput = {
|
|
|
224941
226086
|
export type SupportRequestAdditionalTicketData = {
|
|
224942
226087
|
chatTranscript?: InputMaybe<Scalars['String']['input']>;
|
|
224943
226088
|
cloudSiteUrl?: InputMaybe<Scalars['String']['input']>;
|
|
226089
|
+
dataAccessApproval?: InputMaybe<Scalars['String']['input']>;
|
|
224944
226090
|
operationType?: InputMaybe<Scalars['String']['input']>;
|
|
224945
226091
|
parentIssueIdOrKey?: InputMaybe<Scalars['String']['input']>;
|
|
226092
|
+
priorityUrgency?: InputMaybe<Scalars['String']['input']>;
|
|
224946
226093
|
};
|
|
224947
226094
|
export type SupportRequestCatalogMutationApi = {
|
|
224948
226095
|
__typename?: 'SupportRequestCatalogMutationApi';
|
|
@@ -225706,6 +226853,11 @@ export type TeamLinkExternalTeamPayload = Payload & {
|
|
|
225706
226853
|
success: Scalars['Boolean']['output'];
|
|
225707
226854
|
teamId?: Maybe<Scalars['ID']['output']>;
|
|
225708
226855
|
};
|
|
226856
|
+
export type TeamManagerData = {
|
|
226857
|
+
__typename?: 'TeamManagerData';
|
|
226858
|
+
accountId?: Maybe<Scalars['String']['output']>;
|
|
226859
|
+
user?: Maybe<User>;
|
|
226860
|
+
};
|
|
225709
226861
|
export type TeamMember = {
|
|
225710
226862
|
__typename?: 'TeamMember';
|
|
225711
226863
|
member?: Maybe<User>;
|
|
@@ -226020,6 +227172,30 @@ export declare enum TeamNotificationType {
|
|
|
226020
227172
|
UserRestoredTeam = "USER_RESTORED_TEAM",
|
|
226021
227173
|
UserUnarchivedTeam = "USER_UNARCHIVED_TEAM"
|
|
226022
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
|
+
};
|
|
226023
227199
|
export declare enum TeamPermission {
|
|
226024
227200
|
FullRead = "FULL_READ",
|
|
226025
227201
|
FullWrite = "FULL_WRITE",
|
|
@@ -226063,6 +227239,7 @@ export type TeamQuery = {
|
|
|
226063
227239
|
explainTeamsTql?: Maybe<TeamsTqlExplanation>;
|
|
226064
227240
|
getTeamExternalSourceDiff?: Maybe<TeamExternalSourceDiffPayload>;
|
|
226065
227241
|
notificationConfigurations?: Maybe<Array<TeamNotificationConfiguration>>;
|
|
227242
|
+
peopleTql?: Maybe<TeamPeopleTqlPersonConnection>;
|
|
226066
227243
|
roleAssignments?: Maybe<TeamRoleAssignmentsConnection>;
|
|
226067
227244
|
scopeNotificationConfigurations?: Maybe<Array<TeamScopeNotificationConfiguration>>;
|
|
226068
227245
|
team?: Maybe<Team>;
|
|
@@ -226097,6 +227274,13 @@ export type TeamQueryGetTeamExternalSourceDiffArgs = {
|
|
|
226097
227274
|
export type TeamQueryNotificationConfigurationsArgs = {
|
|
226098
227275
|
ari: Scalars['ID']['input'];
|
|
226099
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
|
+
};
|
|
226100
227284
|
export type TeamQueryRoleAssignmentsArgs = {
|
|
226101
227285
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
226102
227286
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -227134,7 +228318,7 @@ export declare enum TownsquareAccessControlCapability {
|
|
|
227134
228318
|
Create = "CREATE"
|
|
227135
228319
|
}
|
|
227136
228320
|
export type TownsquareAccessPrincipal = AppUser | AtlassianAccountUser | CustomerUser;
|
|
227137
|
-
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;
|
|
227138
228322
|
export type TownsquareActivityItem = {
|
|
227139
228323
|
__typename?: 'TownsquareActivityItem';
|
|
227140
228324
|
actor?: Maybe<User>;
|
|
@@ -229283,6 +230467,16 @@ export type TownsquareMetricValueConnection = {
|
|
|
229283
230467
|
edges?: Maybe<Array<Maybe<TownsquareMetricValueEdge>>>;
|
|
229284
230468
|
pageInfo: PageInfo;
|
|
229285
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
|
+
};
|
|
229286
230480
|
export type TownsquareMetricValueEdge = {
|
|
229287
230481
|
__typename?: 'TownsquareMetricValueEdge';
|
|
229288
230482
|
cursor: Scalars['String']['output'];
|
|
@@ -229295,6 +230489,13 @@ export declare enum TownsquareMetricValueSortEnum {
|
|
|
229295
230489
|
TimeAsc = "TIME_ASC",
|
|
229296
230490
|
TimeDesc = "TIME_DESC"
|
|
229297
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
|
+
};
|
|
229298
230499
|
export type TownsquareMilestone = Node & {
|
|
229299
230500
|
__typename?: 'TownsquareMilestone';
|
|
229300
230501
|
completionDate?: Maybe<Scalars['Date']['output']>;
|
|
@@ -232060,6 +233261,7 @@ export type TrelloAtlassianOrganization = {
|
|
|
232060
233261
|
export type TrelloAtlassianSite = {
|
|
232061
233262
|
__typename?: 'TrelloAtlassianSite';
|
|
232062
233263
|
cloudUrl?: Maybe<Scalars['String']['output']>;
|
|
233264
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
232063
233265
|
hostname?: Maybe<Scalars['String']['output']>;
|
|
232064
233266
|
isRovoAiEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
232065
233267
|
resourceId: Scalars['String']['output'];
|
|
@@ -232118,6 +233320,9 @@ export type TrelloAttachmentUpdated = {
|
|
|
232118
233320
|
__typename?: 'TrelloAttachmentUpdated';
|
|
232119
233321
|
id: Scalars['ID']['output'];
|
|
232120
233322
|
};
|
|
233323
|
+
export type TrelloAutomationCreationInput = {
|
|
233324
|
+
prompt: Scalars['String']['input'];
|
|
233325
|
+
};
|
|
232121
233326
|
export type TrelloBaseBoard = {
|
|
232122
233327
|
actions?: Maybe<TrelloCardActionConnection>;
|
|
232123
233328
|
aiMetadata?: Maybe<TrelloObjectAiMetadata>;
|
|
@@ -233653,6 +234858,19 @@ export type TrelloCreateApplicationPayload = Payload & {
|
|
|
233653
234858
|
errors?: Maybe<Array<MutationError>>;
|
|
233654
234859
|
success: Scalars['Boolean']['output'];
|
|
233655
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
|
+
};
|
|
233656
234874
|
export type TrelloCreateBoardBackgroundInput = {
|
|
233657
234875
|
key?: InputMaybe<Scalars['String']['input']>;
|
|
233658
234876
|
url?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -234722,6 +235940,7 @@ export type TrelloLabelUpdatedConnection = {
|
|
|
234722
235940
|
};
|
|
234723
235941
|
export declare enum TrelloLabsFeature {
|
|
234724
235942
|
AiBoardBuilder = "AI_BOARD_BUILDER",
|
|
235943
|
+
ManifestCards = "MANIFEST_CARDS",
|
|
234725
235944
|
RovoChat = "ROVO_CHAT"
|
|
234726
235945
|
}
|
|
234727
235946
|
export declare enum TrelloLabsFeatureStatus {
|
|
@@ -235445,6 +236664,7 @@ export type TrelloMutationApi = {
|
|
|
235445
236664
|
convertTemplateToBoard?: Maybe<TrelloConvertTemplateToBoardPayload>;
|
|
235446
236665
|
copyCard?: Maybe<TrelloCopyCardPayload>;
|
|
235447
236666
|
createApplication?: Maybe<TrelloCreateApplicationPayload>;
|
|
236667
|
+
createAutomationFromPrompt?: Maybe<TrelloCreateAutomationFromPromptPayload>;
|
|
235448
236668
|
createBoard?: Maybe<TrelloCreateBoardPayload>;
|
|
235449
236669
|
createBoardWithAi?: Maybe<TrelloCreateBoardWithAiPayload>;
|
|
235450
236670
|
createCard?: Maybe<TrelloCreateCardPayload>;
|
|
@@ -235579,6 +236799,7 @@ export type TrelloMutationApi = {
|
|
|
235579
236799
|
updateProposedEvent?: Maybe<TrelloUpdateProposedEventPayload>;
|
|
235580
236800
|
updateSmartScheduleBoardPreference?: Maybe<TrelloUpdateSmartScheduleBoardPreferencePayload>;
|
|
235581
236801
|
updateSmartScheduleLastActivity?: Maybe<TrelloUpdateSmartScheduleLastActivityPayload>;
|
|
236802
|
+
updateWorkspaceIconEmoji?: Maybe<TrelloUpdateWorkspaceIconEmojiPayload>;
|
|
235582
236803
|
updateWorkspaceTag?: Maybe<TrelloUpdateWorkspaceTagPayload>;
|
|
235583
236804
|
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
235584
236805
|
};
|
|
@@ -235642,6 +236863,9 @@ export type TrelloMutationApiCopyCardArgs = {
|
|
|
235642
236863
|
export type TrelloMutationApiCreateApplicationArgs = {
|
|
235643
236864
|
input: TrelloCreateApplicationInput;
|
|
235644
236865
|
};
|
|
236866
|
+
export type TrelloMutationApiCreateAutomationFromPromptArgs = {
|
|
236867
|
+
input: TrelloCreateAutomationFromPromptInput;
|
|
236868
|
+
};
|
|
235645
236869
|
export type TrelloMutationApiCreateBoardArgs = {
|
|
235646
236870
|
input: TrelloCreateBoardInput;
|
|
235647
236871
|
};
|
|
@@ -236032,6 +237256,9 @@ export type TrelloMutationApiUpdateProposedEventArgs = {
|
|
|
236032
237256
|
export type TrelloMutationApiUpdateSmartScheduleBoardPreferenceArgs = {
|
|
236033
237257
|
input: TrelloUpdateSmartScheduleBoardPreferenceInput;
|
|
236034
237258
|
};
|
|
237259
|
+
export type TrelloMutationApiUpdateWorkspaceIconEmojiArgs = {
|
|
237260
|
+
input: TrelloUpdateWorkspaceIconEmojiInput;
|
|
237261
|
+
};
|
|
236035
237262
|
export type TrelloMutationApiUpdateWorkspaceTagArgs = {
|
|
236036
237263
|
input: TrelloUpdateWorkspaceTagInput;
|
|
236037
237264
|
};
|
|
@@ -238408,6 +239635,17 @@ export type TrelloUpdateSmartScheduleLastActivityPayload = Payload & {
|
|
|
238408
239635
|
errors?: Maybe<Array<MutationError>>;
|
|
238409
239636
|
success: Scalars['Boolean']['output'];
|
|
238410
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
|
+
};
|
|
238411
239649
|
export type TrelloUpdateWorkspaceTagInput = {
|
|
238412
239650
|
name: Scalars['String']['input'];
|
|
238413
239651
|
tagId: Scalars['ID']['input'];
|
|
@@ -238539,6 +239777,8 @@ export type TrelloWorkspace = Node & {
|
|
|
238539
239777
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
238540
239778
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
238541
239779
|
entitlement?: Maybe<CcpEntitlement>;
|
|
239780
|
+
iconEmoji?: Maybe<Scalars['String']['output']>;
|
|
239781
|
+
iconEmojiBackground?: Maybe<TrelloWorkspaceEmojiBackground>;
|
|
238542
239782
|
id: Scalars['ID']['output'];
|
|
238543
239783
|
jwmLink?: Maybe<TrelloJwmWorkspaceLink>;
|
|
238544
239784
|
limits?: Maybe<TrelloWorkspaceLimits>;
|
|
@@ -238599,6 +239839,13 @@ export declare enum TrelloWorkspaceBoardFilterValue {
|
|
|
238599
239839
|
Closed = "CLOSED",
|
|
238600
239840
|
Open = "OPEN"
|
|
238601
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
|
+
};
|
|
238602
239849
|
export type TrelloWorkspaceEnterpriseUpdated = {
|
|
238603
239850
|
__typename?: 'TrelloWorkspaceEnterpriseUpdated';
|
|
238604
239851
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -241350,6 +242597,7 @@ export type UserPreferences = {
|
|
|
241350
242597
|
homePagesDisplayView: PagesDisplayPersistenceOption;
|
|
241351
242598
|
homeWidgets: Array<HomeWidget>;
|
|
241352
242599
|
isCommentsPanelAutomaticSummariesEnabled: Scalars['Boolean']['output'];
|
|
242600
|
+
isCwrRemixCreationEnabled: Scalars['Boolean']['output'];
|
|
241353
242601
|
isHomeOnboardingDismissed: Scalars['Boolean']['output'];
|
|
241354
242602
|
keyboardShortcutDisabled: Scalars['Boolean']['output'];
|
|
241355
242603
|
missionControlFeatureDiscoverySuggestions: Array<Maybe<MissionControlFeatureDiscoverySuggestionState>>;
|
|
@@ -241402,6 +242650,7 @@ export type UserPreferencesInput = {
|
|
|
241402
242650
|
homePagesDisplayView?: InputMaybe<PagesDisplayPersistenceOption>;
|
|
241403
242651
|
homeWidget?: InputMaybe<HomeWidgetInput>;
|
|
241404
242652
|
isCommentsPanelAutomaticSummariesEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
242653
|
+
isCwrRemixCreationEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
241405
242654
|
isHomeOnboardingDismissed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
241406
242655
|
keyboardShortcutDisabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
241407
242656
|
missionControlFeatureDiscoverySuggestion?: InputMaybe<MissionControlFeatureDiscoverySuggestionInput>;
|
|
@@ -241512,6 +242761,14 @@ export declare enum UtsAllowanceExemptionStatus {
|
|
|
241512
242761
|
Expired = "EXPIRED",
|
|
241513
242762
|
Scheduled = "SCHEDULED"
|
|
241514
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
|
+
};
|
|
241515
242772
|
export type UtsAllowancePoolAllocationUpdateInput = {
|
|
241516
242773
|
allocationId: Scalars['ID']['input'];
|
|
241517
242774
|
billingEntity?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -241525,6 +242782,11 @@ export type UtsAllowancePoolAllocationUpdateResult = {
|
|
|
241525
242782
|
poolId?: Maybe<Scalars['ID']['output']>;
|
|
241526
242783
|
transactionId?: Maybe<Scalars['ID']['output']>;
|
|
241527
242784
|
};
|
|
242785
|
+
export declare enum UtsAllowancePoolStatus {
|
|
242786
|
+
Active = "ACTIVE",
|
|
242787
|
+
Archived = "ARCHIVED",
|
|
242788
|
+
Inactive = "INACTIVE"
|
|
242789
|
+
}
|
|
241528
242790
|
export declare enum UtsLatestAllowanceEnforcementModeType {
|
|
241529
242791
|
Block = "BLOCK",
|
|
241530
242792
|
LimitedOverage = "LIMITED_OVERAGE",
|