@forge/cli-shared 9.4.0-next.8 → 9.4.0-next.9
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 +7 -0
- package/out/graphql/graphql-types.d.ts +1587 -323
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +218 -98
- 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>>>;
|
|
@@ -10900,6 +10996,7 @@ export declare enum AppFeatureKey {
|
|
|
10900
10996
|
HasExposedCredentials = "HAS_EXPOSED_CREDENTIALS",
|
|
10901
10997
|
HasResourceRestrictedToken = "HAS_RESOURCE_RESTRICTED_TOKEN",
|
|
10902
10998
|
IsPersonalApp = "IS_PERSONAL_APP",
|
|
10999
|
+
IsPlatformApp = "IS_PLATFORM_APP",
|
|
10903
11000
|
SupportsCompute = "SUPPORTS_COMPUTE",
|
|
10904
11001
|
SupportsCustomEnvironments = "SUPPORTS_CUSTOM_ENVIRONMENTS"
|
|
10905
11002
|
}
|
|
@@ -10920,6 +11017,7 @@ export type AppFeaturesInput = {
|
|
|
10920
11017
|
hasExposedCredentials?: InputMaybe<AppFeaturesExposedCredentialsInput>;
|
|
10921
11018
|
hasResourceRestrictedToken?: InputMaybe<Scalars['Boolean']['input']>;
|
|
10922
11019
|
isPersonalApp?: InputMaybe<Scalars['Boolean']['input']>;
|
|
11020
|
+
platformAppId?: InputMaybe<Scalars['ID']['input']>;
|
|
10923
11021
|
};
|
|
10924
11022
|
export type AppHostService = {
|
|
10925
11023
|
__typename?: 'AppHostService';
|
|
@@ -12191,6 +12289,35 @@ export type ArjHierarchyConfigurationLevel = {
|
|
|
12191
12289
|
issueTypes?: Maybe<Array<Scalars['String']['output']>>;
|
|
12192
12290
|
title: Scalars['String']['output'];
|
|
12193
12291
|
};
|
|
12292
|
+
export type Artifact = {
|
|
12293
|
+
__typename?: 'Artifact';
|
|
12294
|
+
id: Scalars['ID']['output'];
|
|
12295
|
+
name: Scalars['String']['output'];
|
|
12296
|
+
type: Scalars['String']['output'];
|
|
12297
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
12298
|
+
};
|
|
12299
|
+
export type ArtifactCreateContentPayload = {
|
|
12300
|
+
__typename?: 'ArtifactCreateContentPayload';
|
|
12301
|
+
errors?: Maybe<Array<MutationError>>;
|
|
12302
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
12303
|
+
upload?: Maybe<ArtifactUploadTarget>;
|
|
12304
|
+
};
|
|
12305
|
+
export type ArtifactCreateInput = {
|
|
12306
|
+
contentId: Scalars['ID']['input'];
|
|
12307
|
+
name: Scalars['String']['input'];
|
|
12308
|
+
type: Scalars['String']['input'];
|
|
12309
|
+
};
|
|
12310
|
+
export type ArtifactCreatePayload = Payload & {
|
|
12311
|
+
__typename?: 'ArtifactCreatePayload';
|
|
12312
|
+
artifact?: Maybe<Artifact>;
|
|
12313
|
+
errors?: Maybe<Array<MutationError>>;
|
|
12314
|
+
success: Scalars['Boolean']['output'];
|
|
12315
|
+
};
|
|
12316
|
+
export type ArtifactUploadTarget = {
|
|
12317
|
+
__typename?: 'ArtifactUploadTarget';
|
|
12318
|
+
contentId: Scalars['ID']['output'];
|
|
12319
|
+
url: Scalars['URL']['output'];
|
|
12320
|
+
};
|
|
12194
12321
|
export type AssetsAriAttribute = AssetsObjectTypeAttribute & {
|
|
12195
12322
|
__typename?: 'AssetsARIAttribute';
|
|
12196
12323
|
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -17459,6 +17586,7 @@ export type Build = {
|
|
|
17459
17586
|
appId: Scalars['ID']['output'];
|
|
17460
17587
|
createdAt: Scalars['String']['output'];
|
|
17461
17588
|
createdByUser?: Maybe<User>;
|
|
17589
|
+
status: AppBuildStatus;
|
|
17462
17590
|
tag: Scalars['String']['output'];
|
|
17463
17591
|
};
|
|
17464
17592
|
export type BuildConnection = {
|
|
@@ -20889,7 +21017,8 @@ export type CloudifyAnalysisPart = {
|
|
|
20889
21017
|
};
|
|
20890
21018
|
export declare enum CloudifyAnalysisResult {
|
|
20891
21019
|
Failed = "FAILED",
|
|
20892
|
-
Finished = "FINISHED"
|
|
21020
|
+
Finished = "FINISHED",
|
|
21021
|
+
FinishedWithErrors = "FINISHED_WITH_ERRORS"
|
|
20893
21022
|
}
|
|
20894
21023
|
export type CloudifyAnalysisServiceProgress = {
|
|
20895
21024
|
__typename?: 'CloudifyAnalysisServiceProgress';
|
|
@@ -20921,7 +21050,7 @@ export type CloudifyCloudProjectTargetInput = {
|
|
|
20921
21050
|
export type CloudifyCustomizationIdInput = {
|
|
20922
21051
|
id?: InputMaybe<Scalars['String']['input']>;
|
|
20923
21052
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
20924
|
-
type
|
|
21053
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
20925
21054
|
};
|
|
20926
21055
|
export type CloudifyDcInstanceTarget = {
|
|
20927
21056
|
__typename?: 'CloudifyDcInstanceTarget';
|
|
@@ -20994,6 +21123,7 @@ export type CloudifyProjectAri = {
|
|
|
20994
21123
|
export type CloudifyRawCustomizationRecommendation = {
|
|
20995
21124
|
__typename?: 'CloudifyRawCustomizationRecommendation';
|
|
20996
21125
|
content: Scalars['String']['output'];
|
|
21126
|
+
customizationIds: Array<Scalars['ID']['output']>;
|
|
20997
21127
|
id: Scalars['ID']['output'];
|
|
20998
21128
|
type: CloudifyRawCustomizationRecommendationType;
|
|
20999
21129
|
};
|
|
@@ -21064,6 +21194,7 @@ export type CloudifyRecommendationsSummary = {
|
|
|
21064
21194
|
lastAnalysisResult?: Maybe<CloudifyAnalysisResult>;
|
|
21065
21195
|
migrationPaths: Array<CloudifyMigrationPathCount>;
|
|
21066
21196
|
reportUrl?: Maybe<Scalars['String']['output']>;
|
|
21197
|
+
scanReportId?: Maybe<Scalars['ID']['output']>;
|
|
21067
21198
|
totalAnalyzed: Scalars['Int']['output'];
|
|
21068
21199
|
};
|
|
21069
21200
|
export type CloudifySiteTarget = {
|
|
@@ -21923,6 +22054,7 @@ export type CommerceExpCcpEntitlement = {
|
|
|
21923
22054
|
accountModificationForBac?: Maybe<Array<Maybe<CommerceExpEntitlementAccountModificationForBac>>>;
|
|
21924
22055
|
actions?: Maybe<CommerceExpEntitlementActions>;
|
|
21925
22056
|
actions2?: Maybe<CommerceExpEntitlementActionsV2>;
|
|
22057
|
+
aggCcpEntitlement?: Maybe<CcpEntitlement>;
|
|
21926
22058
|
allRelatedEntitlementsForBac?: Maybe<Array<Maybe<CommerceExpCcpEntitlement>>>;
|
|
21927
22059
|
allowanceExemptions?: Maybe<CommerceExpUtsAllowanceExemptionList>;
|
|
21928
22060
|
allowancePoolContributors?: Maybe<Array<Maybe<CommerceExpAllowancePoolContributor>>>;
|
|
@@ -22678,6 +22810,7 @@ export type CommerceExpCcpTransactionAccount = {
|
|
|
22678
22810
|
status?: Maybe<CommerceExpTransactionAccountStatus>;
|
|
22679
22811
|
usersWithRolesOnEntitlements?: Maybe<Array<Maybe<CommerceExpUserEntitlementRoles>>>;
|
|
22680
22812
|
version?: Maybe<Scalars['Int']['output']>;
|
|
22813
|
+
wallets?: Maybe<Array<Maybe<CommerceExpCcpWallet>>>;
|
|
22681
22814
|
};
|
|
22682
22815
|
export type CommerceExpCcpTransactionAccountCurrentUserPermissionsArgs = {
|
|
22683
22816
|
permissionIds: Array<Scalars['String']['input']>;
|
|
@@ -22717,6 +22850,28 @@ export type CommerceExpCcpTransactionAccountQuotes2Args = {
|
|
|
22717
22850
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
22718
22851
|
sort?: InputMaybe<Array<CommerceExpSort>>;
|
|
22719
22852
|
};
|
|
22853
|
+
export type CommerceExpCcpWallet = {
|
|
22854
|
+
__typename?: 'CommerceExpCcpWallet';
|
|
22855
|
+
createdAt: Scalars['Float']['output'];
|
|
22856
|
+
currency: CommerceExpWalletCurrency;
|
|
22857
|
+
entitlementId: Scalars['String']['output'];
|
|
22858
|
+
id: Scalars['String']['output'];
|
|
22859
|
+
policy?: Maybe<CommerceExpCcpWalletPolicy>;
|
|
22860
|
+
status: CommerceExpWalletStatus;
|
|
22861
|
+
transactionAccount: CommerceExpCcpWalletTransactionAccountPartition;
|
|
22862
|
+
updatedAt: Scalars['Float']['output'];
|
|
22863
|
+
validUntil?: Maybe<Scalars['Float']['output']>;
|
|
22864
|
+
version: Scalars['Int']['output'];
|
|
22865
|
+
};
|
|
22866
|
+
export type CommerceExpCcpWalletPolicy = {
|
|
22867
|
+
__typename?: 'CommerceExpCcpWalletPolicy';
|
|
22868
|
+
allowNegative: Scalars['Boolean']['output'];
|
|
22869
|
+
};
|
|
22870
|
+
export type CommerceExpCcpWalletTransactionAccountPartition = {
|
|
22871
|
+
__typename?: 'CommerceExpCcpWalletTransactionAccountPartition';
|
|
22872
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
22873
|
+
partitionKey?: Maybe<Scalars['String']['output']>;
|
|
22874
|
+
};
|
|
22720
22875
|
export type CommerceExpChargeDetails = {
|
|
22721
22876
|
__typename?: 'CommerceExpChargeDetails';
|
|
22722
22877
|
chargeQuantities?: Maybe<Array<Maybe<CommerceExpChargeQuantity>>>;
|
|
@@ -22814,10 +22969,12 @@ export type CommerceExpContact = {
|
|
|
22814
22969
|
contactType?: Maybe<CommerceExpContactType>;
|
|
22815
22970
|
customerType?: Maybe<CommerceExpCustomerType>;
|
|
22816
22971
|
isPrimary?: Maybe<Scalars['Boolean']['output']>;
|
|
22972
|
+
principal?: Maybe<User>;
|
|
22817
22973
|
principalAri?: Maybe<Scalars['String']['output']>;
|
|
22818
22974
|
resourceAri?: Maybe<Scalars['String']['output']>;
|
|
22819
22975
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
22820
22976
|
updatedBy?: Maybe<Scalars['String']['output']>;
|
|
22977
|
+
userId?: Maybe<Scalars['String']['output']>;
|
|
22821
22978
|
};
|
|
22822
22979
|
export type CommerceExpContactInput = {
|
|
22823
22980
|
contactType: CommerceExpContactType;
|
|
@@ -23069,6 +23226,7 @@ export type CommerceExpCreateEntitlementOrderOptions = {
|
|
|
23069
23226
|
billingCycle?: InputMaybe<CommerceExpPricingPlanInterval>;
|
|
23070
23227
|
chargeQuantities?: InputMaybe<Array<CommerceExpChargeElementDetails>>;
|
|
23071
23228
|
invoiceGroupId?: InputMaybe<Scalars['ID']['input']>;
|
|
23229
|
+
matchTrialLength?: InputMaybe<Scalars['Boolean']['input']>;
|
|
23072
23230
|
pricingPlanId?: InputMaybe<Scalars['ID']['input']>;
|
|
23073
23231
|
provisioningRequestId?: InputMaybe<Scalars['ID']['input']>;
|
|
23074
23232
|
trial?: InputMaybe<CommerceExpTrialIntentInput>;
|
|
@@ -25504,6 +25662,10 @@ export declare enum CommerceExpVersionChangeEntityEnum {
|
|
|
25504
25662
|
PaymentMethodUpdated = "PAYMENT_METHOD_UPDATED",
|
|
25505
25663
|
ShipToUpdated = "SHIP_TO_UPDATED"
|
|
25506
25664
|
}
|
|
25665
|
+
export declare enum CommerceExpWalletCurrency {
|
|
25666
|
+
Jpy = "JPY",
|
|
25667
|
+
Usd = "USD"
|
|
25668
|
+
}
|
|
25507
25669
|
export type CommerceExpWalletInfo = {
|
|
25508
25670
|
__typename?: 'CommerceExpWalletInfo';
|
|
25509
25671
|
sourceId?: Maybe<Scalars['String']['output']>;
|
|
@@ -25528,6 +25690,11 @@ export type CommerceExpWalletPaymentMethodPaginatedEntitlementsArgs = {
|
|
|
25528
25690
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25529
25691
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
25530
25692
|
};
|
|
25693
|
+
export declare enum CommerceExpWalletStatus {
|
|
25694
|
+
Active = "ACTIVE",
|
|
25695
|
+
Closed = "CLOSED",
|
|
25696
|
+
Suspended = "SUSPENDED"
|
|
25697
|
+
}
|
|
25531
25698
|
export type CommerceExperienceCapability = {
|
|
25532
25699
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
25533
25700
|
isAvailableToUser?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -30785,6 +30952,18 @@ export type ConfluenceAccessLinkInfo = {
|
|
|
30785
30952
|
accessType: ConfluenceShareableLinkAccessType;
|
|
30786
30953
|
status: PublicLinkStatus;
|
|
30787
30954
|
};
|
|
30955
|
+
export type ConfluenceAccessLinkSpacesActionInput = {
|
|
30956
|
+
accessTypes: Array<ConfluenceShareableLinkAccessType>;
|
|
30957
|
+
spaceIds: Array<Scalars['ID']['input']>;
|
|
30958
|
+
status: ConfluenceShareableLinkSpaceStatus;
|
|
30959
|
+
};
|
|
30960
|
+
export type ConfluenceAccessLinkSpacesActionPayload = Payload & {
|
|
30961
|
+
__typename?: 'ConfluenceAccessLinkSpacesActionPayload';
|
|
30962
|
+
errors?: Maybe<Array<MutationError>>;
|
|
30963
|
+
newStatus: ConfluenceShareableLinkSpaceStatus;
|
|
30964
|
+
success: Scalars['Boolean']['output'];
|
|
30965
|
+
updatedSpaceIds: Array<Scalars['ID']['output']>;
|
|
30966
|
+
};
|
|
30788
30967
|
export type ConfluenceAccessRequestSettings = {
|
|
30789
30968
|
__typename?: 'ConfluenceAccessRequestSettings';
|
|
30790
30969
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -32980,6 +33159,7 @@ export type ConfluenceDevDocsDocTypeConfigInput = {
|
|
|
32980
33159
|
docTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
32981
33160
|
};
|
|
32982
33161
|
export type ConfluenceDevDocsRepositoryConfigInput = {
|
|
33162
|
+
customPrompt?: InputMaybe<Scalars['String']['input']>;
|
|
32983
33163
|
docTypes: Array<ConfluenceDevDocsDocTypeConfigInput>;
|
|
32984
33164
|
ref?: InputMaybe<Scalars['String']['input']>;
|
|
32985
33165
|
repoName: Scalars['String']['input'];
|
|
@@ -36553,6 +36733,7 @@ export type ConfluenceSiteConfiguration = {
|
|
|
36553
36733
|
isAddWildcardsToUserAndGroupSearchesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
36554
36734
|
isAnonymousAccessToRemoteApiEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
36555
36735
|
isContactAdministratorsFormEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
36736
|
+
isCwrRemixCreationEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
36556
36737
|
isDigestSlackNotificationEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
36557
36738
|
isEditorConversionForSiteEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
36558
36739
|
isEditorFullWidthEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -36619,6 +36800,16 @@ export type ConfluenceSlideLinks = {
|
|
|
36619
36800
|
base?: Maybe<Scalars['String']['output']>;
|
|
36620
36801
|
webUi?: Maybe<Scalars['String']['output']>;
|
|
36621
36802
|
};
|
|
36803
|
+
export type ConfluenceSmartFolderSyncControlInput = {
|
|
36804
|
+
folderId: Scalars['ID']['input'];
|
|
36805
|
+
};
|
|
36806
|
+
export type ConfluenceSmartFolderSyncControlPayload = Payload & {
|
|
36807
|
+
__typename?: 'ConfluenceSmartFolderSyncControlPayload';
|
|
36808
|
+
didChange?: Maybe<Scalars['Boolean']['output']>;
|
|
36809
|
+
errors?: Maybe<Array<MutationError>>;
|
|
36810
|
+
isPaused?: Maybe<Scalars['Boolean']['output']>;
|
|
36811
|
+
success: Scalars['Boolean']['output'];
|
|
36812
|
+
};
|
|
36622
36813
|
export declare enum ConfluenceSmartFolderSyncOutcome {
|
|
36623
36814
|
Ran = "RAN",
|
|
36624
36815
|
SkippedPaused = "SKIPPED_PAUSED",
|
|
@@ -37719,6 +37910,15 @@ export type ConfluenceUpdateCustomRolePayload = Payload & {
|
|
|
37719
37910
|
success: Scalars['Boolean']['output'];
|
|
37720
37911
|
taskId?: Maybe<Scalars['ID']['output']>;
|
|
37721
37912
|
};
|
|
37913
|
+
export type ConfluenceUpdateCwrRemixCreationConfigurationInput = {
|
|
37914
|
+
isEnabled: Scalars['Boolean']['input'];
|
|
37915
|
+
};
|
|
37916
|
+
export type ConfluenceUpdateCwrRemixCreationConfigurationPayload = Payload & {
|
|
37917
|
+
__typename?: 'ConfluenceUpdateCwrRemixCreationConfigurationPayload';
|
|
37918
|
+
errors?: Maybe<Array<MutationError>>;
|
|
37919
|
+
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
37920
|
+
success: Scalars['Boolean']['output'];
|
|
37921
|
+
};
|
|
37722
37922
|
export type ConfluenceUpdateDefaultTitleEmojiInput = {
|
|
37723
37923
|
contentId: Scalars['ID']['input'];
|
|
37724
37924
|
defaultTitleEmoji: ConfluenceGraphQlDefaultTitleEmoji;
|
|
@@ -38817,8 +39017,11 @@ export type ContentContentAnalyticsViewsByUserArgs = {
|
|
|
38817
39017
|
accountIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
38818
39018
|
actorType?: InputMaybe<ConfluencePageAnalyticsActorType>;
|
|
38819
39019
|
engageTimeThreshold?: InputMaybe<Scalars['Int']['input']>;
|
|
39020
|
+
fromDate?: InputMaybe<Scalars['String']['input']>;
|
|
38820
39021
|
isPrivacyModeEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38821
39022
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
39023
|
+
timezone?: InputMaybe<Scalars['String']['input']>;
|
|
39024
|
+
toDate?: InputMaybe<Scalars['String']['input']>;
|
|
38822
39025
|
};
|
|
38823
39026
|
export type ContentContentStateArgs = {
|
|
38824
39027
|
isDraft?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -39537,7 +39740,6 @@ export type ConvoAiHomeThreadSuggestedAction = {
|
|
|
39537
39740
|
export declare enum ConvoAiHomeThreadSuggestedActionOriginType {
|
|
39538
39741
|
CommentRule = "COMMENT_RULE",
|
|
39539
39742
|
ConfluenceInlineTasksRule = "CONFLUENCE_INLINE_TASKS_RULE",
|
|
39540
|
-
ConfluencePageRule = "CONFLUENCE_PAGE_RULE",
|
|
39541
39743
|
ConfluenceTaggedPageRule = "CONFLUENCE_TAGGED_PAGE_RULE",
|
|
39542
39744
|
ConfluenceUpdatedPageRule = "CONFLUENCE_UPDATED_PAGE_RULE",
|
|
39543
39745
|
ConfluenceWatchedPageRule = "CONFLUENCE_WATCHED_PAGE_RULE",
|
|
@@ -39753,6 +39955,7 @@ export declare enum ConvoAiSearchAgentEffort {
|
|
|
39753
39955
|
Light = "LIGHT"
|
|
39754
39956
|
}
|
|
39755
39957
|
export type ConvoAiSearchAgentInput = {
|
|
39958
|
+
clientRequestId?: InputMaybe<Scalars['String']['input']>;
|
|
39756
39959
|
cloudId: Scalars['ID']['input'];
|
|
39757
39960
|
effort?: InputMaybe<ConvoAiSearchAgentEffort>;
|
|
39758
39961
|
maxSources?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -40553,6 +40756,12 @@ export type CplsGetContributorWorkAssociationsInput = {
|
|
|
40553
40756
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
40554
40757
|
workDataIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
40555
40758
|
};
|
|
40759
|
+
export type CplsGetWorkContributionAggregationsInput = {
|
|
40760
|
+
cloudId: Scalars['ID']['input'];
|
|
40761
|
+
contributionDateRange?: InputMaybe<CplsContributionDateRange>;
|
|
40762
|
+
timeScale?: InputMaybe<CplsTimeScaleType>;
|
|
40763
|
+
workDataIds: Array<Scalars['ID']['input']>;
|
|
40764
|
+
};
|
|
40556
40765
|
export type CplsImportCapacityDataInput = {
|
|
40557
40766
|
cloudId: Scalars['ID']['input'];
|
|
40558
40767
|
contributions?: InputMaybe<Array<CplsAddContributionInput>>;
|
|
@@ -40771,6 +40980,25 @@ export type CplsWorkConnection = {
|
|
|
40771
40980
|
edges?: Maybe<Array<CplsWorkEdge>>;
|
|
40772
40981
|
pageInfo: PageInfo;
|
|
40773
40982
|
};
|
|
40983
|
+
export type CplsWorkContributionAggregation = {
|
|
40984
|
+
__typename?: 'CplsWorkContributionAggregation';
|
|
40985
|
+
endDate?: Maybe<Scalars['Date']['output']>;
|
|
40986
|
+
startDate?: Maybe<Scalars['Date']['output']>;
|
|
40987
|
+
totalContributionFormats?: Maybe<CplsValueFormats>;
|
|
40988
|
+
};
|
|
40989
|
+
export type CplsWorkContributionAggregations = {
|
|
40990
|
+
__typename?: 'CplsWorkContributionAggregations';
|
|
40991
|
+
contributionAggregations: Array<CplsWorkContributionAggregation>;
|
|
40992
|
+
workData?: Maybe<CplsWorkData>;
|
|
40993
|
+
workDataId: Scalars['ID']['output'];
|
|
40994
|
+
};
|
|
40995
|
+
export type CplsWorkContributionAggregationsResult = {
|
|
40996
|
+
__typename?: 'CplsWorkContributionAggregationsResult';
|
|
40997
|
+
endDate?: Maybe<Scalars['Date']['output']>;
|
|
40998
|
+
startDate?: Maybe<Scalars['Date']['output']>;
|
|
40999
|
+
timeScale?: Maybe<CplsTimeScaleType>;
|
|
41000
|
+
workContributionAggregations?: Maybe<Array<CplsWorkContributionAggregations>>;
|
|
41001
|
+
};
|
|
40774
41002
|
export type CplsWorkContributorConnection = {
|
|
40775
41003
|
__typename?: 'CplsWorkContributorConnection';
|
|
40776
41004
|
edges?: Maybe<Array<CplsWorkContributorEdge>>;
|
|
@@ -45415,6 +45643,7 @@ export type DevAiAutodevNextUnassignWorkItemPayload = Payload & {
|
|
|
45415
45643
|
};
|
|
45416
45644
|
export type DevAiAutodevNextUpdateWorkstreamInput = {
|
|
45417
45645
|
cloudId: Scalars['ID']['input'];
|
|
45646
|
+
loopType?: InputMaybe<DevAiAutodevNextWorkstreamLoopTypeInput>;
|
|
45418
45647
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
45419
45648
|
settings?: InputMaybe<DevAiAutodevNextWorkstreamSettingsInput>;
|
|
45420
45649
|
status?: InputMaybe<DevAiAutodevNextWorkstreamStatus>;
|
|
@@ -45541,6 +45770,9 @@ export type DevAiAutodevNextWorkstreamEdge = {
|
|
|
45541
45770
|
cursor: Scalars['String']['output'];
|
|
45542
45771
|
node: DevAiAutodevNextWorkstream;
|
|
45543
45772
|
};
|
|
45773
|
+
export type DevAiAutodevNextWorkstreamFilter = {
|
|
45774
|
+
ownership?: InputMaybe<DevAiAutodevNextWorkstreamOwnershipFilter>;
|
|
45775
|
+
};
|
|
45544
45776
|
export declare enum DevAiAutodevNextWorkstreamFindWorkMode {
|
|
45545
45777
|
BacklogScan = "BACKLOG_SCAN",
|
|
45546
45778
|
CodeScan = "CODE_SCAN"
|
|
@@ -45550,6 +45782,10 @@ export type DevAiAutodevNextWorkstreamLastSweep = {
|
|
|
45550
45782
|
completedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
45551
45783
|
startedAt: Scalars['DateTime']['output'];
|
|
45552
45784
|
};
|
|
45785
|
+
export declare enum DevAiAutodevNextWorkstreamLoopTypeInput {
|
|
45786
|
+
Admin = "ADMIN",
|
|
45787
|
+
User = "USER"
|
|
45788
|
+
}
|
|
45553
45789
|
export type DevAiAutodevNextWorkstreamMember = {
|
|
45554
45790
|
__typename?: 'DevAiAutodevNextWorkstreamMember';
|
|
45555
45791
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -45564,6 +45800,10 @@ export declare enum DevAiAutodevNextWorkstreamMemberRole {
|
|
|
45564
45800
|
Member = "MEMBER",
|
|
45565
45801
|
Owner = "OWNER"
|
|
45566
45802
|
}
|
|
45803
|
+
export type DevAiAutodevNextWorkstreamOwnershipFilter = {
|
|
45804
|
+
isOwner: Scalars['Boolean']['input'];
|
|
45805
|
+
userAri: Scalars['ID']['input'];
|
|
45806
|
+
};
|
|
45567
45807
|
export type DevAiAutodevNextWorkstreamSettings = {
|
|
45568
45808
|
__typename?: 'DevAiAutodevNextWorkstreamSettings';
|
|
45569
45809
|
assigneeAllowlist?: Maybe<Array<User>>;
|
|
@@ -50344,7 +50584,12 @@ export declare enum ExternalContentRepresentation {
|
|
|
50344
50584
|
}
|
|
50345
50585
|
export type ExternalContributor = {
|
|
50346
50586
|
__typename?: 'ExternalContributor';
|
|
50587
|
+
affiliation?: Maybe<Scalars['String']['output']>;
|
|
50588
|
+
hasAttended?: Maybe<Scalars['Boolean']['output']>;
|
|
50347
50589
|
interactionCount?: Maybe<Scalars['Long']['output']>;
|
|
50590
|
+
longestMonologueInSeconds?: Maybe<Scalars['Long']['output']>;
|
|
50591
|
+
role?: Maybe<Scalars['String']['output']>;
|
|
50592
|
+
talkTimeInSeconds?: Maybe<Scalars['Long']['output']>;
|
|
50348
50593
|
user?: Maybe<ExternalUser>;
|
|
50349
50594
|
};
|
|
50350
50595
|
export type ExternalConversation = Node & {
|
|
@@ -51743,6 +51988,7 @@ export type ExternalUserLinkedUsersArgs = {
|
|
|
51743
51988
|
export type ExternalVideo = Node & {
|
|
51744
51989
|
__typename?: 'ExternalVideo';
|
|
51745
51990
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
51991
|
+
belongsInSpace?: Maybe<ExternalAssociation>;
|
|
51746
51992
|
callOutcome?: Maybe<ExternalCallOutcome>;
|
|
51747
51993
|
chapters?: Maybe<Array<Maybe<ExternalChapter>>>;
|
|
51748
51994
|
commentCount?: Maybe<Scalars['Long']['output']>;
|
|
@@ -55089,6 +55335,8 @@ export type GraphInferenceInferenceQualityBucket = {
|
|
|
55089
55335
|
};
|
|
55090
55336
|
export type GraphInferenceInferenceQualityMetrics = {
|
|
55091
55337
|
__typename?: 'GraphInferenceInferenceQualityMetrics';
|
|
55338
|
+
cachedReadTokensSum?: Maybe<Scalars['Long']['output']>;
|
|
55339
|
+
cachedWriteTokensSum?: Maybe<Scalars['Long']['output']>;
|
|
55092
55340
|
claimMetricsReportedRuns?: Maybe<Scalars['Long']['output']>;
|
|
55093
55341
|
claimsGeneratedSum?: Maybe<Scalars['Long']['output']>;
|
|
55094
55342
|
claimsWithEvidenceSum?: Maybe<Scalars['Long']['output']>;
|
|
@@ -55118,6 +55366,7 @@ export type GraphInferenceInferenceQualityMetrics = {
|
|
|
55118
55366
|
taskRuns?: Maybe<Scalars['Long']['output']>;
|
|
55119
55367
|
tasksFailed?: Maybe<Scalars['Long']['output']>;
|
|
55120
55368
|
tasksSucceeded?: Maybe<Scalars['Long']['output']>;
|
|
55369
|
+
thoughtTokensSum?: Maybe<Scalars['Long']['output']>;
|
|
55121
55370
|
tokenUsageReportedRuns?: Maybe<Scalars['Long']['output']>;
|
|
55122
55371
|
totalTokensSum?: Maybe<Scalars['Long']['output']>;
|
|
55123
55372
|
};
|
|
@@ -55153,6 +55402,11 @@ export type GraphInferenceInferredProjectContext = {
|
|
|
55153
55402
|
cloudId: Scalars['String']['output'];
|
|
55154
55403
|
queryContext: Scalars['String']['output'];
|
|
55155
55404
|
};
|
|
55405
|
+
export type GraphInferenceInferredProjectEntity = {
|
|
55406
|
+
__typename?: 'GraphInferenceInferredProjectEntity';
|
|
55407
|
+
ari: Scalars['String']['output'];
|
|
55408
|
+
url: Scalars['String']['output'];
|
|
55409
|
+
};
|
|
55156
55410
|
export type GraphInferenceInferredProjectMeResponse = {
|
|
55157
55411
|
__typename?: 'GraphInferenceInferredProjectMeResponse';
|
|
55158
55412
|
apiVersion?: Maybe<Scalars['String']['output']>;
|
|
@@ -55169,6 +55423,18 @@ export type GraphInferenceInferredProjectPageInfo = {
|
|
|
55169
55423
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
55170
55424
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
55171
55425
|
};
|
|
55426
|
+
export type GraphInferenceInferredProjectSummariesResponse = {
|
|
55427
|
+
__typename?: 'GraphInferenceInferredProjectSummariesResponse';
|
|
55428
|
+
apiVersion?: Maybe<Scalars['String']['output']>;
|
|
55429
|
+
inferredProjects?: Maybe<Array<GraphInferenceInferredProjectSummary>>;
|
|
55430
|
+
};
|
|
55431
|
+
export type GraphInferenceInferredProjectSummary = {
|
|
55432
|
+
__typename?: 'GraphInferenceInferredProjectSummary';
|
|
55433
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
55434
|
+
entities?: Maybe<Array<GraphInferenceInferredProjectEntity>>;
|
|
55435
|
+
id: Scalars['ID']['output'];
|
|
55436
|
+
title: Scalars['String']['output'];
|
|
55437
|
+
};
|
|
55172
55438
|
export type GraphInferenceInferredProjectViewer = {
|
|
55173
55439
|
__typename?: 'GraphInferenceInferredProjectViewer';
|
|
55174
55440
|
accountId: Scalars['String']['output'];
|
|
@@ -55383,6 +55649,15 @@ export type GraphIntegrationCreateDataConnectorConnectionInput = {
|
|
|
55383
55649
|
contextAri: Scalars['ID']['input'];
|
|
55384
55650
|
productAri: Scalars['ID']['input'];
|
|
55385
55651
|
};
|
|
55652
|
+
export type GraphIntegrationCreateSkillCloneLinkInput = {
|
|
55653
|
+
contextAri: Scalars['ID']['input'];
|
|
55654
|
+
skillAris: Array<Scalars['ID']['input']>;
|
|
55655
|
+
};
|
|
55656
|
+
export type GraphIntegrationCreateSkillCloneLinkPayload = {
|
|
55657
|
+
__typename?: 'GraphIntegrationCreateSkillCloneLinkPayload';
|
|
55658
|
+
cloneToken?: Maybe<Scalars['String']['output']>;
|
|
55659
|
+
errors?: Maybe<Array<MutationError>>;
|
|
55660
|
+
};
|
|
55386
55661
|
export type GraphIntegrationCreateSkillInput = {
|
|
55387
55662
|
contextAri: Scalars['ID']['input'];
|
|
55388
55663
|
description: Scalars['String']['input'];
|
|
@@ -60240,6 +60515,8 @@ export type GraphStore = {
|
|
|
60240
60515
|
userViewedGoalUpdateInverse?: Maybe<GraphStoreSimplifiedUserViewedGoalUpdateInverseConnection>;
|
|
60241
60516
|
userViewedGoalUpdateInverseBatch?: Maybe<GraphStoreBatchUserViewedGoalUpdateConnection>;
|
|
60242
60517
|
userViewedJiraIssue?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueConnection>;
|
|
60518
|
+
userViewedJiraIssueAnalyticsTest?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueAnalyticsTestConnection>;
|
|
60519
|
+
userViewedJiraIssueAnalyticsTestInverse?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueAnalyticsTestInverseConnection>;
|
|
60243
60520
|
userViewedJiraIssueInverse?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueInverseConnection>;
|
|
60244
60521
|
userViewedProjectUpdate?: Maybe<GraphStoreSimplifiedUserViewedProjectUpdateConnection>;
|
|
60245
60522
|
userViewedProjectUpdateBatch?: Maybe<GraphStoreBatchUserViewedProjectUpdateConnection>;
|
|
@@ -69371,6 +69648,22 @@ export type GraphStoreUserViewedJiraIssueArgs = {
|
|
|
69371
69648
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
69372
69649
|
sort?: InputMaybe<GraphStoreUserViewedJiraIssueSortInput>;
|
|
69373
69650
|
};
|
|
69651
|
+
export type GraphStoreUserViewedJiraIssueAnalyticsTestArgs = {
|
|
69652
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69653
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69654
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69655
|
+
id: Scalars['ID']['input'];
|
|
69656
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
69657
|
+
sort?: InputMaybe<GraphStoreUserViewedJiraIssueAnalyticsTestSortInput>;
|
|
69658
|
+
};
|
|
69659
|
+
export type GraphStoreUserViewedJiraIssueAnalyticsTestInverseArgs = {
|
|
69660
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69661
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69662
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69663
|
+
id: Scalars['ID']['input'];
|
|
69664
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
69665
|
+
sort?: InputMaybe<GraphStoreUserViewedJiraIssueAnalyticsTestSortInput>;
|
|
69666
|
+
};
|
|
69374
69667
|
export type GraphStoreUserViewedJiraIssueInverseArgs = {
|
|
69375
69668
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69376
69669
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -78081,6 +78374,10 @@ export type GraphStoreMeetingRecurrenceHasJiraProjectSortInput = {
|
|
|
78081
78374
|
export type GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageSortInput = {
|
|
78082
78375
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
78083
78376
|
};
|
|
78377
|
+
export type GraphStoreMemoryContentNodeMetadata = {
|
|
78378
|
+
__typename?: 'GraphStoreMemoryContentNodeMetadata';
|
|
78379
|
+
content?: Maybe<Scalars['String']['output']>;
|
|
78380
|
+
};
|
|
78084
78381
|
export type GraphStoreMercuryOrganizationHasAtlasGoalSortInput = {
|
|
78085
78382
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
78086
78383
|
};
|
|
@@ -78422,7 +78719,7 @@ export type GraphStoreMutationDeleteVersionUserAssociatedFeatureFlagArgs = {
|
|
|
78422
78719
|
export type GraphStoreMutationDeleteVulnerabilityAssociatedIssueArgs = {
|
|
78423
78720
|
input?: InputMaybe<GraphStoreDeleteVulnerabilityAssociatedIssueInput>;
|
|
78424
78721
|
};
|
|
78425
|
-
export type GraphStoreNodeMetadata = GraphStoreGraphMemoryNodeMetadata | GraphStoreInferredDecisionNodeMetadata | GraphStoreInferredProjectNodeMetadata | GraphStoreInferredTeamNodeMetadata;
|
|
78722
|
+
export type GraphStoreNodeMetadata = GraphStoreGraphMemoryNodeMetadata | GraphStoreInferredDecisionNodeMetadata | GraphStoreInferredProjectNodeMetadata | GraphStoreInferredTeamNodeMetadata | GraphStoreMemoryContentNodeMetadata;
|
|
78426
78723
|
export type GraphStoreNodeResponse = Node & {
|
|
78427
78724
|
__typename?: 'GraphStoreNodeResponse';
|
|
78428
78725
|
id: Scalars['ID']['output'];
|
|
@@ -92361,6 +92658,34 @@ export type GraphStoreSimplifiedUserViewedGoalUpdateInverseEdge = {
|
|
|
92361
92658
|
};
|
|
92362
92659
|
export type GraphStoreSimplifiedUserViewedGoalUpdateInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
92363
92660
|
export type GraphStoreSimplifiedUserViewedGoalUpdateUnion = TownsquareGoalUpdate;
|
|
92661
|
+
export type GraphStoreSimplifiedUserViewedJiraIssueAnalyticsTestConnection = HasPageInfo & {
|
|
92662
|
+
__typename?: 'GraphStoreSimplifiedUserViewedJiraIssueAnalyticsTestConnection';
|
|
92663
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedJiraIssueAnalyticsTestEdge>>>;
|
|
92664
|
+
pageInfo: PageInfo;
|
|
92665
|
+
};
|
|
92666
|
+
export type GraphStoreSimplifiedUserViewedJiraIssueAnalyticsTestEdge = {
|
|
92667
|
+
__typename?: 'GraphStoreSimplifiedUserViewedJiraIssueAnalyticsTestEdge';
|
|
92668
|
+
createdAt: Scalars['DateTime']['output'];
|
|
92669
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
92670
|
+
id: Scalars['ID']['output'];
|
|
92671
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
92672
|
+
node?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueAnalyticsTestUnion>;
|
|
92673
|
+
};
|
|
92674
|
+
export type GraphStoreSimplifiedUserViewedJiraIssueAnalyticsTestInverseConnection = HasPageInfo & {
|
|
92675
|
+
__typename?: 'GraphStoreSimplifiedUserViewedJiraIssueAnalyticsTestInverseConnection';
|
|
92676
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedJiraIssueAnalyticsTestInverseEdge>>>;
|
|
92677
|
+
pageInfo: PageInfo;
|
|
92678
|
+
};
|
|
92679
|
+
export type GraphStoreSimplifiedUserViewedJiraIssueAnalyticsTestInverseEdge = {
|
|
92680
|
+
__typename?: 'GraphStoreSimplifiedUserViewedJiraIssueAnalyticsTestInverseEdge';
|
|
92681
|
+
createdAt: Scalars['DateTime']['output'];
|
|
92682
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
92683
|
+
id: Scalars['ID']['output'];
|
|
92684
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
92685
|
+
node?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueAnalyticsTestInverseUnion>;
|
|
92686
|
+
};
|
|
92687
|
+
export type GraphStoreSimplifiedUserViewedJiraIssueAnalyticsTestInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
92688
|
+
export type GraphStoreSimplifiedUserViewedJiraIssueAnalyticsTestUnion = JiraIssue;
|
|
92364
92689
|
export type GraphStoreSimplifiedUserViewedJiraIssueConnection = HasPageInfo & {
|
|
92365
92690
|
__typename?: 'GraphStoreSimplifiedUserViewedJiraIssueConnection';
|
|
92366
92691
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedJiraIssueEdge>>>;
|
|
@@ -93892,6 +94217,9 @@ export type GraphStoreUserViewedDocumentSortInput = {
|
|
|
93892
94217
|
export type GraphStoreUserViewedGoalUpdateSortInput = {
|
|
93893
94218
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
93894
94219
|
};
|
|
94220
|
+
export type GraphStoreUserViewedJiraIssueAnalyticsTestSortInput = {
|
|
94221
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
94222
|
+
};
|
|
93895
94223
|
export type GraphStoreUserViewedJiraIssueSortInput = {
|
|
93896
94224
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
93897
94225
|
};
|
|
@@ -118318,6 +118646,12 @@ export type GravityAddReactionPayload = Payload & {
|
|
|
118318
118646
|
errors?: Maybe<Array<MutationError>>;
|
|
118319
118647
|
success: Scalars['Boolean']['output'];
|
|
118320
118648
|
};
|
|
118649
|
+
export type GravityAltaSessionPayload = Payload & {
|
|
118650
|
+
__typename?: 'GravityAltaSessionPayload';
|
|
118651
|
+
errors?: Maybe<Array<MutationError>>;
|
|
118652
|
+
response?: Maybe<Scalars['String']['output']>;
|
|
118653
|
+
success: Scalars['Boolean']['output'];
|
|
118654
|
+
};
|
|
118321
118655
|
export type GravityApplyDraftInput = {
|
|
118322
118656
|
draftId: Scalars['String']['input'];
|
|
118323
118657
|
};
|
|
@@ -118346,6 +118680,20 @@ export type GravityArrangementRow = {
|
|
|
118346
118680
|
export type GravityArrangementRowInput = {
|
|
118347
118681
|
issueIds: Array<Scalars['ID']['input']>;
|
|
118348
118682
|
};
|
|
118683
|
+
export type GravityCanCreateViewFromTemplateEntry = {
|
|
118684
|
+
__typename?: 'GravityCanCreateViewFromTemplateEntry';
|
|
118685
|
+
canCreateView: Scalars['Boolean']['output'];
|
|
118686
|
+
templateId: Scalars['ID']['output'];
|
|
118687
|
+
};
|
|
118688
|
+
export type GravityCanCreateViewFromTemplateInput = {
|
|
118689
|
+
fieldMappings: Array<GravityFieldRefMappingInput>;
|
|
118690
|
+
templateId: Scalars['ID']['input'];
|
|
118691
|
+
};
|
|
118692
|
+
export type GravityCanCreateViewsFromTemplatesResult = GravityCanCreateViewsFromTemplatesSuccess | QueryError;
|
|
118693
|
+
export type GravityCanCreateViewsFromTemplatesSuccess = {
|
|
118694
|
+
__typename?: 'GravityCanCreateViewsFromTemplatesSuccess';
|
|
118695
|
+
templates: Array<GravityCanCreateViewFromTemplateEntry>;
|
|
118696
|
+
};
|
|
118349
118697
|
export type GravityCommentPayload = Payload & {
|
|
118350
118698
|
__typename?: 'GravityCommentPayload';
|
|
118351
118699
|
comment?: Maybe<GravityDraftComment>;
|
|
@@ -118686,6 +119034,10 @@ export declare enum GravitySortOrder {
|
|
|
118686
119034
|
Asc = "ASC",
|
|
118687
119035
|
Desc = "DESC"
|
|
118688
119036
|
}
|
|
119037
|
+
export type GravityStartAltaSessionInput = {
|
|
119038
|
+
agent: Scalars['String']['input'];
|
|
119039
|
+
prompt: Scalars['String']['input'];
|
|
119040
|
+
};
|
|
118689
119041
|
export type GravitySuggestedIdea = {
|
|
118690
119042
|
__typename?: 'GravitySuggestedIdea';
|
|
118691
119043
|
description: Scalars['String']['output'];
|
|
@@ -120313,6 +120665,7 @@ export type HelpCenterCreateTopicPayload = Payload & {
|
|
|
120313
120665
|
};
|
|
120314
120666
|
export type HelpCenterDeleteHubTranslationsInput = {
|
|
120315
120667
|
helpCenterAri: Scalars['ID']['input'];
|
|
120668
|
+
isDraft?: InputMaybe<Scalars['Boolean']['input']>;
|
|
120316
120669
|
locale: Scalars['String']['input'];
|
|
120317
120670
|
parentAri: Scalars['ID']['input'];
|
|
120318
120671
|
};
|
|
@@ -120432,6 +120785,7 @@ export type HelpCenterHubTranslationFieldInput = {
|
|
|
120432
120785
|
export type HelpCenterHubTranslationsInput = {
|
|
120433
120786
|
blocks: Array<HelpCenterHubTranslationBlockInput>;
|
|
120434
120787
|
helpCenterAri: Scalars['ID']['input'];
|
|
120788
|
+
isDraft?: InputMaybe<Scalars['Boolean']['input']>;
|
|
120435
120789
|
locale: Scalars['String']['input'];
|
|
120436
120790
|
parentAri: Scalars['ID']['input'];
|
|
120437
120791
|
};
|
|
@@ -121184,85 +121538,6 @@ export type HelpCentersConfig = {
|
|
|
121184
121538
|
};
|
|
121185
121539
|
export type HelpCentersConfigResult = HelpCentersConfig | QueryError;
|
|
121186
121540
|
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
121541
|
export type HelpLayout = Node & {
|
|
121267
121542
|
__typename?: 'HelpLayout';
|
|
121268
121543
|
id: Scalars['ID']['output'];
|
|
@@ -124263,6 +124538,7 @@ export type JiraAgentSessionsField = JiraIssueField & JiraIssueFieldConfiguratio
|
|
|
124263
124538
|
__typename?: 'JiraAgentSessionsField';
|
|
124264
124539
|
agentSessions?: Maybe<JiraAgentSessionConnection>;
|
|
124265
124540
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
124541
|
+
canInvokeAgent?: Maybe<Scalars['Boolean']['output']>;
|
|
124266
124542
|
description?: Maybe<Scalars['String']['output']>;
|
|
124267
124543
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
124268
124544
|
fieldId: Scalars['String']['output'];
|
|
@@ -124290,6 +124566,10 @@ export type JiraAgentSessionsScopeInput = {
|
|
|
124290
124566
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
124291
124567
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
124292
124568
|
};
|
|
124569
|
+
export type JiraAgentSessionsUpdatedNoEnrichmentEvent = {
|
|
124570
|
+
__typename?: 'JiraAgentSessionsUpdatedNoEnrichmentEvent';
|
|
124571
|
+
issueId?: Maybe<Scalars['ID']['output']>;
|
|
124572
|
+
};
|
|
124293
124573
|
export type JiraAgentSpaceInstruction = {
|
|
124294
124574
|
__typename?: 'JiraAgentSpaceInstruction';
|
|
124295
124575
|
agentAri?: Maybe<Scalars['ID']['output']>;
|
|
@@ -126189,6 +126469,7 @@ export type JiraBaseNextActionsEntity = {
|
|
|
126189
126469
|
};
|
|
126190
126470
|
export type JiraBaseTimelineView = {
|
|
126191
126471
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
126472
|
+
childIssuesJql?: Maybe<Scalars['String']['output']>;
|
|
126192
126473
|
conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
|
|
126193
126474
|
error?: Maybe<QueryError>;
|
|
126194
126475
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
@@ -126414,6 +126695,7 @@ export type JiraBoardView = JiraView & Node & {
|
|
|
126414
126695
|
__typename?: 'JiraBoardView';
|
|
126415
126696
|
autoCompleteSprintErrorCount?: Maybe<Scalars['Int']['output']>;
|
|
126416
126697
|
availableTransitionsForIssue?: Maybe<JiraTransitionConnection>;
|
|
126698
|
+
availableTransitionsForIssues?: Maybe<JiraTransitionConnection>;
|
|
126417
126699
|
backlogStatuses?: Maybe<JiraBoardViewStatusConnection>;
|
|
126418
126700
|
board?: Maybe<JiraBoard>;
|
|
126419
126701
|
canArchiveIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -126463,6 +126745,11 @@ export type JiraBoardViewAvailableTransitionsForIssueArgs = {
|
|
|
126463
126745
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
126464
126746
|
issueId: Scalars['ID']['input'];
|
|
126465
126747
|
};
|
|
126748
|
+
export type JiraBoardViewAvailableTransitionsForIssuesArgs = {
|
|
126749
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
126750
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
126751
|
+
issueIds: Array<Scalars['ID']['input']>;
|
|
126752
|
+
};
|
|
126466
126753
|
export type JiraBoardViewBacklogStatusesArgs = {
|
|
126467
126754
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
126468
126755
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -127141,43 +127428,42 @@ export type JiraBulkMergeValidationResponse = {
|
|
|
127141
127428
|
success: Scalars['Boolean']['output'];
|
|
127142
127429
|
};
|
|
127143
127430
|
export type JiraBulkMergeValidationResult = JiraBulkMergeValidationResponse | QueryError;
|
|
127144
|
-
export type
|
|
127431
|
+
export type JiraBulkMoveClassificationInput = {
|
|
127145
127432
|
sourceClassificationIds: Array<Scalars['ID']['input']>;
|
|
127146
127433
|
targetClassificationId: Scalars['ID']['input'];
|
|
127147
127434
|
};
|
|
127148
|
-
export type JiraBulkMoveClassificationMappingInput = {
|
|
127149
|
-
classifications: Array<JiraBulkMoveClassificationEntryInput>;
|
|
127150
|
-
sourceIssueTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
127151
|
-
sourceProjectId?: InputMaybe<Scalars['ID']['input']>;
|
|
127152
|
-
};
|
|
127153
127435
|
export type JiraBulkMoveInput = {
|
|
127154
127436
|
inferClassificationDefaults: Scalars['Boolean']['input'];
|
|
127155
127437
|
inferFieldDefaults: Scalars['Boolean']['input'];
|
|
127156
127438
|
inferStatusDefaults: Scalars['Boolean']['input'];
|
|
127157
|
-
|
|
127439
|
+
inferSubtaskTypeDefaults: Scalars['Boolean']['input'];
|
|
127158
127440
|
inputId: Scalars['String']['input'];
|
|
127159
127441
|
selectedIssueIds: Array<Scalars['ID']['input']>;
|
|
127160
|
-
|
|
127442
|
+
targetClassifications?: InputMaybe<Array<JiraBulkMoveClassificationInput>>;
|
|
127161
127443
|
targetIssueTypeId: Scalars['ID']['input'];
|
|
127162
|
-
targetMandatoryFields?: InputMaybe<Array<
|
|
127444
|
+
targetMandatoryFields?: InputMaybe<Array<JiraBulkMoveMandatoryFieldInput>>;
|
|
127163
127445
|
targetParentIssueId?: InputMaybe<Scalars['ID']['input']>;
|
|
127164
127446
|
targetProjectId: Scalars['ID']['input'];
|
|
127165
|
-
|
|
127447
|
+
targetStatuses?: InputMaybe<Array<JiraBulkMoveStatusInput>>;
|
|
127166
127448
|
};
|
|
127167
|
-
export type
|
|
127168
|
-
|
|
127169
|
-
|
|
127170
|
-
|
|
127449
|
+
export type JiraBulkMoveMandatoryFieldInput = {
|
|
127450
|
+
fieldId: Scalars['ID']['input'];
|
|
127451
|
+
value: JiraBulkMoveMandatoryFieldValueInput;
|
|
127452
|
+
};
|
|
127453
|
+
export type JiraBulkMoveMandatoryFieldValueInput = {
|
|
127454
|
+
adfValue?: InputMaybe<Scalars['String']['input']>;
|
|
127455
|
+
rawValues?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
127456
|
+
retain?: InputMaybe<Scalars['Boolean']['input']>;
|
|
127457
|
+
type: JiraBulkMoveMandatoryFieldValueType;
|
|
127171
127458
|
};
|
|
127172
|
-
export
|
|
127459
|
+
export declare enum JiraBulkMoveMandatoryFieldValueType {
|
|
127460
|
+
Adf = "ADF",
|
|
127461
|
+
Raw = "RAW"
|
|
127462
|
+
}
|
|
127463
|
+
export type JiraBulkMoveStatusInput = {
|
|
127173
127464
|
sourceStatusIds: Array<Scalars['ID']['input']>;
|
|
127174
127465
|
targetStatusId: Scalars['ID']['input'];
|
|
127175
127466
|
};
|
|
127176
|
-
export type JiraBulkMoveStatusMappingInput = {
|
|
127177
|
-
sourceIssueTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
127178
|
-
sourceProjectId?: InputMaybe<Scalars['ID']['input']>;
|
|
127179
|
-
statuses: Array<JiraBulkMoveStatusEntryInput>;
|
|
127180
|
-
};
|
|
127181
127467
|
export type JiraBulkOperationInput = {
|
|
127182
127468
|
bulkDeleteInput?: InputMaybe<JiraBulkDeleteInput>;
|
|
127183
127469
|
bulkEditInput?: InputMaybe<JiraBulkEditInput>;
|
|
@@ -128471,6 +128757,7 @@ export declare enum JiraCollapsibleSection {
|
|
|
128471
128757
|
Activity = "ACTIVITY",
|
|
128472
128758
|
AiPanelServicedesk = "AI_PANEL_SERVICEDESK",
|
|
128473
128759
|
Attachments = "ATTACHMENTS",
|
|
128760
|
+
CaseNotesServicedesk = "CASE_NOTES_SERVICEDESK",
|
|
128474
128761
|
ChildWorkItem = "CHILD_WORK_ITEM",
|
|
128475
128762
|
Description = "DESCRIPTION",
|
|
128476
128763
|
IncidentSuggestedResourcesServicedesk = "INCIDENT_SUGGESTED_RESOURCES_SERVICEDESK",
|
|
@@ -128628,6 +128915,14 @@ export type JiraComponentFieldOperationInput = {
|
|
|
128628
128915
|
ids: Array<Scalars['ID']['input']>;
|
|
128629
128916
|
operation: JiraMultiValueFieldOperations;
|
|
128630
128917
|
};
|
|
128918
|
+
export type JiraComponentIdsFilterInput = {
|
|
128919
|
+
ids: Array<Scalars['ID']['input']>;
|
|
128920
|
+
operation: JiraComponentIdsFilterOperation;
|
|
128921
|
+
};
|
|
128922
|
+
export declare enum JiraComponentIdsFilterOperation {
|
|
128923
|
+
Allow = "ALLOW",
|
|
128924
|
+
Exclude = "EXCLUDE"
|
|
128925
|
+
}
|
|
128631
128926
|
export type JiraComponentInput = {
|
|
128632
128927
|
componentId: Scalars['ID']['input'];
|
|
128633
128928
|
};
|
|
@@ -130795,9 +131090,14 @@ export type JiraEditFieldSchemeInput = {
|
|
|
130795
131090
|
name: Scalars['String']['input'];
|
|
130796
131091
|
schemeId: Scalars['ID']['input'];
|
|
130797
131092
|
};
|
|
131093
|
+
export declare enum JiraEligibleProjectTemplateUsageFilter {
|
|
131094
|
+
RegularProjectsOnly = "REGULAR_PROJECTS_ONLY",
|
|
131095
|
+
TemplateBaseProjectsOnly = "TEMPLATE_BASE_PROJECTS_ONLY"
|
|
131096
|
+
}
|
|
130798
131097
|
export type JiraEligibleProjectsFilter = {
|
|
130799
131098
|
projectCategoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
130800
131099
|
projectCategoryIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
131100
|
+
projectTemplateUsage?: InputMaybe<JiraEligibleProjectTemplateUsageFilter>;
|
|
130801
131101
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
130802
131102
|
};
|
|
130803
131103
|
export declare enum JiraEmailMimeType {
|
|
@@ -131885,6 +132185,25 @@ export type JiraFlatOptionEdge = {
|
|
|
131885
132185
|
cursor: Scalars['String']['output'];
|
|
131886
132186
|
node?: Maybe<JiraFlatOption>;
|
|
131887
132187
|
};
|
|
132188
|
+
export type JiraForYouAgentReadinessProfile = {
|
|
132189
|
+
__typename?: 'JiraForYouAgentReadinessProfile';
|
|
132190
|
+
definitionVersion?: Maybe<Scalars['Int']['output']>;
|
|
132191
|
+
emptyDescriptionCount?: Maybe<Scalars['Int']['output']>;
|
|
132192
|
+
has3PCodingAgent?: Maybe<Scalars['Boolean']['output']>;
|
|
132193
|
+
hasJiraCodingAgent?: Maybe<Scalars['Boolean']['output']>;
|
|
132194
|
+
otherCandidateCount?: Maybe<Scalars['Int']['output']>;
|
|
132195
|
+
readinessByBar?: Maybe<Array<JiraForYouReadinessAtBar>>;
|
|
132196
|
+
sampledSoftwareCandidateCount?: Maybe<Scalars['Int']['output']>;
|
|
132197
|
+
serviceDeskCandidateCount?: Maybe<Scalars['Int']['output']>;
|
|
132198
|
+
softwareCandidateCount?: Maybe<Scalars['Int']['output']>;
|
|
132199
|
+
workManagementCandidateCount?: Maybe<Scalars['Int']['output']>;
|
|
132200
|
+
};
|
|
132201
|
+
export type JiraForYouReadinessAtBar = {
|
|
132202
|
+
__typename?: 'JiraForYouReadinessAtBar';
|
|
132203
|
+
codingReadyCount?: Maybe<Scalars['Int']['output']>;
|
|
132204
|
+
planningNeededCount?: Maybe<Scalars['Int']['output']>;
|
|
132205
|
+
wordBar?: Maybe<Scalars['Int']['output']>;
|
|
132206
|
+
};
|
|
131888
132207
|
export type JiraForgeAppEgressDeclaration = {
|
|
131889
132208
|
__typename?: 'JiraForgeAppEgressDeclaration';
|
|
131890
132209
|
addresses?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -132923,6 +133242,7 @@ export type JiraGroupedListViewViewSettingsArgs = {
|
|
|
132923
133242
|
export type JiraGroupedTimelineView = JiraBaseTimelineView & JiraFieldSetsViewMetadata & JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
132924
133243
|
__typename?: 'JiraGroupedTimelineView';
|
|
132925
133244
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
133245
|
+
childIssuesJql?: Maybe<Scalars['String']['output']>;
|
|
132926
133246
|
conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
|
|
132927
133247
|
defaultJql?: Maybe<Scalars['String']['output']>;
|
|
132928
133248
|
error?: Maybe<QueryError>;
|
|
@@ -133152,6 +133472,7 @@ export type JiraIccActivityValue = {
|
|
|
133152
133472
|
groupName?: Maybe<Scalars['String']['output']>;
|
|
133153
133473
|
hypothesisCount?: Maybe<Scalars['String']['output']>;
|
|
133154
133474
|
incidentName?: Maybe<Scalars['String']['output']>;
|
|
133475
|
+
mitigationVersion?: Maybe<Scalars['String']['output']>;
|
|
133155
133476
|
planName?: Maybe<Scalars['String']['output']>;
|
|
133156
133477
|
status?: Maybe<Scalars['String']['output']>;
|
|
133157
133478
|
statusPageIncidentId?: Maybe<Scalars['String']['output']>;
|
|
@@ -133474,6 +133795,7 @@ export type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScenarioIssu
|
|
|
133474
133795
|
mercuryProjectStatus?: Maybe<MercuryProjectStatus>;
|
|
133475
133796
|
mercuryProjectType?: Maybe<MercuryProjectType>;
|
|
133476
133797
|
mercuryProjectUrl?: Maybe<Scalars['URL']['output']>;
|
|
133798
|
+
mercuryStartDate?: Maybe<Scalars['DateTime']['output']>;
|
|
133477
133799
|
mercuryTargetDate?: Maybe<Scalars['String']['output']>;
|
|
133478
133800
|
mercuryTargetDateEnd?: Maybe<Scalars['DateTime']['output']>;
|
|
133479
133801
|
mercuryTargetDateStart?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -134263,6 +134585,10 @@ export type JiraIssueCreateAdditionalServicesServicesArgs = {
|
|
|
134263
134585
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
134264
134586
|
};
|
|
134265
134587
|
export type JiraIssueCreateAdditionalServicesResult = JiraIssueCreateAdditionalServices | QueryError;
|
|
134588
|
+
export type JiraIssueCreateContextInput = {
|
|
134589
|
+
jqls?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
134590
|
+
linkedIssue?: InputMaybe<JiraLinkedIssueCreateInput>;
|
|
134591
|
+
};
|
|
134266
134592
|
export type JiraIssueCreateFieldValidationRule = {
|
|
134267
134593
|
errorMessage?: InputMaybe<Scalars['String']['input']>;
|
|
134268
134594
|
fields: Array<Scalars['String']['input']>;
|
|
@@ -134337,6 +134663,10 @@ export type JiraIssueCreateServiceEdge = {
|
|
|
134337
134663
|
cursor: Scalars['String']['output'];
|
|
134338
134664
|
node?: Maybe<JiraIssueCreateService>;
|
|
134339
134665
|
};
|
|
134666
|
+
export declare enum JiraIssueCreateTypeFilter {
|
|
134667
|
+
LinkedIssueCreate = "LINKED_ISSUE_CREATE",
|
|
134668
|
+
Standard = "STANDARD"
|
|
134669
|
+
}
|
|
134340
134670
|
export type JiraIssueCreateValidationRule = {
|
|
134341
134671
|
fieldValidations?: InputMaybe<Array<JiraIssueCreateFieldValidationRule>>;
|
|
134342
134672
|
};
|
|
@@ -137670,6 +138000,11 @@ export type JiraLinkedIssueConnectionPageCursorsArgs = {
|
|
|
137670
138000
|
maxCursors: Scalars['Int']['input'];
|
|
137671
138001
|
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
137672
138002
|
};
|
|
138003
|
+
export type JiraLinkedIssueCreateInput = {
|
|
138004
|
+
includeAttachments?: InputMaybe<Scalars['Boolean']['input']>;
|
|
138005
|
+
includeLinks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
138006
|
+
sourceIssueId: Scalars['ID']['input'];
|
|
138007
|
+
};
|
|
137673
138008
|
export type JiraLinkedIssuesInput = {
|
|
137674
138009
|
inwardIssues?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
137675
138010
|
outwardIssues?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -141237,6 +141572,12 @@ export type JiraPolicyRulesByDomainInput = {
|
|
|
141237
141572
|
domain: Scalars['String']['input'];
|
|
141238
141573
|
rules: Array<JiraPolicyRuleInput>;
|
|
141239
141574
|
};
|
|
141575
|
+
export type JiraPolicyViolatingProjectsConnection = HasPageInfo & {
|
|
141576
|
+
__typename?: 'JiraPolicyViolatingProjectsConnection';
|
|
141577
|
+
edges?: Maybe<Array<Maybe<JiraProjectPolicyAssociationEdge>>>;
|
|
141578
|
+
nodes?: Maybe<Array<Maybe<JiraProjectPolicyAssociation>>>;
|
|
141579
|
+
pageInfo: PageInfo;
|
|
141580
|
+
};
|
|
141240
141581
|
export type JiraPostIncidentReviewLink = Node & {
|
|
141241
141582
|
__typename?: 'JiraPostIncidentReviewLink';
|
|
141242
141583
|
id: Scalars['ID']['output'];
|
|
@@ -141471,6 +141812,7 @@ export type JiraProject = Node & {
|
|
|
141471
141812
|
linkedOperationsIncidentsByProject?: Maybe<GraphStoreSimplifiedJswProjectAssociatedIncidentConnection>;
|
|
141472
141813
|
linkedSecurityContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
141473
141814
|
linkedSecurityVulnerabilitiesByProject?: Maybe<GraphJiraVulnerabilityConnection>;
|
|
141815
|
+
manageWorkflowUrl?: Maybe<Scalars['String']['output']>;
|
|
141474
141816
|
mostRecentlyViewedBoard?: Maybe<JiraBoardResult>;
|
|
141475
141817
|
name: Scalars['String']['output'];
|
|
141476
141818
|
navigationItems?: Maybe<JiraNavigationItemConnection>;
|
|
@@ -141568,6 +141910,7 @@ export type JiraProjectCapabilitiesArgs = {
|
|
|
141568
141910
|
export type JiraProjectComponentsArgs = {
|
|
141569
141911
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
141570
141912
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
141913
|
+
filterById?: InputMaybe<JiraComponentIdsFilterInput>;
|
|
141571
141914
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
141572
141915
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
141573
141916
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -142229,10 +142572,12 @@ export type JiraProjectPolicy = Node & {
|
|
|
142229
142572
|
associatedProjects?: Maybe<JiraProjectPolicyAssociationConnection>;
|
|
142230
142573
|
description?: Maybe<Scalars['String']['output']>;
|
|
142231
142574
|
eligibleProjects?: Maybe<JiraProjectConnection>;
|
|
142575
|
+
hasViolation?: Maybe<Scalars['Boolean']['output']>;
|
|
142232
142576
|
id: Scalars['ID']['output'];
|
|
142233
142577
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
142234
142578
|
name?: Maybe<Scalars['String']['output']>;
|
|
142235
142579
|
rules?: Maybe<JiraProjectPolicyRuleConnection>;
|
|
142580
|
+
violatingProjects?: Maybe<JiraPolicyViolatingProjectsConnection>;
|
|
142236
142581
|
};
|
|
142237
142582
|
export type JiraProjectPolicyAssociatedProjectsArgs = {
|
|
142238
142583
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -142250,6 +142595,11 @@ export type JiraProjectPolicyRulesArgs = {
|
|
|
142250
142595
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
142251
142596
|
ruleTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
142252
142597
|
};
|
|
142598
|
+
export type JiraProjectPolicyViolatingProjectsArgs = {
|
|
142599
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
142600
|
+
filter?: InputMaybe<JiraProjectPolicyProjectFilter>;
|
|
142601
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
142602
|
+
};
|
|
142253
142603
|
export type JiraProjectPolicyAssociation = {
|
|
142254
142604
|
__typename?: 'JiraProjectPolicyAssociation';
|
|
142255
142605
|
complianceState?: Maybe<JiraProjectPolicyComplianceState>;
|
|
@@ -142781,6 +143131,7 @@ export type JiraQuery = {
|
|
|
142781
143131
|
filter?: Maybe<JiraFilter>;
|
|
142782
143132
|
filters?: Maybe<Array<Maybe<JiraFilter>>>;
|
|
142783
143133
|
fixFormulaFieldExpression?: Maybe<JiraFormulaFieldSuggestedExpressionResult>;
|
|
143134
|
+
forYou_agentReadinessProfile?: Maybe<JiraForYouAgentReadinessProfile>;
|
|
142784
143135
|
forYou_recommendedActions?: Maybe<JiraRecommendedActionCategoryConnection>;
|
|
142785
143136
|
forge: JiraForgeQuery;
|
|
142786
143137
|
formattingRulesByProject?: Maybe<JiraFormattingRuleConnection>;
|
|
@@ -143014,7 +143365,7 @@ export type JiraQueryAgentSessionsByScopeArgs = {
|
|
|
143014
143365
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
143015
143366
|
cloudId: Scalars['ID']['input'];
|
|
143016
143367
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
143017
|
-
isDeleted
|
|
143368
|
+
isDeleted?: InputMaybe<Scalars['Boolean']['input']>;
|
|
143018
143369
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
143019
143370
|
scope: JiraAgentSessionsScopeInput;
|
|
143020
143371
|
state?: InputMaybe<JiraAgentSessionStateCategory>;
|
|
@@ -143351,6 +143702,9 @@ export type JiraQueryFixFormulaFieldExpressionArgs = {
|
|
|
143351
143702
|
cloudId: Scalars['ID']['input'];
|
|
143352
143703
|
suggestionContext: JiraFormulaFieldFixContext;
|
|
143353
143704
|
};
|
|
143705
|
+
export type JiraQueryForYou_AgentReadinessProfileArgs = {
|
|
143706
|
+
cloudId: Scalars['ID']['input'];
|
|
143707
|
+
};
|
|
143354
143708
|
export type JiraQueryForYou_RecommendedActionsArgs = {
|
|
143355
143709
|
cloudId: Scalars['ID']['input'];
|
|
143356
143710
|
};
|
|
@@ -144480,11 +144834,13 @@ export type JiraRecentItemsFilter = {
|
|
|
144480
144834
|
types?: InputMaybe<Array<JiraSearchableEntityType>>;
|
|
144481
144835
|
};
|
|
144482
144836
|
export declare enum JiraRecommendationCategory {
|
|
144837
|
+
Component = "COMPONENT",
|
|
144483
144838
|
CustomField = "CUSTOM_FIELD",
|
|
144484
144839
|
IssueArchival = "ISSUE_ARCHIVAL",
|
|
144485
144840
|
PermissionGrantScheme = "PERMISSION_GRANT_SCHEME",
|
|
144486
144841
|
ProjectCleanup = "PROJECT_CLEANUP",
|
|
144487
144842
|
ProjectRoleActor = "PROJECT_ROLE_ACTOR",
|
|
144843
|
+
Release = "RELEASE",
|
|
144488
144844
|
WorkflowScheme = "WORKFLOW_SCHEME",
|
|
144489
144845
|
WorkflowStatus = "WORKFLOW_STATUS"
|
|
144490
144846
|
}
|
|
@@ -149450,6 +149806,7 @@ export type JiraSubscription = {
|
|
|
149450
149806
|
onAiAgentSessionCreateByProjects?: Maybe<JiraAgentSessionCreateEvent>;
|
|
149451
149807
|
onAiAgentSessionCreateV2?: Maybe<JiraAgentSessionCreateEvent>;
|
|
149452
149808
|
onAiAgentSessionCreateV3?: Maybe<JiraAgentSessionCreateEvent>;
|
|
149809
|
+
onAiAgentSessionsUpdatedByScopeNoEnrichment?: Maybe<JiraAgentSessionsUpdatedNoEnrichmentEvent>;
|
|
149453
149810
|
onAttachmentCreatedByProjects?: Maybe<JiraPlatformAttachment>;
|
|
149454
149811
|
onAttachmentCreatedByProjectsV2?: Maybe<JiraAttachmentByAriResult>;
|
|
149455
149812
|
onAttachmentDeletedByProjects?: Maybe<JiraAttachmentDeletedStreamHubPayload>;
|
|
@@ -149507,6 +149864,10 @@ export type JiraSubscriptionOnAiAgentSessionCreateV3Args = {
|
|
|
149507
149864
|
cloudId: Scalars['ID']['input'];
|
|
149508
149865
|
issueId: Scalars['String']['input'];
|
|
149509
149866
|
};
|
|
149867
|
+
export type JiraSubscriptionOnAiAgentSessionsUpdatedByScopeNoEnrichmentArgs = {
|
|
149868
|
+
cloudId: Scalars['ID']['input'];
|
|
149869
|
+
scope?: InputMaybe<JiraAgentSessionsScopeInput>;
|
|
149870
|
+
};
|
|
149510
149871
|
export type JiraSubscriptionOnAttachmentCreatedByProjectsArgs = {
|
|
149511
149872
|
cloudId: Scalars['ID']['input'];
|
|
149512
149873
|
projectIds: Array<Scalars['String']['input']>;
|
|
@@ -149798,6 +150159,7 @@ export type JiraTabLayout = {
|
|
|
149798
150159
|
id: Scalars['ID']['output'];
|
|
149799
150160
|
items: Array<JiraFieldLayoutItem>;
|
|
149800
150161
|
name: Scalars['String']['output'];
|
|
150162
|
+
rankedItems?: Maybe<Array<Maybe<JiraFieldLayoutItem>>>;
|
|
149801
150163
|
tabId?: Maybe<Scalars['String']['output']>;
|
|
149802
150164
|
};
|
|
149803
150165
|
export type JiraTeam = Node & {
|
|
@@ -150112,6 +150474,7 @@ export type JiraTimelineStaticViewInput = {
|
|
|
150112
150474
|
export type JiraTimelineView = JiraBaseTimelineView & JiraFieldSetsViewMetadata & JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
150113
150475
|
__typename?: 'JiraTimelineView';
|
|
150114
150476
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
150477
|
+
childIssuesJql?: Maybe<Scalars['String']['output']>;
|
|
150115
150478
|
conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
|
|
150116
150479
|
error?: Maybe<QueryError>;
|
|
150117
150480
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
@@ -150335,6 +150698,7 @@ export type JiraTransitionAgent = {
|
|
|
150335
150698
|
export type JiraTransitionAgentRule = {
|
|
150336
150699
|
__typename?: 'JiraTransitionAgentRule';
|
|
150337
150700
|
agent: JiraTransitionAgent;
|
|
150701
|
+
conditionExpression?: Maybe<Scalars['String']['output']>;
|
|
150338
150702
|
promptValue?: Maybe<Scalars['String']['output']>;
|
|
150339
150703
|
ruleId?: Maybe<Scalars['ID']['output']>;
|
|
150340
150704
|
};
|
|
@@ -154584,6 +154948,7 @@ export type JsmChannelsServiceAgentResolutionPlan = {
|
|
|
154584
154948
|
__typename?: 'JsmChannelsServiceAgentResolutionPlan';
|
|
154585
154949
|
contentSources?: Maybe<Array<Maybe<JsmChannelsServiceAgentResolutionContentSource>>>;
|
|
154586
154950
|
customPlanNodeAttributes?: Maybe<Array<JsmChannelsCustomPlanNodeAttribute>>;
|
|
154951
|
+
generatedFromSimilarPlans?: Maybe<Scalars['Boolean']['output']>;
|
|
154587
154952
|
isRetriable: Scalars['Boolean']['output'];
|
|
154588
154953
|
planId?: Maybe<Scalars['ID']['output']>;
|
|
154589
154954
|
runbooks?: Maybe<Array<Maybe<JsmChannelsServiceAgentResolutionRunbook>>>;
|
|
@@ -155869,6 +156234,56 @@ export type JsmTelemetryIncidentResponderField = {
|
|
|
155869
156234
|
fieldId?: Maybe<Scalars['String']['output']>;
|
|
155870
156235
|
value: Array<JsmTelemetryIncidentResponder>;
|
|
155871
156236
|
};
|
|
156237
|
+
export type JsmTelemetryIncidentServiceMetricDiscoveryAllInput = {
|
|
156238
|
+
limitPerService?: InputMaybe<Scalars['Int']['input']>;
|
|
156239
|
+
maxServices?: InputMaybe<Scalars['Int']['input']>;
|
|
156240
|
+
};
|
|
156241
|
+
export type JsmTelemetryIncidentServiceMetricDiscoveryAllResponse = {
|
|
156242
|
+
__typename?: 'JsmTelemetryIncidentServiceMetricDiscoveryAllResponse';
|
|
156243
|
+
discoveries: Array<JsmTelemetryIncidentServiceMetricDiscoveryResponse>;
|
|
156244
|
+
};
|
|
156245
|
+
export type JsmTelemetryIncidentServiceMetricDiscoveryAllResult = {
|
|
156246
|
+
__typename?: 'JsmTelemetryIncidentServiceMetricDiscoveryAllResult';
|
|
156247
|
+
data?: Maybe<JsmTelemetryIncidentServiceMetricDiscoveryAllResponse>;
|
|
156248
|
+
error?: Maybe<JsmTelemetryDomainError>;
|
|
156249
|
+
};
|
|
156250
|
+
export type JsmTelemetryIncidentServiceMetricDiscoveryInput = {
|
|
156251
|
+
limitPerService?: InputMaybe<Scalars['Int']['input']>;
|
|
156252
|
+
maxServices?: InputMaybe<Scalars['Int']['input']>;
|
|
156253
|
+
provider: JsmTelemetryProviderType;
|
|
156254
|
+
};
|
|
156255
|
+
export type JsmTelemetryIncidentServiceMetricDiscoveryResponse = {
|
|
156256
|
+
__typename?: 'JsmTelemetryIncidentServiceMetricDiscoveryResponse';
|
|
156257
|
+
incidentId: Scalars['ID']['output'];
|
|
156258
|
+
provider: JsmTelemetryProviderType;
|
|
156259
|
+
services: Array<JsmTelemetryIncidentServiceMetricDiscoveryService>;
|
|
156260
|
+
};
|
|
156261
|
+
export type JsmTelemetryIncidentServiceMetricDiscoveryResult = {
|
|
156262
|
+
__typename?: 'JsmTelemetryIncidentServiceMetricDiscoveryResult';
|
|
156263
|
+
data?: Maybe<JsmTelemetryIncidentServiceMetricDiscoveryResponse>;
|
|
156264
|
+
error?: Maybe<JsmTelemetryDomainError>;
|
|
156265
|
+
};
|
|
156266
|
+
export type JsmTelemetryIncidentServiceMetricDiscoverySaveInput = {
|
|
156267
|
+
limitPerService?: InputMaybe<Scalars['Int']['input']>;
|
|
156268
|
+
maxServices?: InputMaybe<Scalars['Int']['input']>;
|
|
156269
|
+
};
|
|
156270
|
+
export type JsmTelemetryIncidentServiceMetricDiscoverySaveResponse = {
|
|
156271
|
+
__typename?: 'JsmTelemetryIncidentServiceMetricDiscoverySaveResponse';
|
|
156272
|
+
discoveries: Array<JsmTelemetryIncidentServiceMetricDiscoveryResponse>;
|
|
156273
|
+
savedCharts: Array<JsmTelemetryChart>;
|
|
156274
|
+
skippedMetrics: Array<JsmTelemetrySkippedDiscoveredMetric>;
|
|
156275
|
+
};
|
|
156276
|
+
export type JsmTelemetryIncidentServiceMetricDiscoverySaveResult = {
|
|
156277
|
+
__typename?: 'JsmTelemetryIncidentServiceMetricDiscoverySaveResult';
|
|
156278
|
+
data?: Maybe<JsmTelemetryIncidentServiceMetricDiscoverySaveResponse>;
|
|
156279
|
+
error?: Maybe<JsmTelemetryDomainError>;
|
|
156280
|
+
};
|
|
156281
|
+
export type JsmTelemetryIncidentServiceMetricDiscoveryService = {
|
|
156282
|
+
__typename?: 'JsmTelemetryIncidentServiceMetricDiscoveryService';
|
|
156283
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
156284
|
+
metrics: Array<JsmTelemetryMetricListing>;
|
|
156285
|
+
name: Scalars['String']['output'];
|
|
156286
|
+
};
|
|
155872
156287
|
export type JsmTelemetryIncidentStatus = {
|
|
155873
156288
|
__typename?: 'JsmTelemetryIncidentStatus';
|
|
155874
156289
|
id?: Maybe<Scalars['String']['output']>;
|
|
@@ -156218,6 +156633,13 @@ export type JsmTelemetryServiceInfo = {
|
|
|
156218
156633
|
apiStatus: Scalars['String']['output'];
|
|
156219
156634
|
serviceName: Scalars['String']['output'];
|
|
156220
156635
|
};
|
|
156636
|
+
export type JsmTelemetrySkippedDiscoveredMetric = {
|
|
156637
|
+
__typename?: 'JsmTelemetrySkippedDiscoveredMetric';
|
|
156638
|
+
metricName: Scalars['String']['output'];
|
|
156639
|
+
reason: Scalars['String']['output'];
|
|
156640
|
+
serviceId?: Maybe<Scalars['ID']['output']>;
|
|
156641
|
+
serviceName: Scalars['String']['output'];
|
|
156642
|
+
};
|
|
156221
156643
|
export declare enum JsmTelemetrySource {
|
|
156222
156644
|
AiRecommended = "AI_RECOMMENDED",
|
|
156223
156645
|
Hypothesis = "HYPOTHESIS",
|
|
@@ -156694,10 +157116,70 @@ export type KitsuneCreateConnectorConfigPayload = Payload & {
|
|
|
156694
157116
|
errors?: Maybe<Array<MutationError>>;
|
|
156695
157117
|
success: Scalars['Boolean']['output'];
|
|
156696
157118
|
};
|
|
157119
|
+
export type KitsuneCreateFieldInput = {
|
|
157120
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
157121
|
+
entityTypes: Array<KitsuneEntityType>;
|
|
157122
|
+
name: Scalars['String']['input'];
|
|
157123
|
+
options?: InputMaybe<Array<KitsuneCreateFieldOptionInput>>;
|
|
157124
|
+
valueType: KitsuneFieldValueType;
|
|
157125
|
+
workspaceAri: Scalars['ID']['input'];
|
|
157126
|
+
};
|
|
156697
157127
|
export type KitsuneCreateFieldOptionInput = {
|
|
156698
157128
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
156699
157129
|
name: Scalars['String']['input'];
|
|
156700
157130
|
};
|
|
157131
|
+
export type KitsuneCreateFieldPayload = Payload & {
|
|
157132
|
+
__typename?: 'KitsuneCreateFieldPayload';
|
|
157133
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157134
|
+
field?: Maybe<KitsuneField>;
|
|
157135
|
+
success: Scalars['Boolean']['output'];
|
|
157136
|
+
};
|
|
157137
|
+
export type KitsuneCreateInsightInput = {
|
|
157138
|
+
content?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
157139
|
+
externalAri?: InputMaybe<Scalars['ID']['input']>;
|
|
157140
|
+
ideaAris?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
157141
|
+
snippets?: InputMaybe<Array<InputMaybe<KitsuneCreateInsightSnippetInput>>>;
|
|
157142
|
+
spaceAri: Scalars['ID']['input'];
|
|
157143
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
157144
|
+
};
|
|
157145
|
+
export type KitsuneCreateInsightPayload = Payload & {
|
|
157146
|
+
__typename?: 'KitsuneCreateInsightPayload';
|
|
157147
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157148
|
+
insight?: Maybe<KitsuneInsight>;
|
|
157149
|
+
success: Scalars['Boolean']['output'];
|
|
157150
|
+
};
|
|
157151
|
+
export type KitsuneCreateInsightSnippetInput = {
|
|
157152
|
+
content: Array<Scalars['String']['input']>;
|
|
157153
|
+
feedbackAri: Scalars['ID']['input'];
|
|
157154
|
+
};
|
|
157155
|
+
export type KitsuneCreateSectionInput = {
|
|
157156
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
157157
|
+
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
157158
|
+
name: Scalars['String']['input'];
|
|
157159
|
+
spaceAri: Scalars['ID']['input'];
|
|
157160
|
+
};
|
|
157161
|
+
export type KitsuneCreateSnippetInput = {
|
|
157162
|
+
content: Array<Scalars['String']['input']>;
|
|
157163
|
+
feedbackAri: Scalars['ID']['input'];
|
|
157164
|
+
insightAri: Scalars['ID']['input'];
|
|
157165
|
+
markId?: InputMaybe<Scalars['ID']['input']>;
|
|
157166
|
+
};
|
|
157167
|
+
export type KitsuneCreateSnippetPayload = Payload & {
|
|
157168
|
+
__typename?: 'KitsuneCreateSnippetPayload';
|
|
157169
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157170
|
+
snippet?: Maybe<KitsuneSnippet>;
|
|
157171
|
+
success: Scalars['Boolean']['output'];
|
|
157172
|
+
};
|
|
157173
|
+
export type KitsuneCreateViewInput = {
|
|
157174
|
+
config?: InputMaybe<KitsuneViewConfigInput>;
|
|
157175
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
157176
|
+
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
157177
|
+
entityType?: InputMaybe<KitsuneEntityType>;
|
|
157178
|
+
name: Scalars['String']['input'];
|
|
157179
|
+
parentAri?: InputMaybe<Scalars['ID']['input']>;
|
|
157180
|
+
spaceAri: Scalars['ID']['input'];
|
|
157181
|
+
type: KitsuneViewType;
|
|
157182
|
+
};
|
|
156701
157183
|
export type KitsuneCustomer = {
|
|
156702
157184
|
__typename?: 'KitsuneCustomer';
|
|
156703
157185
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -156754,6 +157236,24 @@ export type KitsuneDateValue = {
|
|
|
156754
157236
|
_id: Scalars['ID']['output'];
|
|
156755
157237
|
value: Scalars['Date']['output'];
|
|
156756
157238
|
};
|
|
157239
|
+
export type KitsuneDeleteSectionPayload = Payload & {
|
|
157240
|
+
__typename?: 'KitsuneDeleteSectionPayload';
|
|
157241
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157242
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
157243
|
+
success: Scalars['Boolean']['output'];
|
|
157244
|
+
};
|
|
157245
|
+
export type KitsuneDeleteViewPayload = Payload & {
|
|
157246
|
+
__typename?: 'KitsuneDeleteViewPayload';
|
|
157247
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157248
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
157249
|
+
success: Scalars['Boolean']['output'];
|
|
157250
|
+
};
|
|
157251
|
+
export type KitsuneDeletedPayload = Payload & {
|
|
157252
|
+
__typename?: 'KitsuneDeletedPayload';
|
|
157253
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157254
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
157255
|
+
success: Scalars['Boolean']['output'];
|
|
157256
|
+
};
|
|
156757
157257
|
export type KitsuneDeletedRecord = {
|
|
156758
157258
|
__typename?: 'KitsuneDeletedRecord';
|
|
156759
157259
|
id: Scalars['ID']['output'];
|
|
@@ -156957,6 +157457,15 @@ export type KitsuneFilterValueInput = {
|
|
|
156957
157457
|
valueNumber?: InputMaybe<Array<Scalars['Float']['input']>>;
|
|
156958
157458
|
valueText?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
156959
157459
|
};
|
|
157460
|
+
export type KitsuneGenerateInsightSummaryInput = {
|
|
157461
|
+
insightAri: Scalars['ID']['input'];
|
|
157462
|
+
};
|
|
157463
|
+
export type KitsuneGenerateInsightSummaryPayload = Payload & {
|
|
157464
|
+
__typename?: 'KitsuneGenerateInsightSummaryPayload';
|
|
157465
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157466
|
+
insight?: Maybe<KitsuneInsight>;
|
|
157467
|
+
success: Scalars['Boolean']['output'];
|
|
157468
|
+
};
|
|
156960
157469
|
export type KitsuneHighlightFragment = {
|
|
156961
157470
|
__typename?: 'KitsuneHighlightFragment';
|
|
156962
157471
|
text: Scalars['String']['output'];
|
|
@@ -157010,6 +157519,16 @@ export type KitsuneInsightSuggestion = {
|
|
|
157010
157519
|
matchedContent: Scalars['String']['output'];
|
|
157011
157520
|
score?: Maybe<Scalars['Float']['output']>;
|
|
157012
157521
|
};
|
|
157522
|
+
export type KitsuneInviteToSpaceInput = {
|
|
157523
|
+
principalAri: Scalars['ID']['input'];
|
|
157524
|
+
spaceAri: Scalars['ID']['input'];
|
|
157525
|
+
};
|
|
157526
|
+
export type KitsuneInviteToSpacePayload = Payload & {
|
|
157527
|
+
__typename?: 'KitsuneInviteToSpacePayload';
|
|
157528
|
+
accessPrincipal?: Maybe<KitsuneSpaceAccessPrincipal>;
|
|
157529
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157530
|
+
success: Scalars['Boolean']['output'];
|
|
157531
|
+
};
|
|
157013
157532
|
export type KitsuneJob = {
|
|
157014
157533
|
__typename?: 'KitsuneJob';
|
|
157015
157534
|
completedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -157047,10 +157566,39 @@ export declare enum KitsuneJobType {
|
|
|
157047
157566
|
SyncCustomer = "SYNC_CUSTOMER",
|
|
157048
157567
|
UpdateFeedback = "UPDATE_FEEDBACK"
|
|
157049
157568
|
}
|
|
157569
|
+
export type KitsuneLinkInsightsToIdeaInput = {
|
|
157570
|
+
ideaAri: Scalars['ID']['input'];
|
|
157571
|
+
insightAris: Array<Scalars['ID']['input']>;
|
|
157572
|
+
};
|
|
157573
|
+
export type KitsuneLinkInsightsToIdeaPayload = Payload & {
|
|
157574
|
+
__typename?: 'KitsuneLinkInsightsToIdeaPayload';
|
|
157575
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157576
|
+
insights?: Maybe<Array<KitsuneInsight>>;
|
|
157577
|
+
success: Scalars['Boolean']['output'];
|
|
157578
|
+
};
|
|
157050
157579
|
export declare enum KitsuneLogicalOperator {
|
|
157051
157580
|
And = "AND",
|
|
157052
157581
|
Or = "OR"
|
|
157053
157582
|
}
|
|
157583
|
+
export type KitsuneMoveSectionInput = {
|
|
157584
|
+
rank: KitsuneRankInput;
|
|
157585
|
+
};
|
|
157586
|
+
export type KitsuneMoveSectionPayload = Payload & {
|
|
157587
|
+
__typename?: 'KitsuneMoveSectionPayload';
|
|
157588
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157589
|
+
space?: Maybe<KitsuneSpace>;
|
|
157590
|
+
success: Scalars['Boolean']['output'];
|
|
157591
|
+
};
|
|
157592
|
+
export type KitsuneMoveViewInput = {
|
|
157593
|
+
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
157594
|
+
rank?: InputMaybe<KitsuneRankInput>;
|
|
157595
|
+
};
|
|
157596
|
+
export type KitsuneMoveViewPayload = Payload & {
|
|
157597
|
+
__typename?: 'KitsuneMoveViewPayload';
|
|
157598
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157599
|
+
space?: Maybe<KitsuneSpace>;
|
|
157600
|
+
success: Scalars['Boolean']['output'];
|
|
157601
|
+
};
|
|
157054
157602
|
export type KitsuneNode = {
|
|
157055
157603
|
_id: Scalars['ID']['output'];
|
|
157056
157604
|
};
|
|
@@ -157099,6 +157647,15 @@ export type KitsuneRankInput = {
|
|
|
157099
157647
|
after?: InputMaybe<Scalars['ID']['input']>;
|
|
157100
157648
|
before?: InputMaybe<Scalars['ID']['input']>;
|
|
157101
157649
|
};
|
|
157650
|
+
export type KitsuneRefreshInsightCountersInput = {
|
|
157651
|
+
workspaceAri: Scalars['ID']['input'];
|
|
157652
|
+
};
|
|
157653
|
+
export type KitsuneRefreshInsightCountersPayload = Payload & {
|
|
157654
|
+
__typename?: 'KitsuneRefreshInsightCountersPayload';
|
|
157655
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157656
|
+
job?: Maybe<KitsuneJob>;
|
|
157657
|
+
success: Scalars['Boolean']['output'];
|
|
157658
|
+
};
|
|
157102
157659
|
export type KitsuneRemoveConnectorConfigInput = {
|
|
157103
157660
|
workspaceAri: Scalars['ID']['input'];
|
|
157104
157661
|
};
|
|
@@ -157108,6 +157665,28 @@ export type KitsuneRemoveConnectorConfigPayload = Payload & {
|
|
|
157108
157665
|
id?: Maybe<Scalars['ID']['output']>;
|
|
157109
157666
|
success: Scalars['Boolean']['output'];
|
|
157110
157667
|
};
|
|
157668
|
+
export type KitsuneRemoveFieldValueInput = {
|
|
157669
|
+
workspaceAri: Scalars['ID']['input'];
|
|
157670
|
+
};
|
|
157671
|
+
export type KitsuneRemoveFromSpaceInput = {
|
|
157672
|
+
principalAri: Scalars['ID']['input'];
|
|
157673
|
+
spaceAri: Scalars['ID']['input'];
|
|
157674
|
+
};
|
|
157675
|
+
export type KitsuneRemoveFromSpacePayload = Payload & {
|
|
157676
|
+
__typename?: 'KitsuneRemoveFromSpacePayload';
|
|
157677
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157678
|
+
principalAri?: Maybe<Scalars['ID']['output']>;
|
|
157679
|
+
success: Scalars['Boolean']['output'];
|
|
157680
|
+
};
|
|
157681
|
+
export type KitsuneResyncInsightsInput = {
|
|
157682
|
+
workspaceAri: Scalars['ID']['input'];
|
|
157683
|
+
};
|
|
157684
|
+
export type KitsuneResyncInsightsPayload = Payload & {
|
|
157685
|
+
__typename?: 'KitsuneResyncInsightsPayload';
|
|
157686
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157687
|
+
job?: Maybe<KitsuneJob>;
|
|
157688
|
+
success: Scalars['Boolean']['output'];
|
|
157689
|
+
};
|
|
157111
157690
|
export type KitsuneRollupInput = {
|
|
157112
157691
|
externalId?: InputMaybe<Scalars['ID']['input']>;
|
|
157113
157692
|
ideaAri?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -157160,6 +157739,12 @@ export type KitsuneSectionViewsArgs = {
|
|
|
157160
157739
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
157161
157740
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
157162
157741
|
};
|
|
157742
|
+
export type KitsuneSectionPayload = Payload & {
|
|
157743
|
+
__typename?: 'KitsuneSectionPayload';
|
|
157744
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157745
|
+
section?: Maybe<KitsuneSection>;
|
|
157746
|
+
success: Scalars['Boolean']['output'];
|
|
157747
|
+
};
|
|
157163
157748
|
export type KitsuneSnippet = Node & {
|
|
157164
157749
|
__typename?: 'KitsuneSnippet';
|
|
157165
157750
|
aupViolationCategory?: Maybe<Scalars['String']['output']>;
|
|
@@ -157383,6 +157968,7 @@ export type KitsuneSourceInputWeb = {
|
|
|
157383
157968
|
export type KitsuneSpace = Node & {
|
|
157384
157969
|
__typename?: 'KitsuneSpace';
|
|
157385
157970
|
accessLevel: KitsuneSpaceAccessLevel;
|
|
157971
|
+
accessPrincipals: KitsuneSpaceAccessPrincipalConnection;
|
|
157386
157972
|
description?: Maybe<Scalars['String']['output']>;
|
|
157387
157973
|
feedbacks: KitsuneFeedbackConnection;
|
|
157388
157974
|
fields: KitsuneFieldConnection;
|
|
@@ -157391,6 +157977,12 @@ export type KitsuneSpace = Node & {
|
|
|
157391
157977
|
sourceCategories: KitsuneSourceCategoryConnection;
|
|
157392
157978
|
viewTree: KitsuneViewTreeConnection;
|
|
157393
157979
|
};
|
|
157980
|
+
export type KitsuneSpaceAccessPrincipalsArgs = {
|
|
157981
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
157982
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
157983
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
157984
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
157985
|
+
};
|
|
157394
157986
|
export type KitsuneSpaceFeedbacksArgs = {
|
|
157395
157987
|
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
157396
157988
|
};
|
|
@@ -157418,6 +158010,21 @@ export declare enum KitsuneSpaceAccessLevel {
|
|
|
157418
158010
|
Open = "OPEN",
|
|
157419
158011
|
Private = "PRIVATE"
|
|
157420
158012
|
}
|
|
158013
|
+
export type KitsuneSpaceAccessPrincipal = KitsuneSpaceGroupAccessPrincipal | KitsuneSpaceUserAccessPrincipal;
|
|
158014
|
+
export type KitsuneSpaceAccessPrincipalConnection = KitsuneConnection & {
|
|
158015
|
+
__typename?: 'KitsuneSpaceAccessPrincipalConnection';
|
|
158016
|
+
edges: Array<KitsuneSpaceAccessPrincipalEdge>;
|
|
158017
|
+
pageInfo: PageInfo;
|
|
158018
|
+
};
|
|
158019
|
+
export type KitsuneSpaceAccessPrincipalEdge = KitsuneEdge & {
|
|
158020
|
+
__typename?: 'KitsuneSpaceAccessPrincipalEdge';
|
|
158021
|
+
cursor: Scalars['String']['output'];
|
|
158022
|
+
node?: Maybe<KitsuneSpaceAccessPrincipal>;
|
|
158023
|
+
};
|
|
158024
|
+
export declare enum KitsuneSpaceAccessRole {
|
|
158025
|
+
Admin = "ADMIN",
|
|
158026
|
+
Member = "MEMBER"
|
|
158027
|
+
}
|
|
157421
158028
|
export type KitsuneSpaceConnection = KitsuneConnection & {
|
|
157422
158029
|
__typename?: 'KitsuneSpaceConnection';
|
|
157423
158030
|
edges: Array<KitsuneSpaceEdge>;
|
|
@@ -157428,6 +158035,18 @@ export type KitsuneSpaceEdge = KitsuneEdge & {
|
|
|
157428
158035
|
cursor: Scalars['String']['output'];
|
|
157429
158036
|
node?: Maybe<KitsuneSpace>;
|
|
157430
158037
|
};
|
|
158038
|
+
export type KitsuneSpaceGroupAccessPrincipal = {
|
|
158039
|
+
__typename?: 'KitsuneSpaceGroupAccessPrincipal';
|
|
158040
|
+
group?: Maybe<IdentityGroup>;
|
|
158041
|
+
principalId: Scalars['ID']['output'];
|
|
158042
|
+
role: KitsuneSpaceAccessRole;
|
|
158043
|
+
};
|
|
158044
|
+
export type KitsuneSpaceUserAccessPrincipal = {
|
|
158045
|
+
__typename?: 'KitsuneSpaceUserAccessPrincipal';
|
|
158046
|
+
principalId: Scalars['ID']['output'];
|
|
158047
|
+
role: KitsuneSpaceAccessRole;
|
|
158048
|
+
user?: Maybe<User>;
|
|
158049
|
+
};
|
|
157431
158050
|
export type KitsuneSummary = {
|
|
157432
158051
|
__typename?: 'KitsuneSummary';
|
|
157433
158052
|
content?: Maybe<Scalars['KitsuneADF']['output']>;
|
|
@@ -157475,6 +158094,53 @@ export type KitsuneUpdateConnectorConfigPayload = Payload & {
|
|
|
157475
158094
|
errors?: Maybe<Array<MutationError>>;
|
|
157476
158095
|
success: Scalars['Boolean']['output'];
|
|
157477
158096
|
};
|
|
158097
|
+
export type KitsuneUpdateFieldInput = {
|
|
158098
|
+
aiEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
158099
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
158100
|
+
entityTypes?: InputMaybe<Array<KitsuneEntityType>>;
|
|
158101
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
158102
|
+
options?: InputMaybe<KitsuneFieldOptionsInput>;
|
|
158103
|
+
};
|
|
158104
|
+
export type KitsuneUpdateFieldPayload = Payload & {
|
|
158105
|
+
__typename?: 'KitsuneUpdateFieldPayload';
|
|
158106
|
+
errors?: Maybe<Array<MutationError>>;
|
|
158107
|
+
field?: Maybe<KitsuneField>;
|
|
158108
|
+
success: Scalars['Boolean']['output'];
|
|
158109
|
+
};
|
|
158110
|
+
export type KitsuneUpdateInsightInput = {
|
|
158111
|
+
content?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
158112
|
+
externalAri?: InputMaybe<Scalars['ID']['input']>;
|
|
158113
|
+
ideaAris?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
158114
|
+
summaryContent?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
158115
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
158116
|
+
};
|
|
158117
|
+
export type KitsuneUpdateInsightPayload = Payload & {
|
|
158118
|
+
__typename?: 'KitsuneUpdateInsightPayload';
|
|
158119
|
+
errors?: Maybe<Array<MutationError>>;
|
|
158120
|
+
insight?: Maybe<KitsuneInsight>;
|
|
158121
|
+
success: Scalars['Boolean']['output'];
|
|
158122
|
+
};
|
|
158123
|
+
export type KitsuneUpdateSectionInput = {
|
|
158124
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
158125
|
+
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
158126
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
158127
|
+
};
|
|
158128
|
+
export type KitsuneUpdateSnippetInput = {
|
|
158129
|
+
content?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
158130
|
+
insightAri?: InputMaybe<Scalars['ID']['input']>;
|
|
158131
|
+
};
|
|
158132
|
+
export type KitsuneUpdateSnippetPayload = Payload & {
|
|
158133
|
+
__typename?: 'KitsuneUpdateSnippetPayload';
|
|
158134
|
+
errors?: Maybe<Array<MutationError>>;
|
|
158135
|
+
snippet?: Maybe<KitsuneSnippet>;
|
|
158136
|
+
success: Scalars['Boolean']['output'];
|
|
158137
|
+
};
|
|
158138
|
+
export type KitsuneUpdateViewInput = {
|
|
158139
|
+
config?: InputMaybe<KitsuneViewConfigInput>;
|
|
158140
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
158141
|
+
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
158142
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
158143
|
+
};
|
|
157478
158144
|
export type KitsuneUser = {
|
|
157479
158145
|
__typename?: 'KitsuneUser';
|
|
157480
158146
|
user?: Maybe<User>;
|
|
@@ -157516,6 +158182,12 @@ export type KitsuneViewEdge = KitsuneEdge & {
|
|
|
157516
158182
|
cursor: Scalars['String']['output'];
|
|
157517
158183
|
node?: Maybe<KitsuneView>;
|
|
157518
158184
|
};
|
|
158185
|
+
export type KitsuneViewPayload = Payload & {
|
|
158186
|
+
__typename?: 'KitsuneViewPayload';
|
|
158187
|
+
errors?: Maybe<Array<MutationError>>;
|
|
158188
|
+
success: Scalars['Boolean']['output'];
|
|
158189
|
+
view?: Maybe<KitsuneView>;
|
|
158190
|
+
};
|
|
157519
158191
|
export type KitsuneViewTree = KitsuneSection | KitsuneView;
|
|
157520
158192
|
export type KitsuneViewTreeConnection = KitsuneConnection & {
|
|
157521
158193
|
__typename?: 'KitsuneViewTreeConnection';
|
|
@@ -159032,6 +159704,7 @@ export type KnownUser = Person & {
|
|
|
159032
159704
|
accountType?: Maybe<Scalars['String']['output']>;
|
|
159033
159705
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
159034
159706
|
email?: Maybe<Scalars['String']['output']>;
|
|
159707
|
+
jobTitle?: Maybe<Scalars['String']['output']>;
|
|
159035
159708
|
links?: Maybe<LinksContextSelfBase>;
|
|
159036
159709
|
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
159037
159710
|
permissionType?: Maybe<SitePermissionType>;
|
|
@@ -159703,6 +160376,14 @@ export type LoomMeetingEdge = {
|
|
|
159703
160376
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
159704
160377
|
node?: Maybe<LoomMeeting>;
|
|
159705
160378
|
};
|
|
160379
|
+
export type LoomMeetingJiraSuggestion = {
|
|
160380
|
+
__typename?: 'LoomMeetingJiraSuggestion';
|
|
160381
|
+
channelConversationId?: Maybe<Scalars['String']['output']>;
|
|
160382
|
+
fieldsCount?: Maybe<Scalars['Int']['output']>;
|
|
160383
|
+
generatedAt?: Maybe<Scalars['String']['output']>;
|
|
160384
|
+
issuesCount?: Maybe<Scalars['Int']['output']>;
|
|
160385
|
+
jiraProjectAri?: Maybe<Scalars['ID']['output']>;
|
|
160386
|
+
};
|
|
159706
160387
|
export type LoomMeetingOneClickAction = {
|
|
159707
160388
|
__typename?: 'LoomMeetingOneClickAction';
|
|
159708
160389
|
action?: Maybe<Scalars['String']['output']>;
|
|
@@ -160158,161 +160839,6 @@ export type LoopCommentEdge = {
|
|
|
160158
160839
|
cursor: Scalars['String']['output'];
|
|
160159
160840
|
node?: Maybe<LoopComment>;
|
|
160160
160841
|
};
|
|
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
160842
|
export type M360ServiceHelloWorldPayload = {
|
|
160317
160843
|
__typename?: 'M360ServiceHelloWorldPayload';
|
|
160318
160844
|
greeting?: Maybe<Scalars['String']['output']>;
|
|
@@ -160654,6 +161180,7 @@ export type MarketplaceConsoleAppInput = {
|
|
|
160654
161180
|
export type MarketplaceConsoleAppPublishWizardAppSecurityPrefillOptionsResponse = {
|
|
160655
161181
|
__typename?: 'MarketplaceConsoleAppPublishWizardAppSecurityPrefillOptionsResponse';
|
|
160656
161182
|
eligibleSources: Array<MarketplaceConsoleAppPublishWizardPrefillSourceApp>;
|
|
161183
|
+
prefillCase: MarketplaceConsoleAppPublishWizardPrefillCase;
|
|
160657
161184
|
selfPriorAppKey?: Maybe<Scalars['String']['output']>;
|
|
160658
161185
|
};
|
|
160659
161186
|
export type MarketplaceConsoleAppPublishWizardCheckResult = {
|
|
@@ -160747,6 +161274,11 @@ export declare enum MarketplaceConsoleAppPublishWizardFillStrategy {
|
|
|
160747
161274
|
Partial = "PARTIAL",
|
|
160748
161275
|
PreFilled = "PRE_FILLED"
|
|
160749
161276
|
}
|
|
161277
|
+
export declare enum MarketplaceConsoleAppPublishWizardPrefillCase {
|
|
161278
|
+
CopyFromSibling = "COPY_FROM_SIBLING",
|
|
161279
|
+
Fresh = "FRESH",
|
|
161280
|
+
SelfPrior = "SELF_PRIOR"
|
|
161281
|
+
}
|
|
160750
161282
|
export type MarketplaceConsoleAppPublishWizardPrefillSourceApp = {
|
|
160751
161283
|
__typename?: 'MarketplaceConsoleAppPublishWizardPrefillSourceApp';
|
|
160752
161284
|
appKey: Scalars['String']['output'];
|
|
@@ -160757,6 +161289,22 @@ export declare enum MarketplaceConsoleAppPublishWizardPrefillSourceOrigin {
|
|
|
160757
161289
|
Donut = "DONUT",
|
|
160758
161290
|
Hermes = "HERMES"
|
|
160759
161291
|
}
|
|
161292
|
+
export declare enum MarketplaceConsoleAppPublishWizardPublishEntryDestination {
|
|
161293
|
+
Prefill = "PREFILL",
|
|
161294
|
+
Unavailable = "UNAVAILABLE",
|
|
161295
|
+
Wizard = "WIZARD",
|
|
161296
|
+
Workflow = "WORKFLOW"
|
|
161297
|
+
}
|
|
161298
|
+
export type MarketplaceConsoleAppPublishWizardPublishEntryResponse = {
|
|
161299
|
+
__typename?: 'MarketplaceConsoleAppPublishWizardPublishEntryResponse';
|
|
161300
|
+
currentScreen?: Maybe<MarketplaceConsoleAppPublishWizardScreenId>;
|
|
161301
|
+
currentWorkflowId?: Maybe<Scalars['ID']['output']>;
|
|
161302
|
+
destination: MarketplaceConsoleAppPublishWizardPublishEntryDestination;
|
|
161303
|
+
prefillOptions?: Maybe<MarketplaceConsoleAppPublishWizardAppSecurityPrefillOptionsResponse>;
|
|
161304
|
+
sessionStatus?: Maybe<MarketplaceConsoleAppPublishWizardSessionStatus>;
|
|
161305
|
+
submissionId?: Maybe<Scalars['ID']['output']>;
|
|
161306
|
+
unavailableReasons: Array<Scalars['String']['output']>;
|
|
161307
|
+
};
|
|
160760
161308
|
export type MarketplaceConsoleAppPublishWizardReadinessResponse = {
|
|
160761
161309
|
__typename?: 'MarketplaceConsoleAppPublishWizardReadinessResponse';
|
|
160762
161310
|
checks: Array<MarketplaceConsoleAppPublishWizardCheckResult>;
|
|
@@ -162462,6 +163010,7 @@ export type MarketplaceConsoleQueryApi = {
|
|
|
162462
163010
|
__typename?: 'MarketplaceConsoleQueryApi';
|
|
162463
163011
|
appPrivateListings?: Maybe<MarketplaceConsolePrivateListingsTokens>;
|
|
162464
163012
|
appPublishWizardAppSecurityPrefillOptions?: Maybe<MarketplaceConsoleAppPublishWizardAppSecurityPrefillOptionsResponse>;
|
|
163013
|
+
appPublishWizardPublishEntry?: Maybe<MarketplaceConsoleAppPublishWizardPublishEntryResponse>;
|
|
162465
163014
|
appPublishWizardReadiness?: Maybe<MarketplaceConsoleAppPublishWizardReadinessResponse>;
|
|
162466
163015
|
appPublishWizardSession?: Maybe<MarketplaceConsoleAppPublishWizardSessionResponse>;
|
|
162467
163016
|
appPublishWizardWorkflowStatus?: Maybe<MarketplaceConsoleAppPublishWizardWorkflowStatusResponse>;
|
|
@@ -162507,6 +163056,12 @@ export type MarketplaceConsoleQueryApiAppPublishWizardAppSecurityPrefillOptionsA
|
|
|
162507
163056
|
buildNumber: Scalars['String']['input'];
|
|
162508
163057
|
partnerId: Scalars['String']['input'];
|
|
162509
163058
|
};
|
|
163059
|
+
export type MarketplaceConsoleQueryApiAppPublishWizardPublishEntryArgs = {
|
|
163060
|
+
appKey: Scalars['String']['input'];
|
|
163061
|
+
appSoftwareId: Scalars['ID']['input'];
|
|
163062
|
+
buildNumber: Scalars['String']['input'];
|
|
163063
|
+
partnerId: Scalars['String']['input'];
|
|
163064
|
+
};
|
|
162510
163065
|
export type MarketplaceConsoleQueryApiAppPublishWizardReadinessArgs = {
|
|
162511
163066
|
appSoftwareId: Scalars['ID']['input'];
|
|
162512
163067
|
submissionId: Scalars['ID']['input'];
|
|
@@ -162648,6 +163203,7 @@ export type MarketplaceConsoleStartAppPublishWizardInput = {
|
|
|
162648
163203
|
appSecuritySourceAppKey?: InputMaybe<Scalars['String']['input']>;
|
|
162649
163204
|
buildNumber: Scalars['String']['input'];
|
|
162650
163205
|
partnerId: Scalars['String']['input'];
|
|
163206
|
+
prefillFromPriorSubmission?: InputMaybe<Scalars['Boolean']['input']>;
|
|
162651
163207
|
};
|
|
162652
163208
|
export type MarketplaceConsoleTagsContent = {
|
|
162653
163209
|
__typename?: 'MarketplaceConsoleTagsContent';
|
|
@@ -164679,6 +165235,114 @@ export type MarketplaceStoreSearchFilter = {
|
|
|
164679
165235
|
key: Scalars['String']['output'];
|
|
164680
165236
|
value: Array<Scalars['String']['output']>;
|
|
164681
165237
|
};
|
|
165238
|
+
export type MarketplaceStoreSearchHitDistribution = {
|
|
165239
|
+
__typename?: 'MarketplaceStoreSearchHitDistribution';
|
|
165240
|
+
activeInstalls?: Maybe<Scalars['Int']['output']>;
|
|
165241
|
+
activeInstallsPerHosting?: Maybe<MarketplaceStoreSearchHitDistributionPerHosting>;
|
|
165242
|
+
bundled?: Maybe<Scalars['Boolean']['output']>;
|
|
165243
|
+
deltaInstalls?: Maybe<Scalars['Int']['output']>;
|
|
165244
|
+
downloads?: Maybe<Scalars['Int']['output']>;
|
|
165245
|
+
};
|
|
165246
|
+
export type MarketplaceStoreSearchHitDistributionPerHosting = {
|
|
165247
|
+
__typename?: 'MarketplaceStoreSearchHitDistributionPerHosting';
|
|
165248
|
+
cloud?: Maybe<Scalars['Int']['output']>;
|
|
165249
|
+
dataCenter?: Maybe<Scalars['Int']['output']>;
|
|
165250
|
+
server?: Maybe<Scalars['Int']['output']>;
|
|
165251
|
+
};
|
|
165252
|
+
export type MarketplaceStoreSearchHitGovernance = {
|
|
165253
|
+
__typename?: 'MarketplaceStoreSearchHitGovernance';
|
|
165254
|
+
partnerTrustCenter?: Maybe<Scalars['String']['output']>;
|
|
165255
|
+
standardLegalAgreement?: Maybe<Scalars['Boolean']['output']>;
|
|
165256
|
+
supportsDataResidency?: Maybe<Scalars['String']['output']>;
|
|
165257
|
+
};
|
|
165258
|
+
export type MarketplaceStoreSearchHitLogo = {
|
|
165259
|
+
__typename?: 'MarketplaceStoreSearchHitLogo';
|
|
165260
|
+
highRes?: Maybe<Scalars['String']['output']>;
|
|
165261
|
+
image: Scalars['String']['output'];
|
|
165262
|
+
smallHighResImage?: Maybe<Scalars['String']['output']>;
|
|
165263
|
+
smallImage?: Maybe<Scalars['String']['output']>;
|
|
165264
|
+
};
|
|
165265
|
+
export type MarketplaceStoreSearchHitObject = {
|
|
165266
|
+
__typename?: 'MarketplaceStoreSearchHitObject';
|
|
165267
|
+
addonKey: Scalars['String']['output'];
|
|
165268
|
+
compliance?: Maybe<Array<Scalars['String']['output']>>;
|
|
165269
|
+
deployments?: Maybe<Array<Scalars['String']['output']>>;
|
|
165270
|
+
distribution?: Maybe<MarketplaceStoreSearchHitDistribution>;
|
|
165271
|
+
documentType?: Maybe<Scalars['String']['output']>;
|
|
165272
|
+
freeStarterTierStatus?: Maybe<Scalars['String']['output']>;
|
|
165273
|
+
governance?: Maybe<MarketplaceStoreSearchHitGovernance>;
|
|
165274
|
+
id: Scalars['ID']['output'];
|
|
165275
|
+
logo?: Maybe<MarketplaceStoreSearchHitLogo>;
|
|
165276
|
+
marketingLabels?: Maybe<Array<Scalars['String']['output']>>;
|
|
165277
|
+
name: Scalars['String']['output'];
|
|
165278
|
+
productId?: Maybe<Scalars['String']['output']>;
|
|
165279
|
+
ratings?: Maybe<MarketplaceStoreSearchHitRatings>;
|
|
165280
|
+
releaseDate?: Maybe<Scalars['String']['output']>;
|
|
165281
|
+
securityProgram?: Maybe<MarketplaceStoreSearchHitSecurityProgram>;
|
|
165282
|
+
tagLine?: Maybe<Scalars['String']['output']>;
|
|
165283
|
+
tags: MarketplaceStoreSearchHitTags;
|
|
165284
|
+
trustProgram?: Maybe<MarketplaceStoreSearchHitTrustProgram>;
|
|
165285
|
+
vendor: MarketplaceStoreSearchHitVendor;
|
|
165286
|
+
version?: Maybe<MarketplaceStoreSearchHitVersion>;
|
|
165287
|
+
};
|
|
165288
|
+
export type MarketplaceStoreSearchHitPartnerTier = {
|
|
165289
|
+
__typename?: 'MarketplaceStoreSearchHitPartnerTier';
|
|
165290
|
+
type: Scalars['String']['output'];
|
|
165291
|
+
};
|
|
165292
|
+
export type MarketplaceStoreSearchHitProgramStatus = {
|
|
165293
|
+
__typename?: 'MarketplaceStoreSearchHitProgramStatus';
|
|
165294
|
+
status: Scalars['String']['output'];
|
|
165295
|
+
};
|
|
165296
|
+
export type MarketplaceStoreSearchHitRatings = {
|
|
165297
|
+
__typename?: 'MarketplaceStoreSearchHitRatings';
|
|
165298
|
+
avgStars: Scalars['Float']['output'];
|
|
165299
|
+
avgStars5PerHosting?: Maybe<MarketplaceStoreSearchHitRatingsPerHosting>;
|
|
165300
|
+
numRatings: Scalars['Int']['output'];
|
|
165301
|
+
numberOfReviewsPerHosting?: Maybe<MarketplaceStoreSearchHitRatingsPerHosting>;
|
|
165302
|
+
ratingsScore: Scalars['Float']['output'];
|
|
165303
|
+
ratingsScore5PerHosting?: Maybe<MarketplaceStoreSearchHitRatingsPerHosting>;
|
|
165304
|
+
};
|
|
165305
|
+
export type MarketplaceStoreSearchHitRatingsPerHosting = {
|
|
165306
|
+
__typename?: 'MarketplaceStoreSearchHitRatingsPerHosting';
|
|
165307
|
+
cloud?: Maybe<Scalars['Float']['output']>;
|
|
165308
|
+
dataCenter?: Maybe<Scalars['Float']['output']>;
|
|
165309
|
+
server?: Maybe<Scalars['Float']['output']>;
|
|
165310
|
+
};
|
|
165311
|
+
export type MarketplaceStoreSearchHitSecurityProgram = {
|
|
165312
|
+
__typename?: 'MarketplaceStoreSearchHitSecurityProgram';
|
|
165313
|
+
bugBounty?: Maybe<MarketplaceStoreSearchHitSecurityProgramHostingStatus>;
|
|
165314
|
+
penetrationTesting?: Maybe<MarketplaceStoreSearchHitSecurityProgramHostingStatus>;
|
|
165315
|
+
};
|
|
165316
|
+
export type MarketplaceStoreSearchHitSecurityProgramHostingStatus = {
|
|
165317
|
+
__typename?: 'MarketplaceStoreSearchHitSecurityProgramHostingStatus';
|
|
165318
|
+
cloud?: Maybe<MarketplaceStoreSearchHitProgramStatus>;
|
|
165319
|
+
dataCenter?: Maybe<MarketplaceStoreSearchHitProgramStatus>;
|
|
165320
|
+
server?: Maybe<MarketplaceStoreSearchHitProgramStatus>;
|
|
165321
|
+
};
|
|
165322
|
+
export type MarketplaceStoreSearchHitTags = {
|
|
165323
|
+
__typename?: 'MarketplaceStoreSearchHitTags';
|
|
165324
|
+
categories: Array<Scalars['String']['output']>;
|
|
165325
|
+
keywords?: Maybe<Array<Scalars['String']['output']>>;
|
|
165326
|
+
marketingLabels?: Maybe<Array<Scalars['String']['output']>>;
|
|
165327
|
+
};
|
|
165328
|
+
export type MarketplaceStoreSearchHitTrustProgram = {
|
|
165329
|
+
__typename?: 'MarketplaceStoreSearchHitTrustProgram';
|
|
165330
|
+
architectedForAtlassian?: Maybe<Scalars['Boolean']['output']>;
|
|
165331
|
+
cloudFortified?: Maybe<MarketplaceStoreSearchHitProgramStatus>;
|
|
165332
|
+
runsOnAtlassian?: Maybe<Scalars['Boolean']['output']>;
|
|
165333
|
+
};
|
|
165334
|
+
export type MarketplaceStoreSearchHitVendor = {
|
|
165335
|
+
__typename?: 'MarketplaceStoreSearchHitVendor';
|
|
165336
|
+
name: Scalars['String']['output'];
|
|
165337
|
+
partnerTier?: Maybe<MarketplaceStoreSearchHitPartnerTier>;
|
|
165338
|
+
vendorId: Scalars['ID']['output'];
|
|
165339
|
+
};
|
|
165340
|
+
export type MarketplaceStoreSearchHitVersion = {
|
|
165341
|
+
__typename?: 'MarketplaceStoreSearchHitVersion';
|
|
165342
|
+
billingModel: Scalars['String']['output'];
|
|
165343
|
+
paid?: Maybe<Scalars['Boolean']['output']>;
|
|
165344
|
+
standardLegalAgreement?: Maybe<Scalars['Boolean']['output']>;
|
|
165345
|
+
};
|
|
164682
165346
|
export type MarketplaceStoreSearchMetadata = {
|
|
164683
165347
|
__typename?: 'MarketplaceStoreSearchMetadata';
|
|
164684
165348
|
filters: Array<MarketplaceStoreSearchFilter>;
|
|
@@ -164717,6 +165381,18 @@ export type MarketplaceStoreSideNavigationItem = {
|
|
|
164717
165381
|
name: Scalars['String']['output'];
|
|
164718
165382
|
path: Scalars['String']['output'];
|
|
164719
165383
|
};
|
|
165384
|
+
export type MarketplaceStoreSimilarObjectsInput = {
|
|
165385
|
+
complianceBoundary?: InputMaybe<MarketplaceStoreCloudComplianceBoundary>;
|
|
165386
|
+
count?: InputMaybe<Scalars['Int']['input']>;
|
|
165387
|
+
productId?: InputMaybe<Scalars['String']['input']>;
|
|
165388
|
+
surface?: InputMaybe<MarketplaceStorePersonalisationTargetSurface>;
|
|
165389
|
+
tenantId?: InputMaybe<Scalars['String']['input']>;
|
|
165390
|
+
};
|
|
165391
|
+
export type MarketplaceStoreSimilarObjectsResponse = {
|
|
165392
|
+
__typename?: 'MarketplaceStoreSimilarObjectsResponse';
|
|
165393
|
+
objects: Array<MarketplaceStoreSearchHitObject>;
|
|
165394
|
+
resultsCount: Scalars['Int']['output'];
|
|
165395
|
+
};
|
|
164720
165396
|
export type MarketplaceStoreSiteDetailsInput = {
|
|
164721
165397
|
cloudId: Scalars['String']['input'];
|
|
164722
165398
|
product: MarketplaceStoreSiteProduct;
|
|
@@ -165513,9 +166189,9 @@ export type MercuryAskEdge = {
|
|
|
165513
166189
|
node?: Maybe<MercuryAskResult>;
|
|
165514
166190
|
};
|
|
165515
166191
|
export declare enum MercuryAskEventType {
|
|
166192
|
+
AcceptProposedDate = "ACCEPT_PROPOSED_DATE",
|
|
165516
166193
|
Create = "CREATE",
|
|
165517
|
-
|
|
165518
|
-
DeleteLink = "DELETE_LINK",
|
|
166194
|
+
RejectProposedDate = "REJECT_PROPOSED_DATE",
|
|
165519
166195
|
Update = "UPDATE"
|
|
165520
166196
|
}
|
|
165521
166197
|
export declare enum MercuryAskField {
|
|
@@ -165536,6 +166212,8 @@ export declare enum MercuryAskField {
|
|
|
165536
166212
|
Name = "NAME",
|
|
165537
166213
|
Owner = "OWNER",
|
|
165538
166214
|
Priority = "PRIORITY",
|
|
166215
|
+
ProposedDate = "PROPOSED_DATE",
|
|
166216
|
+
ProposedDateType = "PROPOSED_DATE_TYPE",
|
|
165539
166217
|
ReceivingOrganization = "RECEIVING_ORGANIZATION",
|
|
165540
166218
|
ReceivingTeam = "RECEIVING_TEAM",
|
|
165541
166219
|
ReceivingUser = "RECEIVING_USER",
|
|
@@ -165543,7 +166221,8 @@ export declare enum MercuryAskField {
|
|
|
165543
166221
|
SubmittingOrganization = "SUBMITTING_ORGANIZATION",
|
|
165544
166222
|
SubmittingTeam = "SUBMITTING_TEAM",
|
|
165545
166223
|
SubmittingUser = "SUBMITTING_USER",
|
|
165546
|
-
TargetDate = "TARGET_DATE"
|
|
166224
|
+
TargetDate = "TARGET_DATE",
|
|
166225
|
+
TargetDateType = "TARGET_DATE_TYPE"
|
|
165547
166226
|
}
|
|
165548
166227
|
export type MercuryAskLink = Node & {
|
|
165549
166228
|
__typename?: 'MercuryAskLink';
|
|
@@ -166791,7 +167470,12 @@ export type MercuryCreateFocusAreaInput = {
|
|
|
166791
167470
|
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
166792
167471
|
focusAreaTypeId: Scalars['ID']['input'];
|
|
166793
167472
|
name: Scalars['String']['input'];
|
|
167473
|
+
owner?: InputMaybe<Scalars['String']['input']>;
|
|
166794
167474
|
parentFocusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
167475
|
+
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
167476
|
+
startDateType?: InputMaybe<MercuryFocusAreaStartDateType>;
|
|
167477
|
+
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
167478
|
+
targetDateType?: InputMaybe<MercuryTargetDateType>;
|
|
166795
167479
|
};
|
|
166796
167480
|
export type MercuryCreateFocusAreaPayload = Payload & {
|
|
166797
167481
|
__typename?: 'MercuryCreateFocusAreaPayload';
|
|
@@ -166814,6 +167498,18 @@ export type MercuryCreateFocusAreaStatusUpdatePayload = Payload & {
|
|
|
166814
167498
|
errors?: Maybe<Array<MutationError>>;
|
|
166815
167499
|
success: Scalars['Boolean']['output'];
|
|
166816
167500
|
};
|
|
167501
|
+
export type MercuryCreateFocusAreasFromOnboardingInput = {
|
|
167502
|
+
cloudId: Scalars['ID']['input'];
|
|
167503
|
+
dryRun?: InputMaybe<Scalars['Boolean']['input']>;
|
|
167504
|
+
model: MercuryOnboardingModelInput;
|
|
167505
|
+
};
|
|
167506
|
+
export type MercuryCreateFocusAreasFromOnboardingPayload = Payload & {
|
|
167507
|
+
__typename?: 'MercuryCreateFocusAreasFromOnboardingPayload';
|
|
167508
|
+
dryRun?: Maybe<Scalars['Boolean']['output']>;
|
|
167509
|
+
errors?: Maybe<Array<MutationError>>;
|
|
167510
|
+
success: Scalars['Boolean']['output'];
|
|
167511
|
+
valid?: Maybe<Scalars['Boolean']['output']>;
|
|
167512
|
+
};
|
|
166817
167513
|
export type MercuryCreateInvestmentCategoryInput = {
|
|
166818
167514
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
166819
167515
|
name: Scalars['String']['input'];
|
|
@@ -167115,6 +167811,13 @@ export type MercuryCustomSelectFieldOptionInput = {
|
|
|
167115
167811
|
settings?: InputMaybe<Array<MercuryCustomFieldSelectionOptionSettingInput>>;
|
|
167116
167812
|
value: Scalars['String']['input'];
|
|
167117
167813
|
};
|
|
167814
|
+
export type MercuryDataIntegrationsMutationApi = {
|
|
167815
|
+
__typename?: 'MercuryDataIntegrationsMutationApi';
|
|
167816
|
+
createFocusAreasFromOnboarding?: Maybe<MercuryCreateFocusAreasFromOnboardingPayload>;
|
|
167817
|
+
};
|
|
167818
|
+
export type MercuryDataIntegrationsMutationApiCreateFocusAreasFromOnboardingArgs = {
|
|
167819
|
+
input: MercuryCreateFocusAreasFromOnboardingInput;
|
|
167820
|
+
};
|
|
167118
167821
|
export type MercuryDataIntegrationsQueryApi = {
|
|
167119
167822
|
__typename?: 'MercuryDataIntegrationsQueryApi';
|
|
167120
167823
|
importJob?: Maybe<MercuryImportJob>;
|
|
@@ -167747,6 +168450,7 @@ export type MercuryExternalUser = {
|
|
|
167747
168450
|
export type MercuryFinancialVersion = Node & {
|
|
167748
168451
|
__typename?: 'MercuryFinancialVersion';
|
|
167749
168452
|
id: Scalars['ID']['output'];
|
|
168453
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
167750
168454
|
type: MercuryFinancialVersionType;
|
|
167751
168455
|
};
|
|
167752
168456
|
export type MercuryFinancialVersionBenefitDimensionSummary = MercuryFinancialVersionBenefitTypeSummary;
|
|
@@ -167846,6 +168550,23 @@ export type MercuryFiscalCalendarConfigurationSort = {
|
|
|
167846
168550
|
export declare enum MercuryFiscalCalendarConfigurationSortField {
|
|
167847
168551
|
CreatedDate = "CREATED_DATE"
|
|
167848
168552
|
}
|
|
168553
|
+
export type MercuryFiscalYearPlanRealignmentExecutionError = {
|
|
168554
|
+
__typename?: 'MercuryFiscalYearPlanRealignmentExecutionError';
|
|
168555
|
+
field: Scalars['String']['output'];
|
|
168556
|
+
id: Scalars['ID']['output'];
|
|
168557
|
+
message: Scalars['String']['output'];
|
|
168558
|
+
};
|
|
168559
|
+
export type MercuryFiscalYearPlanRealignmentJob = {
|
|
168560
|
+
__typename?: 'MercuryFiscalYearPlanRealignmentJob';
|
|
168561
|
+
executionErrors?: Maybe<Array<MercuryFiscalYearPlanRealignmentExecutionError>>;
|
|
168562
|
+
id: Scalars['ID']['output'];
|
|
168563
|
+
status: MercuryFiscalYearPlanRealignmentJobStatus;
|
|
168564
|
+
};
|
|
168565
|
+
export declare enum MercuryFiscalYearPlanRealignmentJobStatus {
|
|
168566
|
+
Failed = "FAILED",
|
|
168567
|
+
InProgress = "IN_PROGRESS",
|
|
168568
|
+
Succeeded = "SUCCEEDED"
|
|
168569
|
+
}
|
|
167849
168570
|
export type MercuryFocusArea = Node & {
|
|
167850
168571
|
__typename?: 'MercuryFocusArea';
|
|
167851
168572
|
aboutContent: MercuryFocusAreaAbout;
|
|
@@ -168462,6 +169183,15 @@ export type MercuryFocusAreaTypeAggregation = {
|
|
|
168462
169183
|
__typename?: 'MercuryFocusAreaTypeAggregation';
|
|
168463
169184
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
168464
169185
|
};
|
|
169186
|
+
export type MercuryFocusAreaTypeMetric = {
|
|
169187
|
+
__typename?: 'MercuryFocusAreaTypeMetric';
|
|
169188
|
+
focusAreaType: MercuryFocusAreaType;
|
|
169189
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
169190
|
+
};
|
|
169191
|
+
export type MercuryFocusAreaTypeMetrics = {
|
|
169192
|
+
__typename?: 'MercuryFocusAreaTypeMetrics';
|
|
169193
|
+
focusAreaTypes?: Maybe<Array<MercuryFocusAreaTypeMetric>>;
|
|
169194
|
+
};
|
|
168465
169195
|
export type MercuryFocusAreaUserAccess = {
|
|
168466
169196
|
__typename?: 'MercuryFocusAreaUserAccess';
|
|
168467
169197
|
accessLevel?: Maybe<MercuryFocusAreaUserAccessLevel>;
|
|
@@ -168502,6 +169232,10 @@ export type MercuryForYouInsightsFilter = {
|
|
|
168502
169232
|
forYouInsightType?: InputMaybe<MercuryForYouInsightType>;
|
|
168503
169233
|
insightType?: InputMaybe<MercuryInsightTypeEnum>;
|
|
168504
169234
|
};
|
|
169235
|
+
export declare enum MercuryForYouOwnershipType {
|
|
169236
|
+
Own = "OWN",
|
|
169237
|
+
Watch = "WATCH"
|
|
169238
|
+
}
|
|
168505
169239
|
export type MercuryFundChangeSummary = {
|
|
168506
169240
|
__typename?: 'MercuryFundChangeSummary';
|
|
168507
169241
|
amount?: Maybe<MercuryFundChangeSummaryFields>;
|
|
@@ -170085,6 +170819,14 @@ export type MercuryOnUpdateChangeProposalsPayload = Payload & {
|
|
|
170085
170819
|
strategicEventId: Scalars['ID']['output'];
|
|
170086
170820
|
success: Scalars['Boolean']['output'];
|
|
170087
170821
|
};
|
|
170822
|
+
export declare enum MercuryOnboardingModelFormat {
|
|
170823
|
+
Mermaid = "MERMAID"
|
|
170824
|
+
}
|
|
170825
|
+
export type MercuryOnboardingModelInput = {
|
|
170826
|
+
format: MercuryOnboardingModelFormat;
|
|
170827
|
+
formatVersion: Scalars['String']['input'];
|
|
170828
|
+
model: Scalars['String']['input'];
|
|
170829
|
+
};
|
|
170088
170830
|
export type MercuryOrganization = Node & {
|
|
170089
170831
|
__typename?: 'MercuryOrganization';
|
|
170090
170832
|
aboutContent: MercuryOrganizationAbout;
|
|
@@ -171219,9 +171961,13 @@ export type MercuryPlansMutationApiUnlinkFocusAreasFromPlanArgs = {
|
|
|
171219
171961
|
};
|
|
171220
171962
|
export type MercuryPlansQueryApi = {
|
|
171221
171963
|
__typename?: 'MercuryPlansQueryApi';
|
|
171964
|
+
fiscalYearRealignmentJob?: Maybe<MercuryFiscalYearPlanRealignmentJob>;
|
|
171222
171965
|
plans?: Maybe<Array<MercuryPlan>>;
|
|
171223
171966
|
plansSearch?: Maybe<MercuryPlanConnection>;
|
|
171224
171967
|
};
|
|
171968
|
+
export type MercuryPlansQueryApiFiscalYearRealignmentJobArgs = {
|
|
171969
|
+
cloudId: Scalars['ID']['input'];
|
|
171970
|
+
};
|
|
171225
171971
|
export type MercuryPlansQueryApiPlansArgs = {
|
|
171226
171972
|
ids: Array<Scalars['ID']['input']>;
|
|
171227
171973
|
};
|
|
@@ -171749,6 +172495,7 @@ export type MercuryQueryApi = {
|
|
|
171749
172495
|
focusAreasByAris?: Maybe<Array<MercuryFocusArea>>;
|
|
171750
172496
|
focusAreasByExternalIds?: Maybe<Array<Maybe<MercuryFocusArea>>>;
|
|
171751
172497
|
focusAreasTopologicallySorted?: Maybe<Array<MercuryFocusArea>>;
|
|
172498
|
+
forYouFocusAreaTypeMetrics?: Maybe<MercuryFocusAreaTypeMetrics>;
|
|
171752
172499
|
mediaReadToken?: Maybe<MercuryMediaToken>;
|
|
171753
172500
|
mediaUploadToken?: Maybe<MercuryMediaToken>;
|
|
171754
172501
|
myPreference?: Maybe<MercuryPreference>;
|
|
@@ -171885,6 +172632,10 @@ export type MercuryQueryApiFocusAreasByExternalIdsArgs = {
|
|
|
171885
172632
|
export type MercuryQueryApiFocusAreasTopologicallySortedArgs = {
|
|
171886
172633
|
focusAreaIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
171887
172634
|
};
|
|
172635
|
+
export type MercuryQueryApiForYouFocusAreaTypeMetricsArgs = {
|
|
172636
|
+
cloudId: Scalars['ID']['input'];
|
|
172637
|
+
ownershipType: MercuryForYouOwnershipType;
|
|
172638
|
+
};
|
|
171888
172639
|
export type MercuryQueryApiMediaReadTokenArgs = {
|
|
171889
172640
|
cloudId: Scalars['ID']['input'];
|
|
171890
172641
|
entityId: Scalars['ID']['input'];
|
|
@@ -172627,6 +173378,7 @@ export type MercurySetBaselineInput = {
|
|
|
172627
173378
|
endYearMonth: Scalars['String']['input'];
|
|
172628
173379
|
financialVersionId: Scalars['ID']['input'];
|
|
172629
173380
|
focusAreaId: Scalars['ID']['input'];
|
|
173381
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
172630
173382
|
startYearMonth: Scalars['String']['input'];
|
|
172631
173383
|
};
|
|
172632
173384
|
export type MercurySetBaselinePayload = Payload & {
|
|
@@ -174972,6 +175724,7 @@ export type Mutation = {
|
|
|
174972
175724
|
agentWorkspace_assignAgentToGap?: Maybe<AgentWorkspaceAssignAgentToGapPayload>;
|
|
174973
175725
|
agentWorkspace_assignAgentsToSkill?: Maybe<AgentWorkspaceAssignAgentsToSkillPayload>;
|
|
174974
175726
|
agentWorkspace_bulkUpsertDraftedRoutingTableEntries?: Maybe<AgentWorkspaceBulkUpsertDraftedRoutingTableEntriesPayload>;
|
|
175727
|
+
agentWorkspace_bulkUpsertDraftedTeamRoutingTableEntries?: Maybe<AgentWorkspaceBulkUpsertDraftedTeamRoutingTableEntriesPayload>;
|
|
174975
175728
|
agentWorkspace_cancelRoutingTableGeneration?: Maybe<AgentWorkspaceCancelRoutingTableGenerationPayload>;
|
|
174976
175729
|
agentWorkspace_cancelSmartRoutingDryRun?: Maybe<AgentWorkspaceSmartRoutingDryRun>;
|
|
174977
175730
|
agentWorkspace_createAndLinkTeamsFromGroups?: Maybe<AgentWorkspaceCreateAndLinkTeamsPayload>;
|
|
@@ -175002,6 +175755,7 @@ export type Mutation = {
|
|
|
175002
175755
|
agentWorkspace_startBulkScheduleImportJob?: Maybe<AgentWorkspaceStartBulkImportPayload>;
|
|
175003
175756
|
agentWorkspace_startGenerateRoutingTable?: Maybe<AgentWorkspaceStartGenerateRoutingTablePayload>;
|
|
175004
175757
|
agentWorkspace_startGenerateRoutingTableV2?: Maybe<AgentWorkspaceStartGenerateRoutingTablePayload>;
|
|
175758
|
+
agentWorkspace_startGenerateTeamRoutingTable?: Maybe<AgentWorkspaceStartGenerateRoutingTablePayload>;
|
|
175005
175759
|
agentWorkspace_startSmartRoutingDryRun?: Maybe<AgentWorkspaceStartSmartRoutingDryRunPayload>;
|
|
175006
175760
|
agentWorkspace_submitDraftedRoutingTable?: Maybe<AgentWorkspaceSubmitDraftedRoutingTablePayload>;
|
|
175007
175761
|
agentWorkspace_submitDraftedTeamRoutingTable?: Maybe<AgentWorkspaceSubmitDraftedTeamRoutingTablePayload>;
|
|
@@ -175037,6 +175791,8 @@ export type Mutation = {
|
|
|
175037
175791
|
archivePages?: Maybe<BulkArchivePagePayload>;
|
|
175038
175792
|
archivePolarisInsights?: Maybe<ArchivePolarisInsightsPayload>;
|
|
175039
175793
|
archiveSpace?: Maybe<ArchiveSpacePayload>;
|
|
175794
|
+
artifact_createArtifact?: Maybe<ArtifactCreatePayload>;
|
|
175795
|
+
artifact_createContent?: Maybe<ArtifactCreateContentPayload>;
|
|
175040
175796
|
assetsDM_addDataDictionary?: Maybe<AssetsDmAddDataDictionaryResponse>;
|
|
175041
175797
|
assetsDM_addDefaultAttributeMapping?: Maybe<AssetsDmAddDefaultAttributeMappingResponse>;
|
|
175042
175798
|
assetsDM_associateObjectTag?: Maybe<AssetsDmObjectTagAssociateResponse>;
|
|
@@ -175162,6 +175918,7 @@ export type Mutation = {
|
|
|
175162
175918
|
avp_moveDashboardRow?: Maybe<AvpMoveDashboardRowPayload>;
|
|
175163
175919
|
avp_removeDashboardElement?: Maybe<AvpRemoveDashboardElementPayload>;
|
|
175164
175920
|
avp_removeDashboardRow?: Maybe<AvpRemoveDashboardRowPayload>;
|
|
175921
|
+
avp_replaceEmptyCanvasElement?: Maybe<AvpReplaceEmptyCanvasElementPayload>;
|
|
175165
175922
|
avp_signForgeContextToken?: Maybe<AvpSignForgeContextTokenPayload>;
|
|
175166
175923
|
avp_starDashboard?: Maybe<AvpStarDashboardPayload>;
|
|
175167
175924
|
avp_toggleCanvasElementExpanded?: Maybe<AvpToggleCanvasElementExpandedPayload>;
|
|
@@ -175241,6 +175998,7 @@ export type Mutation = {
|
|
|
175241
175998
|
completeSprint?: Maybe<CompleteSprintResponse>;
|
|
175242
175999
|
confluence?: Maybe<ConfluenceMutationApi>;
|
|
175243
176000
|
confluence_acceptAnswer?: Maybe<ConfluenceAcceptAnswerPayload>;
|
|
176001
|
+
confluence_accessLinkSpacesAction?: Maybe<ConfluenceAccessLinkSpacesActionPayload>;
|
|
175244
176002
|
confluence_addInlineReaction?: Maybe<ConfluenceInlineReactionPayload>;
|
|
175245
176003
|
confluence_addReaction?: Maybe<ConfluenceReactionPayload>;
|
|
175246
176004
|
confluence_addTrack?: Maybe<ConfluenceAddTrackPayload>;
|
|
@@ -175315,6 +176073,7 @@ export type Mutation = {
|
|
|
175315
176073
|
confluence_patchCalendar?: Maybe<ConfluencePatchCalendarPayload>;
|
|
175316
176074
|
confluence_patchFolder?: Maybe<ConfluencePatchFolderPayload>;
|
|
175317
176075
|
confluence_patchSpaceSettings?: Maybe<ConfluencePatchSpaceSettingsPayload>;
|
|
176076
|
+
confluence_pauseSmartFolderSync?: Maybe<ConfluenceSmartFolderSyncControlPayload>;
|
|
175318
176077
|
confluence_publishBlueprintSharedDraft?: Maybe<ConfluencePublishBlueprintSharedDraftPayload>;
|
|
175319
176078
|
confluence_publishDraftWithApprovalReviewTransfer?: Maybe<ConfluenceWorkflowApplicationPayload>;
|
|
175320
176079
|
confluence_recordCompanionTipScrollSignal?: Maybe<ConfluenceRecordCompanionTipScrollSignalPayload>;
|
|
@@ -175332,6 +176091,7 @@ export type Mutation = {
|
|
|
175332
176091
|
confluence_resolveSpaceAccessRequest?: Maybe<ConfluenceResolveSpaceAccessRequestPayload>;
|
|
175333
176092
|
confluence_restoreContentVersion?: Maybe<ConfluenceRestoreContentVersionPayload>;
|
|
175334
176093
|
confluence_restoreSystemRole?: Maybe<ConfluenceRestoreSystemRolePayload>;
|
|
176094
|
+
confluence_resumeSmartFolderSync?: Maybe<ConfluenceSmartFolderSyncControlPayload>;
|
|
175335
176095
|
confluence_sendToDesktop?: Maybe<ConfluenceDesktopSendPayload>;
|
|
175336
176096
|
confluence_setContentApprovalsSpaceSettings?: Maybe<ConfluenceContentApprovalsSpaceSettingsPayload>;
|
|
175337
176097
|
confluence_setContentGeneralAccessMode?: Maybe<ConfluenceSetContentGeneralAccessModePayload>;
|
|
@@ -175367,6 +176127,7 @@ export type Mutation = {
|
|
|
175367
176127
|
confluence_updateCoverPicture?: Maybe<ConfluenceUpdateCoverPicturePayload>;
|
|
175368
176128
|
confluence_updateCustomContentPermissions?: Maybe<ConfluenceUpdateCustomContentPermissionsPayload>;
|
|
175369
176129
|
confluence_updateCustomRole?: Maybe<ConfluenceUpdateCustomRolePayload>;
|
|
176130
|
+
confluence_updateCwrRemixCreationConfiguration?: Maybe<ConfluenceUpdateCwrRemixCreationConfigurationPayload>;
|
|
175370
176131
|
confluence_updateDefaultTitleEmoji?: Maybe<ConfluenceUpdateDefaultTitleEmojiPayload>;
|
|
175371
176132
|
confluence_updateInstance?: Maybe<ConfluenceUpdateInstancePayload>;
|
|
175372
176133
|
confluence_updateMarkdownMode?: Maybe<ConfluenceUpdateMarkdownModePayload>;
|
|
@@ -175726,6 +176487,7 @@ export type Mutation = {
|
|
|
175726
176487
|
graphIntegration_addTwgCapabilityContainer?: Maybe<GraphIntegrationAddTwgCapabilityContainerPayload>;
|
|
175727
176488
|
graphIntegration_createDataConnectorConnection?: Maybe<GraphIntegrationCreateConnectionPayload>;
|
|
175728
176489
|
graphIntegration_createSkill?: Maybe<GraphIntegrationSkill>;
|
|
176490
|
+
graphIntegration_createSkillCloneLink?: Maybe<GraphIntegrationCreateSkillCloneLinkPayload>;
|
|
175729
176491
|
graphIntegration_customAuthDelete?: Maybe<GraphIntegrationCustomAuthDeletePayload>;
|
|
175730
176492
|
graphIntegration_customAuthUpdate?: Maybe<GraphIntegrationCustomAuthMutationPayload>;
|
|
175731
176493
|
graphIntegration_customAuthUpdateStatus?: Maybe<GraphIntegrationCustomAuthMutationPayload>;
|
|
@@ -175915,6 +176677,7 @@ export type Mutation = {
|
|
|
175915
176677
|
gravity_reviseDraft?: Maybe<GravityDraftPayload>;
|
|
175916
176678
|
gravity_setActionStatus?: Maybe<GravityActionPayload>;
|
|
175917
176679
|
gravity_setViewArrangement?: Maybe<GravityViewArrangementPayload>;
|
|
176680
|
+
gravity_startAltaSession?: Maybe<GravityAltaSessionPayload>;
|
|
175918
176681
|
gravity_updateDeliverySettings?: Maybe<GravityUpdateDeliverySettingsPayload>;
|
|
175919
176682
|
gravity_updateDraftContent?: Maybe<GravityDraftPayload>;
|
|
175920
176683
|
gravity_upsertAction?: Maybe<GravityActionPayload>;
|
|
@@ -175924,7 +176687,6 @@ export type Mutation = {
|
|
|
175924
176687
|
growthUnifiedProfile_createUnifiedProfile?: Maybe<GrowthUnifiedProfileResult>;
|
|
175925
176688
|
hardDeleteSpace?: Maybe<HardDeleteSpacePayload>;
|
|
175926
176689
|
helpCenter?: Maybe<HelpCenterMutationApi>;
|
|
175927
|
-
helpExternalResource?: Maybe<HelpExternalResourceMutationApi>;
|
|
175928
176690
|
helpLayout?: Maybe<HelpLayoutMutationApi>;
|
|
175929
176691
|
helpObjectStore?: Maybe<HelpObjectStoreMutationApi>;
|
|
175930
176692
|
home_addTagsById?: Maybe<TownsquareAddTagToEntityPayload>;
|
|
@@ -176138,6 +176900,7 @@ export type Mutation = {
|
|
|
176138
176900
|
jsmTelemetry_addChart?: Maybe<JsmTelemetryAddChartResult>;
|
|
176139
176901
|
jsmTelemetry_createTelemetryConnection?: Maybe<JsmTelemetryCreateTelemetryConnectionPayload>;
|
|
176140
176902
|
jsmTelemetry_deleteTelemetryConnection?: Maybe<Scalars['Boolean']['output']>;
|
|
176903
|
+
jsmTelemetry_discoverAndSaveIncidentServiceMetrics?: Maybe<JsmTelemetryIncidentServiceMetricDiscoverySaveResult>;
|
|
176141
176904
|
jsmTelemetry_removeChart?: Maybe<JsmTelemetryRemoveChartResult>;
|
|
176142
176905
|
jsmTelemetry_removeDashboard?: Maybe<JsmTelemetryRemoveDashboardResult>;
|
|
176143
176906
|
jsmTelemetry_removeDashboardChart?: Maybe<JsmTelemetryRemoveDashboardChartResult>;
|
|
@@ -176150,35 +176913,54 @@ export type Mutation = {
|
|
|
176150
176913
|
kitsune_createCustomerField?: Maybe<KitsuneCustomerCustomField>;
|
|
176151
176914
|
kitsune_createFeedback?: Maybe<KitsuneFeedback>;
|
|
176152
176915
|
kitsune_createField?: Maybe<KitsuneField>;
|
|
176916
|
+
kitsune_createFieldV2?: Maybe<KitsuneCreateFieldPayload>;
|
|
176153
176917
|
kitsune_createInsight?: Maybe<KitsuneInsight>;
|
|
176918
|
+
kitsune_createInsightV2?: Maybe<KitsuneCreateInsightPayload>;
|
|
176154
176919
|
kitsune_createOrganization?: Maybe<KitsuneOrganization>;
|
|
176155
176920
|
kitsune_createOrganizationField?: Maybe<KitsuneCustomerCustomField>;
|
|
176156
176921
|
kitsune_createSection?: Maybe<KitsuneSection>;
|
|
176922
|
+
kitsune_createSectionV2?: Maybe<KitsuneSectionPayload>;
|
|
176157
176923
|
kitsune_createSnippet?: Maybe<KitsuneSnippet>;
|
|
176924
|
+
kitsune_createSnippetV2?: Maybe<KitsuneCreateSnippetPayload>;
|
|
176158
176925
|
kitsune_createSpace?: Maybe<KitsuneSpace>;
|
|
176159
176926
|
kitsune_createView?: Maybe<KitsuneView>;
|
|
176927
|
+
kitsune_createViewV2?: Maybe<KitsuneViewPayload>;
|
|
176160
176928
|
kitsune_exportFeedbackFromView?: Maybe<KitsuneJob>;
|
|
176161
176929
|
kitsune_generateFeedbackSummary?: Maybe<KitsuneFeedback>;
|
|
176162
176930
|
kitsune_generateInsightSummary?: Maybe<KitsuneInsight>;
|
|
176931
|
+
kitsune_generateInsightSummaryV2?: Maybe<KitsuneGenerateInsightSummaryPayload>;
|
|
176932
|
+
kitsune_inviteToSpace?: Maybe<KitsuneInviteToSpacePayload>;
|
|
176163
176933
|
kitsune_linkInsightsToIdea?: Maybe<Array<Maybe<KitsuneInsight>>>;
|
|
176934
|
+
kitsune_linkInsightsToIdeaV2?: Maybe<KitsuneLinkInsightsToIdeaPayload>;
|
|
176164
176935
|
kitsune_moveSection?: Maybe<KitsuneSpace>;
|
|
176936
|
+
kitsune_moveSectionV2?: Maybe<KitsuneMoveSectionPayload>;
|
|
176165
176937
|
kitsune_moveView?: Maybe<KitsuneSpace>;
|
|
176938
|
+
kitsune_moveViewV2?: Maybe<KitsuneMoveViewPayload>;
|
|
176166
176939
|
kitsune_refreshInsightCounters?: Maybe<KitsuneJob>;
|
|
176940
|
+
kitsune_refreshInsightCountersV2?: Maybe<KitsuneRefreshInsightCountersPayload>;
|
|
176167
176941
|
kitsune_removeConnectorConfig?: Maybe<KitsuneRemoveConnectorConfigPayload>;
|
|
176168
176942
|
kitsune_removeCustomer?: Maybe<KitsuneDeletedRecord>;
|
|
176169
176943
|
kitsune_removeCustomerField?: Maybe<KitsuneDeletedRecord>;
|
|
176170
176944
|
kitsune_removeFeedback?: Maybe<KitsuneDeletedRecord>;
|
|
176171
176945
|
kitsune_removeField?: Maybe<KitsuneDeletedRecord>;
|
|
176946
|
+
kitsune_removeFieldV2?: Maybe<KitsuneDeletedPayload>;
|
|
176172
176947
|
kitsune_removeFieldValue?: Maybe<KitsuneDeletedRecord>;
|
|
176948
|
+
kitsune_removeFieldValueV2?: Maybe<KitsuneDeletedPayload>;
|
|
176949
|
+
kitsune_removeFromSpace?: Maybe<KitsuneRemoveFromSpacePayload>;
|
|
176173
176950
|
kitsune_removeInsight?: Maybe<KitsuneDeletedRecord>;
|
|
176951
|
+
kitsune_removeInsightV2?: Maybe<KitsuneDeletedPayload>;
|
|
176174
176952
|
kitsune_removeOrganization?: Maybe<KitsuneDeletedRecord>;
|
|
176175
176953
|
kitsune_removeOrganizationField?: Maybe<KitsuneDeletedRecord>;
|
|
176176
176954
|
kitsune_removeSection?: Maybe<KitsuneDeletedRecord>;
|
|
176955
|
+
kitsune_removeSectionV2?: Maybe<KitsuneDeleteSectionPayload>;
|
|
176177
176956
|
kitsune_removeSnippet?: Maybe<KitsuneDeletedRecord>;
|
|
176957
|
+
kitsune_removeSnippetV2?: Maybe<KitsuneDeletedPayload>;
|
|
176178
176958
|
kitsune_removeSpace?: Maybe<KitsuneJob>;
|
|
176179
176959
|
kitsune_removeView?: Maybe<KitsuneDeletedRecord>;
|
|
176960
|
+
kitsune_removeViewV2?: Maybe<KitsuneDeleteViewPayload>;
|
|
176180
176961
|
kitsune_resyncFeedback?: Maybe<KitsuneJob>;
|
|
176181
176962
|
kitsune_resyncInsights?: Maybe<KitsuneJob>;
|
|
176963
|
+
kitsune_resyncInsightsV2?: Maybe<KitsuneResyncInsightsPayload>;
|
|
176182
176964
|
kitsune_syncCsmProperties?: Maybe<KitsuneJob>;
|
|
176183
176965
|
kitsune_syncCustomerFields?: Maybe<KitsuneJob>;
|
|
176184
176966
|
kitsune_syncCustomers?: Maybe<KitsuneJob>;
|
|
@@ -176187,13 +176969,18 @@ export type Mutation = {
|
|
|
176187
176969
|
kitsune_updateCustomerField?: Maybe<KitsuneCustomerCustomField>;
|
|
176188
176970
|
kitsune_updateFeedback?: Maybe<KitsuneFeedback>;
|
|
176189
176971
|
kitsune_updateField?: Maybe<KitsuneField>;
|
|
176972
|
+
kitsune_updateFieldV2?: Maybe<KitsuneUpdateFieldPayload>;
|
|
176190
176973
|
kitsune_updateInsight?: Maybe<KitsuneInsight>;
|
|
176974
|
+
kitsune_updateInsightV2?: Maybe<KitsuneUpdateInsightPayload>;
|
|
176191
176975
|
kitsune_updateOrganization?: Maybe<KitsuneOrganization>;
|
|
176192
176976
|
kitsune_updateOrganizationField?: Maybe<KitsuneCustomerCustomField>;
|
|
176193
176977
|
kitsune_updateSection?: Maybe<KitsuneSection>;
|
|
176978
|
+
kitsune_updateSectionV2?: Maybe<KitsuneSectionPayload>;
|
|
176194
176979
|
kitsune_updateSnippet?: Maybe<KitsuneSnippet>;
|
|
176980
|
+
kitsune_updateSnippetV2?: Maybe<KitsuneUpdateSnippetPayload>;
|
|
176195
176981
|
kitsune_updateSpace?: Maybe<KitsuneSpace>;
|
|
176196
176982
|
kitsune_updateView?: Maybe<KitsuneView>;
|
|
176983
|
+
kitsune_updateViewV2?: Maybe<KitsuneViewPayload>;
|
|
176197
176984
|
knowledgeBase?: Maybe<KnowledgeBaseMutationApi>;
|
|
176198
176985
|
knowledgeBaseSpacePermission_updateView: KnowledgeBaseSpacePermissionMutationResponse;
|
|
176199
176986
|
knowledgeBase_linkSources?: Maybe<KnowledgeBaseLinkSourcesResponse>;
|
|
@@ -176235,6 +177022,7 @@ export type Mutation = {
|
|
|
176235
177022
|
mercury_createAskCustomFieldDefinition?: Maybe<MercuryCreateCustomFieldDefinitionPayload>;
|
|
176236
177023
|
mercury_createAskStatusUpdate?: Maybe<MercuryUpsertAskStatusUpdatePayload>;
|
|
176237
177024
|
mercury_createAsks?: Maybe<MercuryCreateAsksPayload>;
|
|
177025
|
+
mercury_dataIntegrations?: Maybe<MercuryDataIntegrationsMutationApi>;
|
|
176238
177026
|
mercury_deleteAsk?: Maybe<MercuryDeleteAskPayload>;
|
|
176239
177027
|
mercury_deleteAskCustomFieldDefinition?: Maybe<MercuryDeleteCustomFieldDefinitionPayload>;
|
|
176240
177028
|
mercury_deleteAskCustomFieldDefinitionOptions?: Maybe<MercuryDeleteCustomFieldDefinitionOptionsPayload>;
|
|
@@ -176306,6 +177094,7 @@ export type Mutation = {
|
|
|
176306
177094
|
playbook_updateJiraPlaybook?: Maybe<UpdateJiraPlaybookPayload>;
|
|
176307
177095
|
playbook_updateJiraPlaybookLabel?: Maybe<UpdateJiraPlaybookLabelPayload>;
|
|
176308
177096
|
playbook_updateJiraPlaybookState?: Maybe<UpdateJiraPlaybookStatePayload>;
|
|
177097
|
+
processCombinedAppBuild?: Maybe<ProcessCombinedAppBuildResponse>;
|
|
176309
177098
|
projects_addGoalLink?: Maybe<TownsquareProjectsAddGoalLinkPayload>;
|
|
176310
177099
|
projects_addJiraWorkItemLink?: Maybe<TownsquareProjectsAddJiraWorkItemLinkPayload>;
|
|
176311
177100
|
projects_addMembers?: Maybe<TownsquareProjectsAddMembersPayload>;
|
|
@@ -176402,8 +177191,6 @@ export type Mutation = {
|
|
|
176402
177191
|
radar_updateSkillMappingStatuses?: Maybe<Array<RadarWorkerSkill>>;
|
|
176403
177192
|
radar_updateWorkerSkillMappings?: Maybe<Array<RadarUpdateWorkerSkillMappingsResponse>>;
|
|
176404
177193
|
radar_updateWorkspaceSettings?: Maybe<RadarMutationResponse>;
|
|
176405
|
-
radar_upsertAiScopedBudgetPolicies?: Maybe<RadarUpsertAiScopedBudgetPoliciesPayload>;
|
|
176406
|
-
radar_upsertAiWorkspaceBudgetPolicy?: Maybe<RadarAiWorkspaceBudgetPolicy>;
|
|
176407
177194
|
radar_upsertLastAppliedFilter?: Maybe<RadarLastAppliedFilter>;
|
|
176408
177195
|
radar_upsertView?: Maybe<RadarView>;
|
|
176409
177196
|
radar_upsertWorkTypeAllocations?: Maybe<RadarMutationResponse>;
|
|
@@ -177043,6 +177830,9 @@ export type MutationAgentWorkspace_AssignAgentsToSkillArgs = {
|
|
|
177043
177830
|
export type MutationAgentWorkspace_BulkUpsertDraftedRoutingTableEntriesArgs = {
|
|
177044
177831
|
input: AgentWorkspaceBulkUpsertDraftedRoutingTableEntriesInput;
|
|
177045
177832
|
};
|
|
177833
|
+
export type MutationAgentWorkspace_BulkUpsertDraftedTeamRoutingTableEntriesArgs = {
|
|
177834
|
+
input: AgentWorkspaceBulkUpsertDraftedTeamRoutingTableEntriesInput;
|
|
177835
|
+
};
|
|
177046
177836
|
export type MutationAgentWorkspace_CancelRoutingTableGenerationArgs = {
|
|
177047
177837
|
input: AgentWorkspaceCancelRoutingTableGenerationInput;
|
|
177048
177838
|
};
|
|
@@ -177136,6 +177926,9 @@ export type MutationAgentWorkspace_StartGenerateRoutingTableArgs = {
|
|
|
177136
177926
|
export type MutationAgentWorkspace_StartGenerateRoutingTableV2Args = {
|
|
177137
177927
|
input: AgentWorkspaceStartGenerateRoutingTableInputV2;
|
|
177138
177928
|
};
|
|
177929
|
+
export type MutationAgentWorkspace_StartGenerateTeamRoutingTableArgs = {
|
|
177930
|
+
input: AgentWorkspaceStartGenerateTeamRoutingTableInput;
|
|
177931
|
+
};
|
|
177139
177932
|
export type MutationAgentWorkspace_StartSmartRoutingDryRunArgs = {
|
|
177140
177933
|
input: AgentWorkspaceStartSmartRoutingDryRunInput;
|
|
177141
177934
|
};
|
|
@@ -177236,6 +178029,9 @@ export type MutationArchivePolarisInsightsArgs = {
|
|
|
177236
178029
|
export type MutationArchiveSpaceArgs = {
|
|
177237
178030
|
input: ArchiveSpaceInput;
|
|
177238
178031
|
};
|
|
178032
|
+
export type MutationArtifact_CreateArtifactArgs = {
|
|
178033
|
+
input: ArtifactCreateInput;
|
|
178034
|
+
};
|
|
177239
178035
|
export type MutationAssetsDm_AddDataDictionaryArgs = {
|
|
177240
178036
|
cloudId: Scalars['ID']['input'];
|
|
177241
178037
|
payload: AssetsDmAddDataDictionaryInput;
|
|
@@ -177770,6 +178566,9 @@ export type MutationAvp_RemoveDashboardElementArgs = {
|
|
|
177770
178566
|
export type MutationAvp_RemoveDashboardRowArgs = {
|
|
177771
178567
|
input: AvpRemoveDashboardRowInput;
|
|
177772
178568
|
};
|
|
178569
|
+
export type MutationAvp_ReplaceEmptyCanvasElementArgs = {
|
|
178570
|
+
input: AvpReplaceEmptyCanvasElementInput;
|
|
178571
|
+
};
|
|
177773
178572
|
export type MutationAvp_SignForgeContextTokenArgs = {
|
|
177774
178573
|
input: AvpSignForgeContextTokenInput;
|
|
177775
178574
|
};
|
|
@@ -178019,6 +178818,10 @@ export type MutationConfluence_AcceptAnswerArgs = {
|
|
|
178019
178818
|
cloudId: Scalars['ID']['input'];
|
|
178020
178819
|
input: ConfluenceAcceptAnswerInput;
|
|
178021
178820
|
};
|
|
178821
|
+
export type MutationConfluence_AccessLinkSpacesActionArgs = {
|
|
178822
|
+
cloudId: Scalars['ID']['input'];
|
|
178823
|
+
input: ConfluenceAccessLinkSpacesActionInput;
|
|
178824
|
+
};
|
|
178022
178825
|
export type MutationConfluence_AddInlineReactionArgs = {
|
|
178023
178826
|
cloudId: Scalars['ID']['input'];
|
|
178024
178827
|
input: ConfluenceAddInlineReactionInput;
|
|
@@ -178313,6 +179116,10 @@ export type MutationConfluence_PatchSpaceSettingsArgs = {
|
|
|
178313
179116
|
cloudId: Scalars['ID']['input'];
|
|
178314
179117
|
input: ConfluencePatchSpaceSettingsInput;
|
|
178315
179118
|
};
|
|
179119
|
+
export type MutationConfluence_PauseSmartFolderSyncArgs = {
|
|
179120
|
+
cloudId: Scalars['ID']['input'];
|
|
179121
|
+
input: ConfluenceSmartFolderSyncControlInput;
|
|
179122
|
+
};
|
|
178316
179123
|
export type MutationConfluence_PublishBlueprintSharedDraftArgs = {
|
|
178317
179124
|
cloudId: Scalars['ID']['input'];
|
|
178318
179125
|
input?: InputMaybe<ConfluencePublishBlueprintSharedDraftInput>;
|
|
@@ -178383,6 +179190,10 @@ export type MutationConfluence_RestoreSystemRoleArgs = {
|
|
|
178383
179190
|
cloudId: Scalars['ID']['input'];
|
|
178384
179191
|
input: ConfluenceRestoreSystemRoleInput;
|
|
178385
179192
|
};
|
|
179193
|
+
export type MutationConfluence_ResumeSmartFolderSyncArgs = {
|
|
179194
|
+
cloudId: Scalars['ID']['input'];
|
|
179195
|
+
input: ConfluenceSmartFolderSyncControlInput;
|
|
179196
|
+
};
|
|
178386
179197
|
export type MutationConfluence_SendToDesktopArgs = {
|
|
178387
179198
|
cloudId: Scalars['ID']['input'];
|
|
178388
179199
|
input: ConfluenceSendToDesktopRequestInput;
|
|
@@ -178526,6 +179337,10 @@ export type MutationConfluence_UpdateCustomRoleArgs = {
|
|
|
178526
179337
|
cloudId: Scalars['ID']['input'];
|
|
178527
179338
|
input: ConfluenceUpdateCustomRoleInput;
|
|
178528
179339
|
};
|
|
179340
|
+
export type MutationConfluence_UpdateCwrRemixCreationConfigurationArgs = {
|
|
179341
|
+
cloudId: Scalars['ID']['input'];
|
|
179342
|
+
input: ConfluenceUpdateCwrRemixCreationConfigurationInput;
|
|
179343
|
+
};
|
|
178529
179344
|
export type MutationConfluence_UpdateDefaultTitleEmojiArgs = {
|
|
178530
179345
|
cloudId: Scalars['ID']['input'];
|
|
178531
179346
|
input: ConfluenceUpdateDefaultTitleEmojiInput;
|
|
@@ -179762,6 +180577,9 @@ export type MutationGraphIntegration_CreateDataConnectorConnectionArgs = {
|
|
|
179762
180577
|
export type MutationGraphIntegration_CreateSkillArgs = {
|
|
179763
180578
|
input: GraphIntegrationCreateSkillInput;
|
|
179764
180579
|
};
|
|
180580
|
+
export type MutationGraphIntegration_CreateSkillCloneLinkArgs = {
|
|
180581
|
+
input: GraphIntegrationCreateSkillCloneLinkInput;
|
|
180582
|
+
};
|
|
179765
180583
|
export type MutationGraphIntegration_CustomAuthDeleteArgs = {
|
|
179766
180584
|
input: GraphIntegrationCustomAuthDeleteInput;
|
|
179767
180585
|
};
|
|
@@ -180341,6 +181159,10 @@ export type MutationGravity_SetViewArrangementArgs = {
|
|
|
180341
181159
|
cloudId: Scalars['ID']['input'];
|
|
180342
181160
|
input: GravitySetViewArrangementInput;
|
|
180343
181161
|
};
|
|
181162
|
+
export type MutationGravity_StartAltaSessionArgs = {
|
|
181163
|
+
cloudId: Scalars['ID']['input'];
|
|
181164
|
+
input: GravityStartAltaSessionInput;
|
|
181165
|
+
};
|
|
180344
181166
|
export type MutationGravity_UpdateDeliverySettingsArgs = {
|
|
180345
181167
|
cloudId: Scalars['ID']['input'];
|
|
180346
181168
|
input: GravityUpdateDeliverySettingsInput;
|
|
@@ -180371,9 +181193,6 @@ export type MutationHardDeleteSpaceArgs = {
|
|
|
180371
181193
|
export type MutationHelpCenterArgs = {
|
|
180372
181194
|
cloudId: Scalars['ID']['input'];
|
|
180373
181195
|
};
|
|
180374
|
-
export type MutationHelpExternalResourceArgs = {
|
|
180375
|
-
cloudId: Scalars['ID']['input'];
|
|
180376
|
-
};
|
|
180377
181196
|
export type MutationHelpLayoutArgs = {
|
|
180378
181197
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
180379
181198
|
};
|
|
@@ -181071,6 +181890,11 @@ export type MutationJsmTelemetry_DeleteTelemetryConnectionArgs = {
|
|
|
181071
181890
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
181072
181891
|
input: JsmTelemetryDeleteTelemetryConnectionInput;
|
|
181073
181892
|
};
|
|
181893
|
+
export type MutationJsmTelemetry_DiscoverAndSaveIncidentServiceMetricsArgs = {
|
|
181894
|
+
cloudId: Scalars['ID']['input'];
|
|
181895
|
+
incidentId: Scalars['ID']['input'];
|
|
181896
|
+
input: JsmTelemetryIncidentServiceMetricDiscoverySaveInput;
|
|
181897
|
+
};
|
|
181074
181898
|
export type MutationJsmTelemetry_RemoveChartArgs = {
|
|
181075
181899
|
chartId: Scalars['ID']['input'];
|
|
181076
181900
|
cloudId: Scalars['ID']['input'];
|
|
@@ -181136,6 +181960,9 @@ export type MutationKitsune_CreateFieldArgs = {
|
|
|
181136
181960
|
valueType: KitsuneFieldValueType;
|
|
181137
181961
|
workspaceAri: Scalars['ID']['input'];
|
|
181138
181962
|
};
|
|
181963
|
+
export type MutationKitsune_CreateFieldV2Args = {
|
|
181964
|
+
input: KitsuneCreateFieldInput;
|
|
181965
|
+
};
|
|
181139
181966
|
export type MutationKitsune_CreateInsightArgs = {
|
|
181140
181967
|
content?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
181141
181968
|
externalId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -181144,6 +181971,9 @@ export type MutationKitsune_CreateInsightArgs = {
|
|
|
181144
181971
|
spaceAri: Scalars['ID']['input'];
|
|
181145
181972
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
181146
181973
|
};
|
|
181974
|
+
export type MutationKitsune_CreateInsightV2Args = {
|
|
181975
|
+
input: KitsuneCreateInsightInput;
|
|
181976
|
+
};
|
|
181147
181977
|
export type MutationKitsune_CreateOrganizationArgs = {
|
|
181148
181978
|
domainName?: InputMaybe<Scalars['String']['input']>;
|
|
181149
181979
|
name: Scalars['String']['input'];
|
|
@@ -181161,12 +181991,18 @@ export type MutationKitsune_CreateSectionArgs = {
|
|
|
181161
181991
|
name: Scalars['String']['input'];
|
|
181162
181992
|
spaceAri: Scalars['ID']['input'];
|
|
181163
181993
|
};
|
|
181994
|
+
export type MutationKitsune_CreateSectionV2Args = {
|
|
181995
|
+
input: KitsuneCreateSectionInput;
|
|
181996
|
+
};
|
|
181164
181997
|
export type MutationKitsune_CreateSnippetArgs = {
|
|
181165
181998
|
content: Array<Scalars['String']['input']>;
|
|
181166
181999
|
feedbackId: Scalars['ID']['input'];
|
|
181167
182000
|
insightId: Scalars['ID']['input'];
|
|
181168
182001
|
markId?: InputMaybe<Scalars['ID']['input']>;
|
|
181169
182002
|
};
|
|
182003
|
+
export type MutationKitsune_CreateSnippetV2Args = {
|
|
182004
|
+
input: KitsuneCreateSnippetInput;
|
|
182005
|
+
};
|
|
181170
182006
|
export type MutationKitsune_CreateSpaceArgs = {
|
|
181171
182007
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
181172
182008
|
name: Scalars['String']['input'];
|
|
@@ -181182,6 +182018,9 @@ export type MutationKitsune_CreateViewArgs = {
|
|
|
181182
182018
|
spaceAri: Scalars['ID']['input'];
|
|
181183
182019
|
type: KitsuneViewType;
|
|
181184
182020
|
};
|
|
182021
|
+
export type MutationKitsune_CreateViewV2Args = {
|
|
182022
|
+
input: KitsuneCreateViewInput;
|
|
182023
|
+
};
|
|
181185
182024
|
export type MutationKitsune_ExportFeedbackFromViewArgs = {
|
|
181186
182025
|
viewId: Scalars['ID']['input'];
|
|
181187
182026
|
workspaceAri: Scalars['ID']['input'];
|
|
@@ -181192,22 +182031,42 @@ export type MutationKitsune_GenerateFeedbackSummaryArgs = {
|
|
|
181192
182031
|
export type MutationKitsune_GenerateInsightSummaryArgs = {
|
|
181193
182032
|
insightAri: Scalars['ID']['input'];
|
|
181194
182033
|
};
|
|
182034
|
+
export type MutationKitsune_GenerateInsightSummaryV2Args = {
|
|
182035
|
+
input: KitsuneGenerateInsightSummaryInput;
|
|
182036
|
+
};
|
|
182037
|
+
export type MutationKitsune_InviteToSpaceArgs = {
|
|
182038
|
+
input: KitsuneInviteToSpaceInput;
|
|
182039
|
+
};
|
|
181195
182040
|
export type MutationKitsune_LinkInsightsToIdeaArgs = {
|
|
181196
182041
|
ideaAri: Scalars['ID']['input'];
|
|
181197
182042
|
insightIds: Array<Scalars['ID']['input']>;
|
|
181198
182043
|
};
|
|
182044
|
+
export type MutationKitsune_LinkInsightsToIdeaV2Args = {
|
|
182045
|
+
input: KitsuneLinkInsightsToIdeaInput;
|
|
182046
|
+
};
|
|
181199
182047
|
export type MutationKitsune_MoveSectionArgs = {
|
|
181200
182048
|
rank: KitsuneRankInput;
|
|
181201
182049
|
sectionAri: Scalars['ID']['input'];
|
|
181202
182050
|
};
|
|
182051
|
+
export type MutationKitsune_MoveSectionV2Args = {
|
|
182052
|
+
id: Scalars['ID']['input'];
|
|
182053
|
+
input: KitsuneMoveSectionInput;
|
|
182054
|
+
};
|
|
181203
182055
|
export type MutationKitsune_MoveViewArgs = {
|
|
181204
182056
|
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
181205
182057
|
rank?: InputMaybe<KitsuneRankInput>;
|
|
181206
182058
|
viewAri: Scalars['ID']['input'];
|
|
181207
182059
|
};
|
|
182060
|
+
export type MutationKitsune_MoveViewV2Args = {
|
|
182061
|
+
id: Scalars['ID']['input'];
|
|
182062
|
+
input: KitsuneMoveViewInput;
|
|
182063
|
+
};
|
|
181208
182064
|
export type MutationKitsune_RefreshInsightCountersArgs = {
|
|
181209
182065
|
workspaceAri: Scalars['ID']['input'];
|
|
181210
182066
|
};
|
|
182067
|
+
export type MutationKitsune_RefreshInsightCountersV2Args = {
|
|
182068
|
+
input: KitsuneRefreshInsightCountersInput;
|
|
182069
|
+
};
|
|
181211
182070
|
export type MutationKitsune_RemoveConnectorConfigArgs = {
|
|
181212
182071
|
id: Scalars['ID']['input'];
|
|
181213
182072
|
input: KitsuneRemoveConnectorConfigInput;
|
|
@@ -181225,13 +182084,26 @@ export type MutationKitsune_RemoveFeedbackArgs = {
|
|
|
181225
182084
|
export type MutationKitsune_RemoveFieldArgs = {
|
|
181226
182085
|
id: Scalars['ID']['input'];
|
|
181227
182086
|
};
|
|
182087
|
+
export type MutationKitsune_RemoveFieldV2Args = {
|
|
182088
|
+
id: Scalars['ID']['input'];
|
|
182089
|
+
};
|
|
181228
182090
|
export type MutationKitsune_RemoveFieldValueArgs = {
|
|
181229
182091
|
fieldValueId: Scalars['ID']['input'];
|
|
181230
182092
|
workspaceAri: Scalars['ID']['input'];
|
|
181231
182093
|
};
|
|
182094
|
+
export type MutationKitsune_RemoveFieldValueV2Args = {
|
|
182095
|
+
id: Scalars['ID']['input'];
|
|
182096
|
+
input: KitsuneRemoveFieldValueInput;
|
|
182097
|
+
};
|
|
182098
|
+
export type MutationKitsune_RemoveFromSpaceArgs = {
|
|
182099
|
+
input: KitsuneRemoveFromSpaceInput;
|
|
182100
|
+
};
|
|
181232
182101
|
export type MutationKitsune_RemoveInsightArgs = {
|
|
181233
182102
|
id: Scalars['ID']['input'];
|
|
181234
182103
|
};
|
|
182104
|
+
export type MutationKitsune_RemoveInsightV2Args = {
|
|
182105
|
+
id: Scalars['ID']['input'];
|
|
182106
|
+
};
|
|
181235
182107
|
export type MutationKitsune_RemoveOrganizationArgs = {
|
|
181236
182108
|
ari: Scalars['ID']['input'];
|
|
181237
182109
|
};
|
|
@@ -181242,15 +182114,24 @@ export type MutationKitsune_RemoveOrganizationFieldArgs = {
|
|
|
181242
182114
|
export type MutationKitsune_RemoveSectionArgs = {
|
|
181243
182115
|
sectionAri: Scalars['ID']['input'];
|
|
181244
182116
|
};
|
|
182117
|
+
export type MutationKitsune_RemoveSectionV2Args = {
|
|
182118
|
+
id: Scalars['ID']['input'];
|
|
182119
|
+
};
|
|
181245
182120
|
export type MutationKitsune_RemoveSnippetArgs = {
|
|
181246
182121
|
id: Scalars['ID']['input'];
|
|
181247
182122
|
};
|
|
182123
|
+
export type MutationKitsune_RemoveSnippetV2Args = {
|
|
182124
|
+
id: Scalars['ID']['input'];
|
|
182125
|
+
};
|
|
181248
182126
|
export type MutationKitsune_RemoveSpaceArgs = {
|
|
181249
182127
|
id: Scalars['ID']['input'];
|
|
181250
182128
|
};
|
|
181251
182129
|
export type MutationKitsune_RemoveViewArgs = {
|
|
181252
182130
|
viewAri: Scalars['ID']['input'];
|
|
181253
182131
|
};
|
|
182132
|
+
export type MutationKitsune_RemoveViewV2Args = {
|
|
182133
|
+
id: Scalars['ID']['input'];
|
|
182134
|
+
};
|
|
181254
182135
|
export type MutationKitsune_ResyncFeedbackArgs = {
|
|
181255
182136
|
dateRange?: InputMaybe<KitsuneDateRangeInput>;
|
|
181256
182137
|
rebuildEmbeddings?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -181259,6 +182140,9 @@ export type MutationKitsune_ResyncFeedbackArgs = {
|
|
|
181259
182140
|
export type MutationKitsune_ResyncInsightsArgs = {
|
|
181260
182141
|
workspaceAri: Scalars['ID']['input'];
|
|
181261
182142
|
};
|
|
182143
|
+
export type MutationKitsune_ResyncInsightsV2Args = {
|
|
182144
|
+
input: KitsuneResyncInsightsInput;
|
|
182145
|
+
};
|
|
181262
182146
|
export type MutationKitsune_SyncCsmPropertiesArgs = {
|
|
181263
182147
|
workspaceAri: Scalars['ID']['input'];
|
|
181264
182148
|
};
|
|
@@ -181301,6 +182185,10 @@ export type MutationKitsune_UpdateFieldArgs = {
|
|
|
181301
182185
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
181302
182186
|
options?: InputMaybe<KitsuneFieldOptionsInput>;
|
|
181303
182187
|
};
|
|
182188
|
+
export type MutationKitsune_UpdateFieldV2Args = {
|
|
182189
|
+
id: Scalars['ID']['input'];
|
|
182190
|
+
input: KitsuneUpdateFieldInput;
|
|
182191
|
+
};
|
|
181304
182192
|
export type MutationKitsune_UpdateInsightArgs = {
|
|
181305
182193
|
content?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
181306
182194
|
externalId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -181309,6 +182197,10 @@ export type MutationKitsune_UpdateInsightArgs = {
|
|
|
181309
182197
|
summaryContent?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
181310
182198
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
181311
182199
|
};
|
|
182200
|
+
export type MutationKitsune_UpdateInsightV2Args = {
|
|
182201
|
+
id: Scalars['ID']['input'];
|
|
182202
|
+
input: KitsuneUpdateInsightInput;
|
|
182203
|
+
};
|
|
181312
182204
|
export type MutationKitsune_UpdateOrganizationArgs = {
|
|
181313
182205
|
defaultCustomerId?: InputMaybe<Scalars['ID']['input']>;
|
|
181314
182206
|
domain?: InputMaybe<KitsuneOrganizationDomainInput>;
|
|
@@ -181330,11 +182222,19 @@ export type MutationKitsune_UpdateSectionArgs = {
|
|
|
181330
182222
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
181331
182223
|
sectionAri: Scalars['ID']['input'];
|
|
181332
182224
|
};
|
|
182225
|
+
export type MutationKitsune_UpdateSectionV2Args = {
|
|
182226
|
+
id: Scalars['ID']['input'];
|
|
182227
|
+
input: KitsuneUpdateSectionInput;
|
|
182228
|
+
};
|
|
181333
182229
|
export type MutationKitsune_UpdateSnippetArgs = {
|
|
181334
182230
|
content?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
181335
182231
|
id: Scalars['ID']['input'];
|
|
181336
182232
|
insightId?: InputMaybe<Scalars['ID']['input']>;
|
|
181337
182233
|
};
|
|
182234
|
+
export type MutationKitsune_UpdateSnippetV2Args = {
|
|
182235
|
+
id: Scalars['ID']['input'];
|
|
182236
|
+
input: KitsuneUpdateSnippetInput;
|
|
182237
|
+
};
|
|
181338
182238
|
export type MutationKitsune_UpdateSpaceArgs = {
|
|
181339
182239
|
accessLevel?: InputMaybe<KitsuneSpaceAccessLevel>;
|
|
181340
182240
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -181348,6 +182248,10 @@ export type MutationKitsune_UpdateViewArgs = {
|
|
|
181348
182248
|
id: Scalars['ID']['input'];
|
|
181349
182249
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
181350
182250
|
};
|
|
182251
|
+
export type MutationKitsune_UpdateViewV2Args = {
|
|
182252
|
+
id: Scalars['ID']['input'];
|
|
182253
|
+
input: KitsuneUpdateViewInput;
|
|
182254
|
+
};
|
|
181351
182255
|
export type MutationKnowledgeBaseArgs = {
|
|
181352
182256
|
cloudId: Scalars['ID']['input'];
|
|
181353
182257
|
};
|
|
@@ -181652,6 +182556,9 @@ export type MutationPlaybook_UpdateJiraPlaybookLabelArgs = {
|
|
|
181652
182556
|
export type MutationPlaybook_UpdateJiraPlaybookStateArgs = {
|
|
181653
182557
|
input: UpdateJiraPlaybookStateInput;
|
|
181654
182558
|
};
|
|
182559
|
+
export type MutationProcessCombinedAppBuildArgs = {
|
|
182560
|
+
input: ProcessCombinedAppBuildInput;
|
|
182561
|
+
};
|
|
181655
182562
|
export type MutationProjects_AddGoalLinkArgs = {
|
|
181656
182563
|
input: TownsquareProjectsAddGoalLink;
|
|
181657
182564
|
};
|
|
@@ -181974,14 +182881,6 @@ export type MutationRadar_UpdateWorkspaceSettingsArgs = {
|
|
|
181974
182881
|
cloudId: Scalars['ID']['input'];
|
|
181975
182882
|
input: RadarWorkspaceSettingsInput;
|
|
181976
182883
|
};
|
|
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
182884
|
export type MutationRadar_UpsertLastAppliedFilterArgs = {
|
|
181986
182885
|
cloudId: Scalars['ID']['input'];
|
|
181987
182886
|
input: RadarLastAppliedFilterInput;
|
|
@@ -185242,6 +186141,84 @@ export type ProactiveAiStratusTestInsightsResponse = {
|
|
|
185242
186141
|
minionResults: Array<ProactiveAiStratusTestInsightsMinionResult>;
|
|
185243
186142
|
traceId: Scalars['String']['output'];
|
|
185244
186143
|
};
|
|
186144
|
+
export type ProactiveAiUserActionItem = {
|
|
186145
|
+
__typename?: 'ProactiveAiUserActionItem';
|
|
186146
|
+
assignee: Scalars['String']['output'];
|
|
186147
|
+
confidence: Scalars['Float']['output'];
|
|
186148
|
+
createdContext?: Maybe<Scalars['String']['output']>;
|
|
186149
|
+
firstDetectedAt: Scalars['String']['output'];
|
|
186150
|
+
handoff?: Maybe<ProactiveAiUserActionItemHandoff>;
|
|
186151
|
+
headline: Scalars['String']['output'];
|
|
186152
|
+
id: Scalars['ID']['output'];
|
|
186153
|
+
lastObservedAt: Scalars['String']['output'];
|
|
186154
|
+
linkedEvidence: Array<ProactiveAiUserActionItemEvidence>;
|
|
186155
|
+
source: ProactiveAiUserActionItemSource;
|
|
186156
|
+
state: ProactiveAiUserActionItemState;
|
|
186157
|
+
subtype: ProactiveAiUserActionItemSubtype;
|
|
186158
|
+
summary: Scalars['String']['output'];
|
|
186159
|
+
type: ProactiveAiUserActionItemType;
|
|
186160
|
+
};
|
|
186161
|
+
export type ProactiveAiUserActionItemEvidence = {
|
|
186162
|
+
__typename?: 'ProactiveAiUserActionItemEvidence';
|
|
186163
|
+
ari: Scalars['ID']['output'];
|
|
186164
|
+
confidence: Scalars['Float']['output'];
|
|
186165
|
+
url: Scalars['String']['output'];
|
|
186166
|
+
};
|
|
186167
|
+
export type ProactiveAiUserActionItemHandoff = {
|
|
186168
|
+
__typename?: 'ProactiveAiUserActionItemHandoff';
|
|
186169
|
+
goal: Scalars['String']['output'];
|
|
186170
|
+
guidance: Array<Scalars['String']['output']>;
|
|
186171
|
+
prompt: Scalars['String']['output'];
|
|
186172
|
+
};
|
|
186173
|
+
export declare enum ProactiveAiUserActionItemSource {
|
|
186174
|
+
GoogleTasks = "GOOGLE_TASKS",
|
|
186175
|
+
Inferred = "INFERRED",
|
|
186176
|
+
Jira = "JIRA",
|
|
186177
|
+
Jsm = "JSM",
|
|
186178
|
+
Other = "OTHER",
|
|
186179
|
+
Trello = "TRELLO"
|
|
186180
|
+
}
|
|
186181
|
+
export declare enum ProactiveAiUserActionItemState {
|
|
186182
|
+
Done = "DONE",
|
|
186183
|
+
Dropped = "DROPPED",
|
|
186184
|
+
InProgress = "IN_PROGRESS",
|
|
186185
|
+
Open = "OPEN"
|
|
186186
|
+
}
|
|
186187
|
+
export declare enum ProactiveAiUserActionItemSubtype {
|
|
186188
|
+
Decide = "DECIDE",
|
|
186189
|
+
Draft = "DRAFT",
|
|
186190
|
+
FollowUp = "FOLLOW_UP",
|
|
186191
|
+
Other = "OTHER",
|
|
186192
|
+
Prepare = "PREPARE",
|
|
186193
|
+
Reply = "REPLY",
|
|
186194
|
+
Review = "REVIEW",
|
|
186195
|
+
Send = "SEND"
|
|
186196
|
+
}
|
|
186197
|
+
export declare enum ProactiveAiUserActionItemType {
|
|
186198
|
+
ActionItem = "ACTION_ITEM"
|
|
186199
|
+
}
|
|
186200
|
+
export type ProactiveAiUserActionItemsGenerationResponse = {
|
|
186201
|
+
__typename?: 'ProactiveAiUserActionItemsGenerationResponse';
|
|
186202
|
+
available: Scalars['Boolean']['output'];
|
|
186203
|
+
generatedAt?: Maybe<Scalars['String']['output']>;
|
|
186204
|
+
jobId?: Maybe<Scalars['String']['output']>;
|
|
186205
|
+
};
|
|
186206
|
+
export type ProactiveAiUserActionItemsResponse = {
|
|
186207
|
+
__typename?: 'ProactiveAiUserActionItemsResponse';
|
|
186208
|
+
actionItems: Array<ProactiveAiUserActionItem>;
|
|
186209
|
+
generatedAt: Scalars['String']['output'];
|
|
186210
|
+
schemaVersion: Scalars['Int']['output'];
|
|
186211
|
+
};
|
|
186212
|
+
export type ProcessCombinedAppBuildInput = {
|
|
186213
|
+
appId: Scalars['ID']['input'];
|
|
186214
|
+
buildTag: Scalars['String']['input'];
|
|
186215
|
+
};
|
|
186216
|
+
export type ProcessCombinedAppBuildResponse = Payload & {
|
|
186217
|
+
__typename?: 'ProcessCombinedAppBuildResponse';
|
|
186218
|
+
buildTag?: Maybe<Scalars['String']['output']>;
|
|
186219
|
+
errors?: Maybe<Array<MutationError>>;
|
|
186220
|
+
success: Scalars['Boolean']['output'];
|
|
186221
|
+
};
|
|
185245
186222
|
export declare enum Product {
|
|
185246
186223
|
Confluence = "CONFLUENCE"
|
|
185247
186224
|
}
|
|
@@ -185323,12 +186300,21 @@ export type PsmActiveSensors = {
|
|
|
185323
186300
|
};
|
|
185324
186301
|
export type PsmActiveSensorsFilter = {
|
|
185325
186302
|
category?: InputMaybe<Scalars['String']['input']>;
|
|
186303
|
+
remediationCategories?: InputMaybe<Array<PsmRemediationCategory>>;
|
|
185326
186304
|
remediationModes?: InputMaybe<Array<PsmRemediationMode>>;
|
|
185327
186305
|
};
|
|
185328
186306
|
export declare enum PsmActorType {
|
|
185329
186307
|
System = "SYSTEM",
|
|
185330
186308
|
User = "USER"
|
|
185331
186309
|
}
|
|
186310
|
+
export type PsmAgent = {
|
|
186311
|
+
__typename?: 'PsmAgent';
|
|
186312
|
+
status: PsmAgentStatus;
|
|
186313
|
+
};
|
|
186314
|
+
export declare enum PsmAgentStatus {
|
|
186315
|
+
NotReporting = "NOT_REPORTING",
|
|
186316
|
+
Reporting = "REPORTING"
|
|
186317
|
+
}
|
|
185332
186318
|
export type PsmAuditActor = {
|
|
185333
186319
|
__typename?: 'PsmAuditActor';
|
|
185334
186320
|
accountId: Scalars['ID']['output'];
|
|
@@ -185460,8 +186446,11 @@ export declare enum PsmDeviceHealthStatus {
|
|
|
185460
186446
|
}
|
|
185461
186447
|
export type PsmDeviceIdentity = {
|
|
185462
186448
|
__typename?: 'PsmDeviceIdentity';
|
|
186449
|
+
configuration?: Maybe<PsmDeviceConfiguration>;
|
|
185463
186450
|
deviceName?: Maybe<Scalars['String']['output']>;
|
|
185464
186451
|
isDeviceOffline?: Maybe<Scalars['Boolean']['output']>;
|
|
186452
|
+
lastSeen?: Maybe<Scalars['DateTime']['output']>;
|
|
186453
|
+
owner?: Maybe<PsmDeviceOwner>;
|
|
185465
186454
|
serialNumber: Scalars['String']['output'];
|
|
185466
186455
|
};
|
|
185467
186456
|
export type PsmDeviceOwner = {
|
|
@@ -185485,6 +186474,21 @@ export declare enum PsmDeviceStatus {
|
|
|
185485
186474
|
Orphan = "ORPHAN",
|
|
185486
186475
|
Unmapped = "UNMAPPED"
|
|
185487
186476
|
}
|
|
186477
|
+
export type PsmEligibleUser = {
|
|
186478
|
+
__typename?: 'PsmEligibleUser';
|
|
186479
|
+
atlassianAccountId: Scalars['ID']['output'];
|
|
186480
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
186481
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
186482
|
+
psmAgent: PsmAgent;
|
|
186483
|
+
};
|
|
186484
|
+
export type PsmEligibleUsersListInput = {
|
|
186485
|
+
spaceId: Scalars['ID']['input'];
|
|
186486
|
+
};
|
|
186487
|
+
export type PsmEligibleUsersListResult = {
|
|
186488
|
+
__typename?: 'PsmEligibleUsersListResult';
|
|
186489
|
+
errors?: Maybe<Array<QueryError>>;
|
|
186490
|
+
users?: Maybe<Array<PsmEligibleUser>>;
|
|
186491
|
+
};
|
|
185488
186492
|
export type PsmFinishOnboardTenantInput = {
|
|
185489
186493
|
spaceId: Scalars['ID']['input'];
|
|
185490
186494
|
};
|
|
@@ -185561,6 +186565,16 @@ export type PsmRemediatedBy = {
|
|
|
185561
186565
|
kind?: Maybe<PsmActorType>;
|
|
185562
186566
|
name?: Maybe<Scalars['String']['output']>;
|
|
185563
186567
|
};
|
|
186568
|
+
export declare enum PsmRemediationCategory {
|
|
186569
|
+
Automatic = "AUTOMATIC",
|
|
186570
|
+
Manual = "MANUAL",
|
|
186571
|
+
UserPrompted = "USER_PROMPTED"
|
|
186572
|
+
}
|
|
186573
|
+
export type PsmRemediationCategoryInfo = {
|
|
186574
|
+
__typename?: 'PsmRemediationCategoryInfo';
|
|
186575
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
186576
|
+
value?: Maybe<PsmRemediationCategory>;
|
|
186577
|
+
};
|
|
185564
186578
|
export declare enum PsmRemediationMode {
|
|
185565
186579
|
AgentAction = "AGENT_ACTION",
|
|
185566
186580
|
Automated = "AUTOMATED"
|
|
@@ -185608,6 +186622,7 @@ export type PsmSensorConfig = {
|
|
|
185608
186622
|
description?: Maybe<Scalars['String']['output']>;
|
|
185609
186623
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
185610
186624
|
id: Scalars['ID']['output'];
|
|
186625
|
+
kbArticleAris?: Maybe<Array<Scalars['String']['output']>>;
|
|
185611
186626
|
name?: Maybe<Scalars['String']['output']>;
|
|
185612
186627
|
remediationType?: Maybe<PsmSensorRemediationType>;
|
|
185613
186628
|
sensorId?: Maybe<Scalars['String']['output']>;
|
|
@@ -185688,6 +186703,7 @@ export type PsmSensorTriggerState = {
|
|
|
185688
186703
|
lastRemediatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
185689
186704
|
lastRemediatedBy?: Maybe<PsmRemediatedBy>;
|
|
185690
186705
|
lastRemediationError?: Maybe<Scalars['String']['output']>;
|
|
186706
|
+
remediationCategory?: Maybe<PsmRemediationCategoryInfo>;
|
|
185691
186707
|
remediationMode?: Maybe<PsmRemediationMode>;
|
|
185692
186708
|
remediationStatus?: Maybe<PsmRemediationStatus>;
|
|
185693
186709
|
remediationType?: Maybe<PsmSensorRemediationType>;
|
|
@@ -186100,6 +187116,7 @@ export type Query = {
|
|
|
186100
187116
|
admin_breachingConnectionsForUnit?: Maybe<AdminBreachingConnectionsConnection>;
|
|
186101
187117
|
admin_checkLicensesCapacity?: Maybe<AdminCheckLicensesCapacity>;
|
|
186102
187118
|
admin_connectedAppInstallations?: Maybe<AdminConnectedResourcesConnection>;
|
|
187119
|
+
admin_domainClaims?: Maybe<AdminDomainClaimConnection>;
|
|
186103
187120
|
admin_effectiveRoleAssignmentsByPrincipal?: Maybe<AdminRoleAssignmentEffectiveConnection>;
|
|
186104
187121
|
admin_fetchConnectorFormData?: Maybe<AdminFormFieldConnection>;
|
|
186105
187122
|
admin_fetchConnectorFormEntities?: Maybe<AdminFormFieldConnection>;
|
|
@@ -186319,6 +187336,7 @@ export type Query = {
|
|
|
186319
187336
|
appSwitcher_unitProfile?: Maybe<AppSwitcherUnitProfileResult>;
|
|
186320
187337
|
apps?: Maybe<AppConnection>;
|
|
186321
187338
|
aquaOutgoingEmailLogs?: Maybe<AquaOutgoingEmailLogsQueryApi>;
|
|
187339
|
+
artifact_getArtifact?: Maybe<Artifact>;
|
|
186322
187340
|
assetsDM_adapters?: Maybe<AssetsDmAdapters>;
|
|
186323
187341
|
assetsDM_advisoryNotifications?: Maybe<AssetsDmAdvisoryNotificationsResponse>;
|
|
186324
187342
|
assetsDM_allCleansingRules?: Maybe<Array<AssetsDmDefFunction>>;
|
|
@@ -186637,6 +187655,7 @@ export type Query = {
|
|
|
186637
187655
|
confluence_getPlaylist?: Maybe<ConfluencePlaylist>;
|
|
186638
187656
|
confluence_getSmartContentFeatures?: Maybe<Array<Maybe<SmartPageFeatures>>>;
|
|
186639
187657
|
confluence_getTotalPendingContentAccessRequestsCount?: Maybe<Scalars['Int']['output']>;
|
|
187658
|
+
confluence_getTotalPendingSpaceAccessRequestsCount?: Maybe<Scalars['Int']['output']>;
|
|
186640
187659
|
confluence_getWacTemplate?: Maybe<ConfluenceWacTemplate>;
|
|
186641
187660
|
confluence_getWorkflowReviewByApplicationId?: Maybe<ConfluenceWorkflowReviewWithDecisionsPayload>;
|
|
186642
187661
|
confluence_hasClearPermissionForSpace?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -186720,6 +187739,7 @@ export type Query = {
|
|
|
186720
187739
|
confluence_spaceRoleMode?: Maybe<ConfluenceSpaceRoleMode>;
|
|
186721
187740
|
confluence_spaceWatchersUnfiltered?: Maybe<PaginatedPersonList>;
|
|
186722
187741
|
confluence_spacesByCombinationId?: Maybe<ConfluencePermissionTransitionSpaceConnection>;
|
|
187742
|
+
confluence_staticMacro?: Maybe<ConfluenceStaticMacroRendered>;
|
|
186723
187743
|
confluence_staticMacros?: Maybe<ConfluenceStaticMacroRenderedConnection>;
|
|
186724
187744
|
confluence_storage?: Maybe<ConfluenceStorage>;
|
|
186725
187745
|
confluence_subCalendarEmbedInfo?: Maybe<Array<Maybe<ConfluenceSubCalendarEmbedInfo>>>;
|
|
@@ -186795,6 +187815,7 @@ export type Query = {
|
|
|
186795
187815
|
cpls_getContributorContributionAggregations?: Maybe<CplsContributorContributionAggregationsResult>;
|
|
186796
187816
|
cpls_getContributorScopeAssociations?: Maybe<CplsContributorScopeAssociationConnection>;
|
|
186797
187817
|
cpls_getContributorWorkAssociations?: Maybe<CplsContributorWorkAssociationConnection>;
|
|
187818
|
+
cpls_getWorkContributionAggregations?: Maybe<CplsWorkContributionAggregationsResult>;
|
|
186798
187819
|
cpls_peopleView?: Maybe<CplsPeopleView>;
|
|
186799
187820
|
cpls_recommendWork?: Maybe<CplsWorkRecommendations>;
|
|
186800
187821
|
cpls_recommendWorkForContributor?: Maybe<CplsWorkRecommendations>;
|
|
@@ -187007,6 +188028,7 @@ export type Query = {
|
|
|
187007
188028
|
goals_byIds?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
187008
188029
|
goals_byKey?: Maybe<TownsquareGoal>;
|
|
187009
188030
|
goals_capabilities?: Maybe<TownsquareGoalAppCapabilities>;
|
|
188031
|
+
goals_customFieldDefinitionSearch?: Maybe<TownsquareCustomFieldDefinitionConnection>;
|
|
187010
188032
|
goals_directoryViewById?: Maybe<TownsquareDirectoryView>;
|
|
187011
188033
|
goals_directoryViewSearch?: Maybe<TownsquareDirectoryViewConnection>;
|
|
187012
188034
|
goals_explainSearch?: Maybe<TownsquareSearchExplanation>;
|
|
@@ -187043,6 +188065,7 @@ export type Query = {
|
|
|
187043
188065
|
graphInference_inferenceModels?: Maybe<GraphInferenceInferenceModelsResponse>;
|
|
187044
188066
|
graphInference_inferenceQualityMetrics?: Maybe<GraphInferenceInferenceQualityMetricsResponse>;
|
|
187045
188067
|
graphInference_inferredProjectMe?: Maybe<GraphInferenceInferredProjectMeResponse>;
|
|
188068
|
+
graphInference_inferredProjectSummaries?: Maybe<GraphInferenceInferredProjectSummariesResponse>;
|
|
187046
188069
|
graphIntegration_availableTwgCapabilityContainers?: Maybe<Array<Maybe<GraphIntegrationTwgCapabilityContainerMeta>>>;
|
|
187047
188070
|
graphIntegration_componentDirectoryDimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
|
|
187048
188071
|
graphIntegration_componentDirectoryItems?: Maybe<GraphIntegrationDirectoryItemConnection>;
|
|
@@ -187066,6 +188089,7 @@ export type Query = {
|
|
|
187066
188089
|
graphIntegration_skillDimensionMetadata?: Maybe<GraphIntegrationSkillDimensionMetadata>;
|
|
187067
188090
|
graphIntegration_skillItems?: Maybe<Array<Maybe<GraphIntegrationSkillItem>>>;
|
|
187068
188091
|
graphIntegration_twgCapabilityContainer?: Maybe<GraphIntegrationTwgCapabilityContainer>;
|
|
188092
|
+
graphIntegration_twgCapabilityContainerTools?: Maybe<Array<GraphIntegrationActionAdminManagementActionNode>>;
|
|
187069
188093
|
graphIntegration_twgCapabilityContainersInContext?: Maybe<GraphIntegrationTwgCapabilityContainerConnection>;
|
|
187070
188094
|
graphIntegration_twgPlatformCapabilityGlobalAdminSettings?: Maybe<GraphIntegrationTwgPlatformCapabilityGlobalAdminSettings>;
|
|
187071
188095
|
graphIntegration_twgProductAdminSettings?: Maybe<GraphIntegrationTwgProductAdminSettings>;
|
|
@@ -189141,6 +190165,8 @@ export type Query = {
|
|
|
189141
190165
|
graphStore_userViewedGoalUpdateInverse?: Maybe<GraphStoreSimplifiedUserViewedGoalUpdateInverseConnection>;
|
|
189142
190166
|
graphStore_userViewedGoalUpdateInverseBatch?: Maybe<GraphStoreBatchUserViewedGoalUpdateConnection>;
|
|
189143
190167
|
graphStore_userViewedJiraIssue?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueConnection>;
|
|
190168
|
+
graphStore_userViewedJiraIssueAnalyticsTest?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueAnalyticsTestConnection>;
|
|
190169
|
+
graphStore_userViewedJiraIssueAnalyticsTestInverse?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueAnalyticsTestInverseConnection>;
|
|
189144
190170
|
graphStore_userViewedJiraIssueInverse?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueInverseConnection>;
|
|
189145
190171
|
graphStore_userViewedProjectUpdate?: Maybe<GraphStoreSimplifiedUserViewedProjectUpdateConnection>;
|
|
189146
190172
|
graphStore_userViewedProjectUpdateBatch?: Maybe<GraphStoreBatchUserViewedProjectUpdateConnection>;
|
|
@@ -189209,6 +190235,7 @@ export type Query = {
|
|
|
189209
190235
|
graphStore_vulnerabilityAssociatedIssueRelationship?: Maybe<GraphStoreFullVulnerabilityAssociatedIssueConnection>;
|
|
189210
190236
|
graphStore_workerAssociatedExternalWorker?: Maybe<GraphStoreSimplifiedWorkerAssociatedExternalWorkerConnection>;
|
|
189211
190237
|
graphStore_workerAssociatedExternalWorkerInverse?: Maybe<GraphStoreSimplifiedWorkerAssociatedExternalWorkerInverseConnection>;
|
|
190238
|
+
gravity_canCreateViewsFromTemplates?: Maybe<GravityCanCreateViewsFromTemplatesResult>;
|
|
189212
190239
|
gravity_deliverySettings?: Maybe<GravityDeliverySettingsResult>;
|
|
189213
190240
|
gravity_detailedReaction?: Maybe<GravityDetailedReactionResult>;
|
|
189214
190241
|
gravity_draft?: Maybe<GravityDraft>;
|
|
@@ -189238,7 +190265,6 @@ export type Query = {
|
|
|
189238
190265
|
hasUserAccessAdminRole?: Maybe<Scalars['Boolean']['output']>;
|
|
189239
190266
|
hasUserCommented?: Maybe<Scalars['Boolean']['output']>;
|
|
189240
190267
|
helpCenter?: Maybe<HelpCenterQueryApi>;
|
|
189241
|
-
helpExternalResource?: Maybe<HelpExternalResourceQueryApi>;
|
|
189242
190268
|
helpLayout?: Maybe<HelpLayoutQueryApi>;
|
|
189243
190269
|
helpObjectStore?: Maybe<HelpObjectStoreQueryApi>;
|
|
189244
190270
|
helpObjectStore_searchArticles?: Maybe<HelpObjectStoreArticleSearchResponse>;
|
|
@@ -189310,7 +190336,10 @@ export type Query = {
|
|
|
189310
190336
|
jira_isTenantConvertedToNfa?: Maybe<Scalars['Boolean']['output']>;
|
|
189311
190337
|
jira_issueCreateAdditionalServices?: Maybe<JiraIssueCreateAdditionalServicesResult>;
|
|
189312
190338
|
jira_issueCreateFields?: Maybe<JiraIssueCreateFieldsResult>;
|
|
190339
|
+
jira_issueCreateFieldsInContext?: Maybe<JiraIssueCreateFieldsResult>;
|
|
189313
190340
|
jira_issueCreateLayout?: Maybe<JiraIssueCreateLayoutResult>;
|
|
190341
|
+
jira_issueCreateLayoutInContext?: Maybe<JiraIssueCreateLayoutResult>;
|
|
190342
|
+
jira_issueCreateLayoutInContextWithML?: Maybe<JiraIssueCreateLayoutResult>;
|
|
189314
190343
|
jira_issueCreateLayoutWithML?: Maybe<JiraIssueCreateLayoutResult>;
|
|
189315
190344
|
jira_issueSearchTopLevelIssueFieldsAggregation?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
189316
190345
|
jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
|
|
@@ -189378,6 +190407,8 @@ export type Query = {
|
|
|
189378
190407
|
jsmTelemetry_chartData?: Maybe<JsmTelemetryChartDataResult>;
|
|
189379
190408
|
jsmTelemetry_dashboard?: Maybe<JsmTelemetryDashboardResult>;
|
|
189380
190409
|
jsmTelemetry_dashboardByScope?: Maybe<JsmTelemetryDashboardData>;
|
|
190410
|
+
jsmTelemetry_discoverAllIncidentServiceMetrics?: Maybe<JsmTelemetryIncidentServiceMetricDiscoveryAllResult>;
|
|
190411
|
+
jsmTelemetry_discoverIncidentServiceMetrics?: Maybe<JsmTelemetryIncidentServiceMetricDiscoveryResult>;
|
|
189381
190412
|
jsmTelemetry_getIncidentContext?: Maybe<JsmTelemetryIncidentContextResult>;
|
|
189382
190413
|
jsmTelemetry_getMetricAttributeValues?: Maybe<JsmTelemetryMetricAttributeValuesResult>;
|
|
189383
190414
|
jsmTelemetry_getMetricAttributes?: Maybe<JsmTelemetryMetricAttributesResult>;
|
|
@@ -189461,6 +190492,7 @@ export type Query = {
|
|
|
189461
190492
|
loom_joinableWorkspaces?: Maybe<Array<Maybe<LoomJoinableWorkspace>>>;
|
|
189462
190493
|
loom_meeting?: Maybe<LoomMeeting>;
|
|
189463
190494
|
loom_meetingActionItems?: Maybe<Array<Maybe<LoomMeetingActionItem>>>;
|
|
190495
|
+
loom_meetingJiraSuggestion?: Maybe<LoomMeetingJiraSuggestion>;
|
|
189464
190496
|
loom_meetingRecurrence?: Maybe<LoomMeetingRecurrence>;
|
|
189465
190497
|
loom_meetingRecurrences?: Maybe<Array<Maybe<LoomMeetingRecurrence>>>;
|
|
189466
190498
|
loom_meetings?: Maybe<Array<Maybe<LoomMeeting>>>;
|
|
@@ -189482,7 +190514,6 @@ export type Query = {
|
|
|
189482
190514
|
loom_workspace?: Maybe<LoomWorkspace>;
|
|
189483
190515
|
loom_workspaceTrendingVideos?: Maybe<Array<Maybe<LoomVideo>>>;
|
|
189484
190516
|
loom_workspaces?: Maybe<Array<Maybe<LoomWorkspace>>>;
|
|
189485
|
-
lpLearnerData?: Maybe<LpLearnerData>;
|
|
189486
190517
|
m360Service_helloWorld?: Maybe<M360ServiceHelloWorldPayload>;
|
|
189487
190518
|
macroBodyRenderer?: Maybe<MacroBody>;
|
|
189488
190519
|
macros?: Maybe<MacroConnection>;
|
|
@@ -189504,6 +190535,7 @@ export type Query = {
|
|
|
189504
190535
|
marketplaceStore_productTagsV2?: Maybe<Array<Maybe<MarketplaceStoreProductTag>>>;
|
|
189505
190536
|
marketplaceStore_recommendationsSectionV2?: Maybe<MarketplaceStoreRecommendationsSection>;
|
|
189506
190537
|
marketplaceStore_reviewSummaryV2?: Maybe<MarketplaceStoreReviewSummaryResponse>;
|
|
190538
|
+
marketplaceStore_similarObjects?: Maybe<MarketplaceStoreSimilarObjectsResponse>;
|
|
189507
190539
|
me: AuthenticationContext;
|
|
189508
190540
|
mediaConfiguration?: Maybe<MediaConfiguration>;
|
|
189509
190541
|
media_items?: Maybe<Array<MediaItem>>;
|
|
@@ -189595,6 +190627,8 @@ export type Query = {
|
|
|
189595
190627
|
popularFeed?: Maybe<PaginatedPopularFeed>;
|
|
189596
190628
|
postOffice_getMessages?: Maybe<PostOfficeEnrichedMessagePayload>;
|
|
189597
190629
|
postOffice_placeholder?: Maybe<Scalars['String']['output']>;
|
|
190630
|
+
proactiveAi_generateUserActions?: Maybe<ProactiveAiUserActionItemsGenerationResponse>;
|
|
190631
|
+
proactiveAi_retrieveUserActions?: Maybe<ProactiveAiUserActionItemsResponse>;
|
|
189598
190632
|
proactiveAi_rovoInsightsData?: Maybe<ProactiveAiRovoInsightsDataResponse>;
|
|
189599
190633
|
proactiveAi_rovoInsightsStatus?: Maybe<ProactiveAiRovoInsightsStatusResponse>;
|
|
189600
190634
|
proactiveAi_stratusTestInsights?: Maybe<ProactiveAiStratusTestInsightsResponse>;
|
|
@@ -189630,6 +190664,7 @@ export type Query = {
|
|
|
189630
190664
|
psm_dashboardOverview?: Maybe<PsmDashboardOverview>;
|
|
189631
190665
|
psm_device?: Maybe<PsmDevice>;
|
|
189632
190666
|
psm_devices?: Maybe<PsmDeviceConnection>;
|
|
190667
|
+
psm_eligibleUsersList?: Maybe<PsmEligibleUsersListResult>;
|
|
189633
190668
|
psm_onboardTenantStatus?: Maybe<PsmOnboardTenantStatusResult>;
|
|
189634
190669
|
psm_sensorCategories?: Maybe<PsmSensorCategoriesResult>;
|
|
189635
190670
|
psm_sensorDetails?: Maybe<PsmSensorConfigResult>;
|
|
@@ -189649,8 +190684,6 @@ export type Query = {
|
|
|
189649
190684
|
quickReload?: Maybe<QuickReload>;
|
|
189650
190685
|
radar_aiConnectorById?: Maybe<RadarAiConnector>;
|
|
189651
190686
|
radar_aiConnectors?: Maybe<RadarAiConnectorsConnection>;
|
|
189652
|
-
radar_aiScopedBudgetPolicies?: Maybe<RadarAiScopedBudgetPolicyConnection>;
|
|
189653
|
-
radar_aiWorkspaceBudgetPolicy?: Maybe<RadarAiWorkspaceBudgetPolicy>;
|
|
189654
190687
|
radar_availableCustomFieldsFromLastSync?: Maybe<RadarAvailableCustomFieldsFromLastSync>;
|
|
189655
190688
|
radar_benchmarks?: Maybe<Array<RadarMetricSettings>>;
|
|
189656
190689
|
radar_connectors?: Maybe<Array<RadarConnector>>;
|
|
@@ -189903,6 +190936,7 @@ export type Query = {
|
|
|
189903
190936
|
users?: Maybe<Array<User>>;
|
|
189904
190937
|
usersWithContentRestrictions?: Maybe<Array<Maybe<UserWithRestrictions>>>;
|
|
189905
190938
|
uts_allowanceExemptions?: Maybe<UtsAllowanceExemptionList>;
|
|
190939
|
+
uts_allowancePoolsByOwner?: Maybe<Array<Maybe<UtsAllowancePool>>>;
|
|
189906
190940
|
uts_meterConfiguration?: Maybe<UtsMeterConfiguration>;
|
|
189907
190941
|
uts_usageAlerts?: Maybe<Array<Maybe<UtsUsageAlert>>>;
|
|
189908
190942
|
validateConvertPageToLiveEdit?: Maybe<ConvertPageToLiveEditValidationResult>;
|
|
@@ -189992,6 +191026,7 @@ export type QueryAdmin_AuditLogEventIpAddressesArgs = {
|
|
|
189992
191026
|
filter?: InputMaybe<Scalars['String']['input']>;
|
|
189993
191027
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
189994
191028
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
191029
|
+
queryId?: InputMaybe<Scalars['String']['input']>;
|
|
189995
191030
|
};
|
|
189996
191031
|
export type QueryAdmin_AuditLogEventLocationsArgs = {
|
|
189997
191032
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -190000,6 +191035,7 @@ export type QueryAdmin_AuditLogEventLocationsArgs = {
|
|
|
190000
191035
|
filter?: InputMaybe<Scalars['String']['input']>;
|
|
190001
191036
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
190002
191037
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
191038
|
+
queryId?: InputMaybe<Scalars['String']['input']>;
|
|
190003
191039
|
};
|
|
190004
191040
|
export type QueryAdmin_AuditLogEventsArgs = {
|
|
190005
191041
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -190045,6 +191081,11 @@ export type QueryAdmin_ConnectedAppInstallationsArgs = {
|
|
|
190045
191081
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
190046
191082
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
190047
191083
|
};
|
|
191084
|
+
export type QueryAdmin_DomainClaimsArgs = {
|
|
191085
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
191086
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
191087
|
+
orgId: Scalars['ID']['input'];
|
|
191088
|
+
};
|
|
190048
191089
|
export type QueryAdmin_EffectiveRoleAssignmentsByPrincipalArgs = {
|
|
190049
191090
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
190050
191091
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -190710,6 +191751,7 @@ export type QueryAgentWorkspace_DraftedRoutingTableStatusArgs = {
|
|
|
190710
191751
|
};
|
|
190711
191752
|
export type QueryAgentWorkspace_DraftedTeamRoutingTableEntriesArgs = {
|
|
190712
191753
|
cloudId: Scalars['ID']['input'];
|
|
191754
|
+
draftId?: InputMaybe<Scalars['ID']['input']>;
|
|
190713
191755
|
projectKey: Scalars['String']['input'];
|
|
190714
191756
|
};
|
|
190715
191757
|
export type QueryAgentWorkspace_EligibleGroupsArgs = {
|
|
@@ -191209,6 +192251,9 @@ export type QueryAppsArgs = {
|
|
|
191209
192251
|
export type QueryAquaOutgoingEmailLogsArgs = {
|
|
191210
192252
|
cloudId: Scalars['ID']['input'];
|
|
191211
192253
|
};
|
|
192254
|
+
export type QueryArtifact_GetArtifactArgs = {
|
|
192255
|
+
id: Scalars['ID']['input'];
|
|
192256
|
+
};
|
|
191212
192257
|
export type QueryAssetsDm_AdaptersArgs = {
|
|
191213
192258
|
cloudId: Scalars['ID']['input'];
|
|
191214
192259
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -192705,6 +193750,9 @@ export type QueryConfluence_GetSmartContentFeaturesArgs = {
|
|
|
192705
193750
|
export type QueryConfluence_GetTotalPendingContentAccessRequestsCountArgs = {
|
|
192706
193751
|
cloudId: Scalars['ID']['input'];
|
|
192707
193752
|
};
|
|
193753
|
+
export type QueryConfluence_GetTotalPendingSpaceAccessRequestsCountArgs = {
|
|
193754
|
+
cloudId: Scalars['ID']['input'];
|
|
193755
|
+
};
|
|
192708
193756
|
export type QueryConfluence_GetWacTemplateArgs = {
|
|
192709
193757
|
cloudId: Scalars['ID']['input'];
|
|
192710
193758
|
};
|
|
@@ -193108,6 +194156,12 @@ export type QueryConfluence_SpacesByCombinationIdArgs = {
|
|
|
193108
194156
|
spaceSelection?: InputMaybe<ConfluencePermissionTransitionSpaceTargetSelectionInput>;
|
|
193109
194157
|
spaceTypeFilters?: InputMaybe<Array<InputMaybe<ConfluencePermissionTransitionSpaceTypeFilter>>>;
|
|
193110
194158
|
};
|
|
194159
|
+
export type QueryConfluence_StaticMacroArgs = {
|
|
194160
|
+
cloudId: Scalars['ID']['input'];
|
|
194161
|
+
contentId: Scalars['ID']['input'];
|
|
194162
|
+
localId: Scalars['String']['input'];
|
|
194163
|
+
mode?: InputMaybe<MacroRendererMode>;
|
|
194164
|
+
};
|
|
193111
194165
|
export type QueryConfluence_StaticMacrosArgs = {
|
|
193112
194166
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
193113
194167
|
cloudId: Scalars['ID']['input'];
|
|
@@ -193525,6 +194579,9 @@ export type QueryCpls_GetContributorScopeAssociationsArgs = {
|
|
|
193525
194579
|
export type QueryCpls_GetContributorWorkAssociationsArgs = {
|
|
193526
194580
|
input: CplsGetContributorWorkAssociationsInput;
|
|
193527
194581
|
};
|
|
194582
|
+
export type QueryCpls_GetWorkContributionAggregationsArgs = {
|
|
194583
|
+
input: CplsGetWorkContributionAggregationsInput;
|
|
194584
|
+
};
|
|
193528
194585
|
export type QueryCpls_PeopleViewArgs = {
|
|
193529
194586
|
filters?: InputMaybe<CplsFiltersInput>;
|
|
193530
194587
|
id: Scalars['ID']['input'];
|
|
@@ -193984,6 +195041,7 @@ export type QueryDevai_AutodevNextWorkstreamTasksArgs = {
|
|
|
193984
195041
|
export type QueryDevai_AutodevNextWorkstreamsArgs = {
|
|
193985
195042
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
193986
195043
|
cloudId: Scalars['ID']['input'];
|
|
195044
|
+
filter?: InputMaybe<DevAiAutodevNextWorkstreamFilter>;
|
|
193987
195045
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
193988
195046
|
};
|
|
193989
195047
|
export type QueryDevai_AutodevRovoAgentsArgs = {
|
|
@@ -194426,6 +195484,13 @@ export type QueryGoals_ByKeyArgs = {
|
|
|
194426
195484
|
export type QueryGoals_CapabilitiesArgs = {
|
|
194427
195485
|
containerId: Scalars['ID']['input'];
|
|
194428
195486
|
};
|
|
195487
|
+
export type QueryGoals_CustomFieldDefinitionSearchArgs = {
|
|
195488
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
195489
|
+
containerId: Scalars['ID']['input'];
|
|
195490
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
195491
|
+
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
195492
|
+
sort?: InputMaybe<Array<InputMaybe<TownsquareCustomFieldSortEnum>>>;
|
|
195493
|
+
};
|
|
194429
195494
|
export type QueryGoals_DirectoryViewByIdArgs = {
|
|
194430
195495
|
containerId: Scalars['ID']['input'];
|
|
194431
195496
|
directoryId: Scalars['ID']['input'];
|
|
@@ -194653,6 +195718,10 @@ export type QueryGraphIntegration_TwgCapabilityContainerArgs = {
|
|
|
194653
195718
|
contextAri: Scalars['ID']['input'];
|
|
194654
195719
|
id: Scalars['String']['input'];
|
|
194655
195720
|
};
|
|
195721
|
+
export type QueryGraphIntegration_TwgCapabilityContainerToolsArgs = {
|
|
195722
|
+
contextAri: Scalars['ID']['input'];
|
|
195723
|
+
productAri: Scalars['ID']['input'];
|
|
195724
|
+
};
|
|
194656
195725
|
export type QueryGraphIntegration_TwgCapabilityContainersInContextArgs = {
|
|
194657
195726
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
194658
195727
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -210090,6 +211159,22 @@ export type QueryGraphStore_UserViewedJiraIssueArgs = {
|
|
|
210090
211159
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
210091
211160
|
sort?: InputMaybe<GraphStoreUserViewedJiraIssueSortInput>;
|
|
210092
211161
|
};
|
|
211162
|
+
export type QueryGraphStore_UserViewedJiraIssueAnalyticsTestArgs = {
|
|
211163
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
211164
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
211165
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
211166
|
+
id: Scalars['ID']['input'];
|
|
211167
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
211168
|
+
sort?: InputMaybe<GraphStoreUserViewedJiraIssueAnalyticsTestSortInput>;
|
|
211169
|
+
};
|
|
211170
|
+
export type QueryGraphStore_UserViewedJiraIssueAnalyticsTestInverseArgs = {
|
|
211171
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
211172
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
211173
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
211174
|
+
id: Scalars['ID']['input'];
|
|
211175
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
211176
|
+
sort?: InputMaybe<GraphStoreUserViewedJiraIssueAnalyticsTestSortInput>;
|
|
211177
|
+
};
|
|
210093
211178
|
export type QueryGraphStore_UserViewedJiraIssueInverseArgs = {
|
|
210094
211179
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
210095
211180
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -210594,6 +211679,11 @@ export type QueryGraphStore_WorkerAssociatedExternalWorkerInverseArgs = {
|
|
|
210594
211679
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
210595
211680
|
sort?: InputMaybe<GraphStoreWorkerAssociatedExternalWorkerSortInput>;
|
|
210596
211681
|
};
|
|
211682
|
+
export type QueryGravity_CanCreateViewsFromTemplatesArgs = {
|
|
211683
|
+
cloudId: Scalars['ID']['input'];
|
|
211684
|
+
projectId: Scalars['ID']['input'];
|
|
211685
|
+
templates: Array<GravityCanCreateViewFromTemplateInput>;
|
|
211686
|
+
};
|
|
210597
211687
|
export type QueryGravity_DeliverySettingsArgs = {
|
|
210598
211688
|
cloudId: Scalars['ID']['input'];
|
|
210599
211689
|
projectId: Scalars['ID']['input'];
|
|
@@ -210705,9 +211795,6 @@ export type QueryHasUserCommentedArgs = {
|
|
|
210705
211795
|
export type QueryHelpCenterArgs = {
|
|
210706
211796
|
cloudId: Scalars['ID']['input'];
|
|
210707
211797
|
};
|
|
210708
|
-
export type QueryHelpExternalResourceArgs = {
|
|
210709
|
-
cloudId: Scalars['ID']['input'];
|
|
210710
|
-
};
|
|
210711
211798
|
export type QueryHelpLayoutArgs = {
|
|
210712
211799
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
210713
211800
|
};
|
|
@@ -210987,6 +212074,21 @@ export type QueryJira_IssueCreateFieldsArgs = {
|
|
|
210987
212074
|
project?: InputMaybe<JiraProjectInput>;
|
|
210988
212075
|
requestType?: InputMaybe<JiraRequestTypeInput>;
|
|
210989
212076
|
};
|
|
212077
|
+
export type QueryJira_IssueCreateFieldsInContextArgs = {
|
|
212078
|
+
additionalContext: JiraIssueCreateContextInput;
|
|
212079
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
212080
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
212081
|
+
cloudId: Scalars['ID']['input'];
|
|
212082
|
+
defaultValues?: InputMaybe<JiraIssueFieldsInput>;
|
|
212083
|
+
evaluateMiniMode?: InputMaybe<Scalars['Boolean']['input']>;
|
|
212084
|
+
fieldsFilter?: InputMaybe<JiraIssueCreateFieldsFilter>;
|
|
212085
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
212086
|
+
issueCreateType?: InputMaybe<JiraIssueCreateTypeFilter>;
|
|
212087
|
+
issueType?: InputMaybe<JiraIssueTypeInput>;
|
|
212088
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
212089
|
+
project?: InputMaybe<JiraProjectInput>;
|
|
212090
|
+
requestType?: InputMaybe<JiraRequestTypeInput>;
|
|
212091
|
+
};
|
|
210990
212092
|
export type QueryJira_IssueCreateLayoutArgs = {
|
|
210991
212093
|
cloudId: Scalars['ID']['input'];
|
|
210992
212094
|
issueType?: InputMaybe<JiraIssueTypeInput>;
|
|
@@ -210995,6 +212097,24 @@ export type QueryJira_IssueCreateLayoutArgs = {
|
|
|
210995
212097
|
requestType?: InputMaybe<JiraRequestTypeInput>;
|
|
210996
212098
|
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
210997
212099
|
};
|
|
212100
|
+
export type QueryJira_IssueCreateLayoutInContextArgs = {
|
|
212101
|
+
additionalContext: JiraIssueCreateContextInput;
|
|
212102
|
+
cloudId: Scalars['ID']['input'];
|
|
212103
|
+
issueCreateType?: InputMaybe<JiraIssueCreateTypeFilter>;
|
|
212104
|
+
issueType?: InputMaybe<JiraIssueTypeInput>;
|
|
212105
|
+
layoutFilter?: InputMaybe<JiraIssueCreateLayoutFilter>;
|
|
212106
|
+
project?: InputMaybe<JiraProjectInput>;
|
|
212107
|
+
requestType?: InputMaybe<JiraRequestTypeInput>;
|
|
212108
|
+
};
|
|
212109
|
+
export type QueryJira_IssueCreateLayoutInContextWithMlArgs = {
|
|
212110
|
+
additionalContext: JiraIssueCreateContextInput;
|
|
212111
|
+
cloudId: Scalars['ID']['input'];
|
|
212112
|
+
issueCreateType?: InputMaybe<JiraIssueCreateTypeFilter>;
|
|
212113
|
+
issueType?: InputMaybe<JiraIssueTypeInput>;
|
|
212114
|
+
layoutFilter?: InputMaybe<JiraIssueCreateLayoutFilter>;
|
|
212115
|
+
project?: InputMaybe<JiraProjectInput>;
|
|
212116
|
+
requestType?: InputMaybe<JiraRequestTypeInput>;
|
|
212117
|
+
};
|
|
210998
212118
|
export type QueryJira_IssueCreateLayoutWithMlArgs = {
|
|
210999
212119
|
cloudId: Scalars['ID']['input'];
|
|
211000
212120
|
issueType?: InputMaybe<JiraIssueTypeInput>;
|
|
@@ -211285,6 +212405,16 @@ export type QueryJsmTelemetry_DashboardByScopeArgs = {
|
|
|
211285
212405
|
scopeId: Scalars['String']['input'];
|
|
211286
212406
|
scopeType: JsmTelemetryScopeType;
|
|
211287
212407
|
};
|
|
212408
|
+
export type QueryJsmTelemetry_DiscoverAllIncidentServiceMetricsArgs = {
|
|
212409
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
212410
|
+
incidentId: Scalars['ID']['input'];
|
|
212411
|
+
input: JsmTelemetryIncidentServiceMetricDiscoveryAllInput;
|
|
212412
|
+
};
|
|
212413
|
+
export type QueryJsmTelemetry_DiscoverIncidentServiceMetricsArgs = {
|
|
212414
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
212415
|
+
incidentId: Scalars['ID']['input'];
|
|
212416
|
+
input: JsmTelemetryIncidentServiceMetricDiscoveryInput;
|
|
212417
|
+
};
|
|
211288
212418
|
export type QueryJsmTelemetry_GetIncidentContextArgs = {
|
|
211289
212419
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
211290
212420
|
incidentId: Scalars['ID']['input'];
|
|
@@ -211617,6 +212747,10 @@ export type QueryLoom_MeetingArgs = {
|
|
|
211617
212747
|
export type QueryLoom_MeetingActionItemsArgs = {
|
|
211618
212748
|
id: Scalars['ID']['input'];
|
|
211619
212749
|
};
|
|
212750
|
+
export type QueryLoom_MeetingJiraSuggestionArgs = {
|
|
212751
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
212752
|
+
videoId: Scalars['ID']['input'];
|
|
212753
|
+
};
|
|
211620
212754
|
export type QueryLoom_MeetingRecurrenceArgs = {
|
|
211621
212755
|
id: Scalars['ID']['input'];
|
|
211622
212756
|
};
|
|
@@ -211762,6 +212896,9 @@ export type QueryMarketplaceStore_ReviewSummaryV2Args = {
|
|
|
211762
212896
|
appKey: Scalars['String']['input'];
|
|
211763
212897
|
hostingType: MarketplaceStoreAtlassianProductHostingType;
|
|
211764
212898
|
};
|
|
212899
|
+
export type QueryMarketplaceStore_SimilarObjectsArgs = {
|
|
212900
|
+
input: MarketplaceStoreSimilarObjectsInput;
|
|
212901
|
+
};
|
|
211765
212902
|
export type QueryMedia_ItemsArgs = {
|
|
211766
212903
|
clientId: Scalars['String']['input'];
|
|
211767
212904
|
cloudId: Scalars['ID']['input'];
|
|
@@ -212048,6 +213185,15 @@ export type QueryPostOffice_GetMessagesArgs = {
|
|
|
212048
213185
|
locale?: InputMaybe<Scalars['String']['input']>;
|
|
212049
213186
|
payload: PostOfficeGetMessagesInput;
|
|
212050
213187
|
};
|
|
213188
|
+
export type QueryProactiveAi_GenerateUserActionsArgs = {
|
|
213189
|
+
cloudId: Scalars['ID']['input'];
|
|
213190
|
+
forceCacheMiss?: InputMaybe<Scalars['Boolean']['input']>;
|
|
213191
|
+
userId: Scalars['String']['input'];
|
|
213192
|
+
};
|
|
213193
|
+
export type QueryProactiveAi_RetrieveUserActionsArgs = {
|
|
213194
|
+
cloudId: Scalars['ID']['input'];
|
|
213195
|
+
userId: Scalars['String']['input'];
|
|
213196
|
+
};
|
|
212051
213197
|
export type QueryProactiveAi_RovoInsightsDataArgs = {
|
|
212052
213198
|
cloudId: Scalars['ID']['input'];
|
|
212053
213199
|
debugInfo?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -212213,6 +213359,10 @@ export type QueryPsm_DevicesArgs = {
|
|
|
212213
213359
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
212214
213360
|
spaceId: Scalars['ID']['input'];
|
|
212215
213361
|
};
|
|
213362
|
+
export type QueryPsm_EligibleUsersListArgs = {
|
|
213363
|
+
cloudId: Scalars['ID']['input'];
|
|
213364
|
+
input: PsmEligibleUsersListInput;
|
|
213365
|
+
};
|
|
212216
213366
|
export type QueryPsm_OnboardTenantStatusArgs = {
|
|
212217
213367
|
cloudId: Scalars['ID']['input'];
|
|
212218
213368
|
input: PsmOnboardTenantStatusInput;
|
|
@@ -212292,14 +213442,6 @@ export type QueryRadar_AiConnectorsArgs = {
|
|
|
212292
213442
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
212293
213443
|
rql?: InputMaybe<Scalars['String']['input']>;
|
|
212294
213444
|
};
|
|
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
213445
|
export type QueryRadar_AvailableCustomFieldsFromLastSyncArgs = {
|
|
212304
213446
|
cloudId: Scalars['ID']['input'];
|
|
212305
213447
|
};
|
|
@@ -212343,6 +213485,7 @@ export type QueryRadar_LastAppliedFilterArgs = {
|
|
|
212343
213485
|
};
|
|
212344
213486
|
export type QueryRadar_MetricsSettingsArgs = {
|
|
212345
213487
|
cloudId: Scalars['ID']['input'];
|
|
213488
|
+
metricKey?: InputMaybe<RadarOrgMetric>;
|
|
212346
213489
|
};
|
|
212347
213490
|
export type QueryRadar_NotificationSettingsArgs = {
|
|
212348
213491
|
cloudId: Scalars['ID']['input'];
|
|
@@ -213355,6 +214498,9 @@ export type QueryUts_AllowanceExemptionsArgs = {
|
|
|
213355
214498
|
scopeType?: InputMaybe<UtsAllowanceExemptionScopeType>;
|
|
213356
214499
|
usageKey?: InputMaybe<Scalars['String']['input']>;
|
|
213357
214500
|
};
|
|
214501
|
+
export type QueryUts_AllowancePoolsByOwnerArgs = {
|
|
214502
|
+
owner: Scalars['ID']['input'];
|
|
214503
|
+
};
|
|
213358
214504
|
export type QueryUts_MeterConfigurationArgs = {
|
|
213359
214505
|
usageKey: Scalars['String']['input'];
|
|
213360
214506
|
};
|
|
@@ -213479,9 +214625,6 @@ export type QuickReloadComment = {
|
|
|
213479
214625
|
primaryActions: Array<Maybe<CommentUserAction>>;
|
|
213480
214626
|
secondaryActions: Array<Maybe<CommentUserAction>>;
|
|
213481
214627
|
};
|
|
213482
|
-
export type RadarAiBudgetPolicyAllowanceInput = {
|
|
213483
|
-
amount: Scalars['String']['input'];
|
|
213484
|
-
};
|
|
213485
214628
|
export type RadarAiConnector = {
|
|
213486
214629
|
__typename?: 'RadarAiConnector';
|
|
213487
214630
|
config?: Maybe<RadarAiConnectorConfig>;
|
|
@@ -213564,12 +214707,6 @@ export type RadarAiScopedBudgetPolicyEdge = RadarEdge & {
|
|
|
213564
214707
|
cursor: Scalars['String']['output'];
|
|
213565
214708
|
node: RadarAiScopedBudgetPolicy;
|
|
213566
214709
|
};
|
|
213567
|
-
export type RadarAiWorkspaceBudgetPolicy = {
|
|
213568
|
-
__typename?: 'RadarAiWorkspaceBudgetPolicy';
|
|
213569
|
-
allowance: RadarMoney;
|
|
213570
|
-
allowanceAmount: Scalars['Int']['output'];
|
|
213571
|
-
id: Scalars['ID']['output'];
|
|
213572
|
-
};
|
|
213573
214710
|
export type RadarAriFieldValue = {
|
|
213574
214711
|
__typename?: 'RadarAriFieldValue';
|
|
213575
214712
|
ari?: Maybe<Scalars['ID']['output']>;
|
|
@@ -214411,24 +215548,6 @@ export type RadarUpdateWorkerSkillMappingsResponse = {
|
|
|
214411
215548
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
214412
215549
|
workerId: Scalars['ID']['output'];
|
|
214413
215550
|
};
|
|
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
215551
|
export type RadarUpsertViewInput = {
|
|
214433
215552
|
groupingField?: InputMaybe<Scalars['String']['input']>;
|
|
214434
215553
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -215981,6 +217100,7 @@ export declare enum Scope {
|
|
|
215981
217100
|
DashboardPropertyWrite = "DASHBOARD_PROPERTY_WRITE",
|
|
215982
217101
|
DashboardRead = "DASHBOARD_READ",
|
|
215983
217102
|
DashboardWrite = "DASHBOARD_WRITE",
|
|
217103
|
+
DeleteArtifactArtifacts = "DELETE_ARTIFACT_ARTIFACTS",
|
|
215984
217104
|
DeleteAssetsTwgCli = "DELETE_ASSETS_TWG_CLI",
|
|
215985
217105
|
DeleteBitbucketTwgCli = "DELETE_BITBUCKET_TWG_CLI",
|
|
215986
217106
|
DeleteCompassTwgCli = "DELETE_COMPASS_TWG_CLI",
|
|
@@ -216177,6 +217297,7 @@ export declare enum Scope {
|
|
|
216177
217297
|
ReadAppInstallation = "READ_APP_INSTALLATION",
|
|
216178
217298
|
ReadAppLogs = "READ_APP_LOGS",
|
|
216179
217299
|
ReadAppSystemToken = "READ_APP_SYSTEM_TOKEN",
|
|
217300
|
+
ReadArtifactArtifacts = "READ_ARTIFACT_ARTIFACTS",
|
|
216180
217301
|
ReadAssetsTwgCli = "READ_ASSETS_TWG_CLI",
|
|
216181
217302
|
ReadCapacityPlanning = "READ_CAPACITY_PLANNING",
|
|
216182
217303
|
ReadCmdbAttributeJira = "READ_CMDB_ATTRIBUTE_JIRA",
|
|
@@ -216363,6 +217484,7 @@ export declare enum Scope {
|
|
|
216363
217484
|
WorkflowSchemeWrite = "WORKFLOW_SCHEME_WRITE",
|
|
216364
217485
|
WorkflowWrite = "WORKFLOW_WRITE",
|
|
216365
217486
|
WriteAppDetails = "WRITE_APP_DETAILS",
|
|
217487
|
+
WriteArtifactArtifacts = "WRITE_ARTIFACT_ARTIFACTS",
|
|
216366
217488
|
WriteAssetsTwgCli = "WRITE_ASSETS_TWG_CLI",
|
|
216367
217489
|
WriteCapacityPlanning = "WRITE_CAPACITY_PLANNING",
|
|
216368
217490
|
WriteCmdbAttributeJira = "WRITE_CMDB_ATTRIBUTE_JIRA",
|
|
@@ -217385,6 +218507,7 @@ export type SearchResultGraphDocument = SearchL2FeatureProvider & SearchResult &
|
|
|
217385
218507
|
id: Scalars['ID']['output'];
|
|
217386
218508
|
initialContributors?: Maybe<Array<ThirdPartyUser>>;
|
|
217387
218509
|
integrationId?: Maybe<Scalars['String']['output']>;
|
|
218510
|
+
isSharedChannel?: Maybe<Scalars['Boolean']['output']>;
|
|
217388
218511
|
l2BodyTextInput?: Maybe<Scalars['String']['output']>;
|
|
217389
218512
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
217390
218513
|
l2TitleInput?: Maybe<Scalars['String']['output']>;
|
|
@@ -217842,6 +218965,31 @@ export type SearchScrapingMetadata = {
|
|
|
217842
218965
|
searchScrapingResponsesJson?: Maybe<Scalars['String']['output']>;
|
|
217843
218966
|
searcherErrors?: Maybe<Array<SearchError>>;
|
|
217844
218967
|
};
|
|
218968
|
+
export type SearchServiceNowAttributeFilter = {
|
|
218969
|
+
field: Scalars['String']['input'];
|
|
218970
|
+
from?: InputMaybe<Scalars['String']['input']>;
|
|
218971
|
+
operator: SearchServiceNowAttributeFilterOperator;
|
|
218972
|
+
source: SearchServiceNowAttributeFilterSource;
|
|
218973
|
+
to?: InputMaybe<Scalars['String']['input']>;
|
|
218974
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
218975
|
+
values?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
218976
|
+
};
|
|
218977
|
+
export declare enum SearchServiceNowAttributeFilterOperator {
|
|
218978
|
+
Between = "BETWEEN",
|
|
218979
|
+
Eq = "EQ",
|
|
218980
|
+
Gt = "GT",
|
|
218981
|
+
Gte = "GTE",
|
|
218982
|
+
In = "IN",
|
|
218983
|
+
Lt = "LT",
|
|
218984
|
+
Lte = "LTE"
|
|
218985
|
+
}
|
|
218986
|
+
export declare enum SearchServiceNowAttributeFilterSource {
|
|
218987
|
+
AddOnPropertiesDate = "ADD_ON_PROPERTIES_DATE",
|
|
218988
|
+
Relationships = "RELATIONSHIPS"
|
|
218989
|
+
}
|
|
218990
|
+
export type SearchServiceNowFilters = {
|
|
218991
|
+
attributeFilters?: InputMaybe<Array<SearchServiceNowAttributeFilter>>;
|
|
218992
|
+
};
|
|
217845
218993
|
export type SearchSlackReaction = {
|
|
217846
218994
|
__typename?: 'SearchSlackReaction';
|
|
217847
218995
|
count: Scalars['Int']['output'];
|
|
@@ -217901,6 +219049,7 @@ export type SearchThirdPartyFilter = {
|
|
|
217901
219049
|
lastUpdatedBy?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
217902
219050
|
range?: InputMaybe<Array<InputMaybe<SearchThirdPartyRangeFilter>>>;
|
|
217903
219051
|
salesforceFilters?: InputMaybe<SearchSalesforceFilters>;
|
|
219052
|
+
serviceNowFilters?: InputMaybe<SearchServiceNowFilters>;
|
|
217904
219053
|
subtypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
217905
219054
|
teamsFilters?: InputMaybe<SearchTeamsFilters>;
|
|
217906
219055
|
thirdPartyProducts?: InputMaybe<Array<SearchThirdPartyProduct>>;
|
|
@@ -224487,7 +225636,6 @@ export type StudioTemplate = {
|
|
|
224487
225636
|
howItWorks: Array<StudioTemplateHowItWorksStep>;
|
|
224488
225637
|
id: Scalars['String']['output'];
|
|
224489
225638
|
name: Scalars['String']['output'];
|
|
224490
|
-
skills?: Maybe<Array<Scalars['String']['output']>>;
|
|
224491
225639
|
type: Scalars['String']['output'];
|
|
224492
225640
|
usageCount: Scalars['Int']['output'];
|
|
224493
225641
|
};
|
|
@@ -224703,7 +225851,6 @@ export type SubscriptionConvoai_OnAgentSessionCreateArgs = {
|
|
|
224703
225851
|
export type SubscriptionConvoai_OnAgentSessionUpdateArgs = {
|
|
224704
225852
|
cloudId: Scalars['ID']['input'];
|
|
224705
225853
|
conversationId: Scalars['ID']['input'];
|
|
224706
|
-
excludeActionExecutionMessages?: InputMaybe<Scalars['Boolean']['input']>;
|
|
224707
225854
|
};
|
|
224708
225855
|
export type SubscriptionConvoai_OnAgentSessionUpdatedByProjectsArgs = {
|
|
224709
225856
|
cloudId: Scalars['ID']['input'];
|
|
@@ -224941,8 +226088,10 @@ export type SupportRequestAddCommentInput = {
|
|
|
224941
226088
|
export type SupportRequestAdditionalTicketData = {
|
|
224942
226089
|
chatTranscript?: InputMaybe<Scalars['String']['input']>;
|
|
224943
226090
|
cloudSiteUrl?: InputMaybe<Scalars['String']['input']>;
|
|
226091
|
+
dataAccessApproval?: InputMaybe<Scalars['String']['input']>;
|
|
224944
226092
|
operationType?: InputMaybe<Scalars['String']['input']>;
|
|
224945
226093
|
parentIssueIdOrKey?: InputMaybe<Scalars['String']['input']>;
|
|
226094
|
+
priorityUrgency?: InputMaybe<Scalars['String']['input']>;
|
|
224946
226095
|
};
|
|
224947
226096
|
export type SupportRequestCatalogMutationApi = {
|
|
224948
226097
|
__typename?: 'SupportRequestCatalogMutationApi';
|
|
@@ -225706,6 +226855,11 @@ export type TeamLinkExternalTeamPayload = Payload & {
|
|
|
225706
226855
|
success: Scalars['Boolean']['output'];
|
|
225707
226856
|
teamId?: Maybe<Scalars['ID']['output']>;
|
|
225708
226857
|
};
|
|
226858
|
+
export type TeamManagerData = {
|
|
226859
|
+
__typename?: 'TeamManagerData';
|
|
226860
|
+
accountId?: Maybe<Scalars['String']['output']>;
|
|
226861
|
+
user?: Maybe<User>;
|
|
226862
|
+
};
|
|
225709
226863
|
export type TeamMember = {
|
|
225710
226864
|
__typename?: 'TeamMember';
|
|
225711
226865
|
member?: Maybe<User>;
|
|
@@ -226020,6 +227174,30 @@ export declare enum TeamNotificationType {
|
|
|
226020
227174
|
UserRestoredTeam = "USER_RESTORED_TEAM",
|
|
226021
227175
|
UserUnarchivedTeam = "USER_UNARCHIVED_TEAM"
|
|
226022
227176
|
}
|
|
227177
|
+
export type TeamPeopleTqlPerson = {
|
|
227178
|
+
__typename?: 'TeamPeopleTqlPerson';
|
|
227179
|
+
department?: Maybe<Scalars['String']['output']>;
|
|
227180
|
+
highResolutionProfilePicture?: Maybe<Scalars['String']['output']>;
|
|
227181
|
+
id: Scalars['ID']['output'];
|
|
227182
|
+
jobTitle?: Maybe<Scalars['String']['output']>;
|
|
227183
|
+
location?: Maybe<Scalars['String']['output']>;
|
|
227184
|
+
managerData?: Maybe<TeamManagerData>;
|
|
227185
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
227186
|
+
picture?: Maybe<Scalars['String']['output']>;
|
|
227187
|
+
teamsPreview?: Maybe<Array<TeamV2>>;
|
|
227188
|
+
zoneinfo?: Maybe<Scalars['String']['output']>;
|
|
227189
|
+
};
|
|
227190
|
+
export type TeamPeopleTqlPersonConnection = {
|
|
227191
|
+
__typename?: 'TeamPeopleTqlPersonConnection';
|
|
227192
|
+
edges?: Maybe<Array<TeamPeopleTqlPersonConnectionEdge>>;
|
|
227193
|
+
nodes?: Maybe<Array<TeamPeopleTqlPerson>>;
|
|
227194
|
+
pageInfo: PageInfo;
|
|
227195
|
+
};
|
|
227196
|
+
export type TeamPeopleTqlPersonConnectionEdge = {
|
|
227197
|
+
__typename?: 'TeamPeopleTqlPersonConnectionEdge';
|
|
227198
|
+
cursor: Scalars['String']['output'];
|
|
227199
|
+
node?: Maybe<TeamPeopleTqlPerson>;
|
|
227200
|
+
};
|
|
226023
227201
|
export declare enum TeamPermission {
|
|
226024
227202
|
FullRead = "FULL_READ",
|
|
226025
227203
|
FullWrite = "FULL_WRITE",
|
|
@@ -226063,6 +227241,7 @@ export type TeamQuery = {
|
|
|
226063
227241
|
explainTeamsTql?: Maybe<TeamsTqlExplanation>;
|
|
226064
227242
|
getTeamExternalSourceDiff?: Maybe<TeamExternalSourceDiffPayload>;
|
|
226065
227243
|
notificationConfigurations?: Maybe<Array<TeamNotificationConfiguration>>;
|
|
227244
|
+
peopleTql?: Maybe<TeamPeopleTqlPersonConnection>;
|
|
226066
227245
|
roleAssignments?: Maybe<TeamRoleAssignmentsConnection>;
|
|
226067
227246
|
scopeNotificationConfigurations?: Maybe<Array<TeamScopeNotificationConfiguration>>;
|
|
226068
227247
|
team?: Maybe<Team>;
|
|
@@ -226097,6 +227276,13 @@ export type TeamQueryGetTeamExternalSourceDiffArgs = {
|
|
|
226097
227276
|
export type TeamQueryNotificationConfigurationsArgs = {
|
|
226098
227277
|
ari: Scalars['ID']['input'];
|
|
226099
227278
|
};
|
|
227279
|
+
export type TeamQueryPeopleTqlArgs = {
|
|
227280
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
227281
|
+
enablePagination?: InputMaybe<Scalars['Boolean']['input']>;
|
|
227282
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
227283
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
227284
|
+
scopeId: Scalars['ID']['input'];
|
|
227285
|
+
};
|
|
226100
227286
|
export type TeamQueryRoleAssignmentsArgs = {
|
|
226101
227287
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
226102
227288
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -227134,7 +228320,7 @@ export declare enum TownsquareAccessControlCapability {
|
|
|
227134
228320
|
Create = "CREATE"
|
|
227135
228321
|
}
|
|
227136
228322
|
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;
|
|
228323
|
+
export type TownsquareActivityChange = TownsquareEditorsAddedChange | TownsquareEditorsRemovedChange | TownsquareFollowersAddedChange | TownsquareFollowersRemovedChange | TownsquareGoalArchivedChange | TownsquareGoalCreatedChange | TownsquareGoalOwnerUpdatedChange | TownsquareGoalProgressTypeChange | TownsquareGoalRenamedChange | TownsquareGoalRestoredChange | TownsquareMetricTargetPeriodsChange | TownsquareMetricValueCreatedChange | TownsquareMetricValueDeletedChange | TownsquareMetricValueUpdatedChange | TownsquareStartDateAddedChange | TownsquareStartDateEditedChange | TownsquareTargetDateAddedChange | TownsquareTargetDateEditedChange | TownsquareUpdateDeletedChange;
|
|
227138
228324
|
export type TownsquareActivityItem = {
|
|
227139
228325
|
__typename?: 'TownsquareActivityItem';
|
|
227140
228326
|
actor?: Maybe<User>;
|
|
@@ -229283,6 +230469,16 @@ export type TownsquareMetricValueConnection = {
|
|
|
229283
230469
|
edges?: Maybe<Array<Maybe<TownsquareMetricValueEdge>>>;
|
|
229284
230470
|
pageInfo: PageInfo;
|
|
229285
230471
|
};
|
|
230472
|
+
export type TownsquareMetricValueCreatedChange = {
|
|
230473
|
+
__typename?: 'TownsquareMetricValueCreatedChange';
|
|
230474
|
+
time?: Maybe<Scalars['DateTime']['output']>;
|
|
230475
|
+
value?: Maybe<Scalars['Float']['output']>;
|
|
230476
|
+
};
|
|
230477
|
+
export type TownsquareMetricValueDeletedChange = {
|
|
230478
|
+
__typename?: 'TownsquareMetricValueDeletedChange';
|
|
230479
|
+
time?: Maybe<Scalars['DateTime']['output']>;
|
|
230480
|
+
value?: Maybe<Scalars['Float']['output']>;
|
|
230481
|
+
};
|
|
229286
230482
|
export type TownsquareMetricValueEdge = {
|
|
229287
230483
|
__typename?: 'TownsquareMetricValueEdge';
|
|
229288
230484
|
cursor: Scalars['String']['output'];
|
|
@@ -229295,6 +230491,13 @@ export declare enum TownsquareMetricValueSortEnum {
|
|
|
229295
230491
|
TimeAsc = "TIME_ASC",
|
|
229296
230492
|
TimeDesc = "TIME_DESC"
|
|
229297
230493
|
}
|
|
230494
|
+
export type TownsquareMetricValueUpdatedChange = {
|
|
230495
|
+
__typename?: 'TownsquareMetricValueUpdatedChange';
|
|
230496
|
+
newTime?: Maybe<Scalars['DateTime']['output']>;
|
|
230497
|
+
newValue?: Maybe<Scalars['Float']['output']>;
|
|
230498
|
+
oldTime?: Maybe<Scalars['DateTime']['output']>;
|
|
230499
|
+
oldValue?: Maybe<Scalars['Float']['output']>;
|
|
230500
|
+
};
|
|
229298
230501
|
export type TownsquareMilestone = Node & {
|
|
229299
230502
|
__typename?: 'TownsquareMilestone';
|
|
229300
230503
|
completionDate?: Maybe<Scalars['Date']['output']>;
|
|
@@ -232060,6 +233263,7 @@ export type TrelloAtlassianOrganization = {
|
|
|
232060
233263
|
export type TrelloAtlassianSite = {
|
|
232061
233264
|
__typename?: 'TrelloAtlassianSite';
|
|
232062
233265
|
cloudUrl?: Maybe<Scalars['String']['output']>;
|
|
233266
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
232063
233267
|
hostname?: Maybe<Scalars['String']['output']>;
|
|
232064
233268
|
isRovoAiEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
232065
233269
|
resourceId: Scalars['String']['output'];
|
|
@@ -232118,6 +233322,9 @@ export type TrelloAttachmentUpdated = {
|
|
|
232118
233322
|
__typename?: 'TrelloAttachmentUpdated';
|
|
232119
233323
|
id: Scalars['ID']['output'];
|
|
232120
233324
|
};
|
|
233325
|
+
export type TrelloAutomationCreationInput = {
|
|
233326
|
+
prompt: Scalars['String']['input'];
|
|
233327
|
+
};
|
|
232121
233328
|
export type TrelloBaseBoard = {
|
|
232122
233329
|
actions?: Maybe<TrelloCardActionConnection>;
|
|
232123
233330
|
aiMetadata?: Maybe<TrelloObjectAiMetadata>;
|
|
@@ -233653,6 +234860,19 @@ export type TrelloCreateApplicationPayload = Payload & {
|
|
|
233653
234860
|
errors?: Maybe<Array<MutationError>>;
|
|
233654
234861
|
success: Scalars['Boolean']['output'];
|
|
233655
234862
|
};
|
|
234863
|
+
export type TrelloCreateAutomationFromPromptInput = {
|
|
234864
|
+
userInput: TrelloCreateAutomationFromPromptUserInput;
|
|
234865
|
+
workspaceId: Scalars['ID']['input'];
|
|
234866
|
+
};
|
|
234867
|
+
export type TrelloCreateAutomationFromPromptPayload = Payload & {
|
|
234868
|
+
__typename?: 'TrelloCreateAutomationFromPromptPayload';
|
|
234869
|
+
cmdString?: Maybe<Scalars['String']['output']>;
|
|
234870
|
+
errors?: Maybe<Array<MutationError>>;
|
|
234871
|
+
success: Scalars['Boolean']['output'];
|
|
234872
|
+
};
|
|
234873
|
+
export type TrelloCreateAutomationFromPromptUserInput = {
|
|
234874
|
+
automationCreationInput?: InputMaybe<TrelloAutomationCreationInput>;
|
|
234875
|
+
};
|
|
233656
234876
|
export type TrelloCreateBoardBackgroundInput = {
|
|
233657
234877
|
key?: InputMaybe<Scalars['String']['input']>;
|
|
233658
234878
|
url?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -234722,6 +235942,7 @@ export type TrelloLabelUpdatedConnection = {
|
|
|
234722
235942
|
};
|
|
234723
235943
|
export declare enum TrelloLabsFeature {
|
|
234724
235944
|
AiBoardBuilder = "AI_BOARD_BUILDER",
|
|
235945
|
+
ManifestCards = "MANIFEST_CARDS",
|
|
234725
235946
|
RovoChat = "ROVO_CHAT"
|
|
234726
235947
|
}
|
|
234727
235948
|
export declare enum TrelloLabsFeatureStatus {
|
|
@@ -235445,6 +236666,7 @@ export type TrelloMutationApi = {
|
|
|
235445
236666
|
convertTemplateToBoard?: Maybe<TrelloConvertTemplateToBoardPayload>;
|
|
235446
236667
|
copyCard?: Maybe<TrelloCopyCardPayload>;
|
|
235447
236668
|
createApplication?: Maybe<TrelloCreateApplicationPayload>;
|
|
236669
|
+
createAutomationFromPrompt?: Maybe<TrelloCreateAutomationFromPromptPayload>;
|
|
235448
236670
|
createBoard?: Maybe<TrelloCreateBoardPayload>;
|
|
235449
236671
|
createBoardWithAi?: Maybe<TrelloCreateBoardWithAiPayload>;
|
|
235450
236672
|
createCard?: Maybe<TrelloCreateCardPayload>;
|
|
@@ -235579,6 +236801,7 @@ export type TrelloMutationApi = {
|
|
|
235579
236801
|
updateProposedEvent?: Maybe<TrelloUpdateProposedEventPayload>;
|
|
235580
236802
|
updateSmartScheduleBoardPreference?: Maybe<TrelloUpdateSmartScheduleBoardPreferencePayload>;
|
|
235581
236803
|
updateSmartScheduleLastActivity?: Maybe<TrelloUpdateSmartScheduleLastActivityPayload>;
|
|
236804
|
+
updateWorkspaceIconEmoji?: Maybe<TrelloUpdateWorkspaceIconEmojiPayload>;
|
|
235582
236805
|
updateWorkspaceTag?: Maybe<TrelloUpdateWorkspaceTagPayload>;
|
|
235583
236806
|
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
235584
236807
|
};
|
|
@@ -235642,6 +236865,9 @@ export type TrelloMutationApiCopyCardArgs = {
|
|
|
235642
236865
|
export type TrelloMutationApiCreateApplicationArgs = {
|
|
235643
236866
|
input: TrelloCreateApplicationInput;
|
|
235644
236867
|
};
|
|
236868
|
+
export type TrelloMutationApiCreateAutomationFromPromptArgs = {
|
|
236869
|
+
input: TrelloCreateAutomationFromPromptInput;
|
|
236870
|
+
};
|
|
235645
236871
|
export type TrelloMutationApiCreateBoardArgs = {
|
|
235646
236872
|
input: TrelloCreateBoardInput;
|
|
235647
236873
|
};
|
|
@@ -236032,6 +237258,9 @@ export type TrelloMutationApiUpdateProposedEventArgs = {
|
|
|
236032
237258
|
export type TrelloMutationApiUpdateSmartScheduleBoardPreferenceArgs = {
|
|
236033
237259
|
input: TrelloUpdateSmartScheduleBoardPreferenceInput;
|
|
236034
237260
|
};
|
|
237261
|
+
export type TrelloMutationApiUpdateWorkspaceIconEmojiArgs = {
|
|
237262
|
+
input: TrelloUpdateWorkspaceIconEmojiInput;
|
|
237263
|
+
};
|
|
236035
237264
|
export type TrelloMutationApiUpdateWorkspaceTagArgs = {
|
|
236036
237265
|
input: TrelloUpdateWorkspaceTagInput;
|
|
236037
237266
|
};
|
|
@@ -238408,6 +239637,17 @@ export type TrelloUpdateSmartScheduleLastActivityPayload = Payload & {
|
|
|
238408
239637
|
errors?: Maybe<Array<MutationError>>;
|
|
238409
239638
|
success: Scalars['Boolean']['output'];
|
|
238410
239639
|
};
|
|
239640
|
+
export type TrelloUpdateWorkspaceIconEmojiInput = {
|
|
239641
|
+
background?: InputMaybe<Scalars['String']['input']>;
|
|
239642
|
+
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
239643
|
+
workspaceId: Scalars['ID']['input'];
|
|
239644
|
+
};
|
|
239645
|
+
export type TrelloUpdateWorkspaceIconEmojiPayload = Payload & {
|
|
239646
|
+
__typename?: 'TrelloUpdateWorkspaceIconEmojiPayload';
|
|
239647
|
+
errors?: Maybe<Array<MutationError>>;
|
|
239648
|
+
success: Scalars['Boolean']['output'];
|
|
239649
|
+
workspace?: Maybe<TrelloWorkspace>;
|
|
239650
|
+
};
|
|
238411
239651
|
export type TrelloUpdateWorkspaceTagInput = {
|
|
238412
239652
|
name: Scalars['String']['input'];
|
|
238413
239653
|
tagId: Scalars['ID']['input'];
|
|
@@ -238539,6 +239779,8 @@ export type TrelloWorkspace = Node & {
|
|
|
238539
239779
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
238540
239780
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
238541
239781
|
entitlement?: Maybe<CcpEntitlement>;
|
|
239782
|
+
iconEmoji?: Maybe<Scalars['String']['output']>;
|
|
239783
|
+
iconEmojiBackground?: Maybe<TrelloWorkspaceEmojiBackground>;
|
|
238542
239784
|
id: Scalars['ID']['output'];
|
|
238543
239785
|
jwmLink?: Maybe<TrelloJwmWorkspaceLink>;
|
|
238544
239786
|
limits?: Maybe<TrelloWorkspaceLimits>;
|
|
@@ -238599,6 +239841,13 @@ export declare enum TrelloWorkspaceBoardFilterValue {
|
|
|
238599
239841
|
Closed = "CLOSED",
|
|
238600
239842
|
Open = "OPEN"
|
|
238601
239843
|
}
|
|
239844
|
+
export type TrelloWorkspaceEmojiBackground = {
|
|
239845
|
+
__typename?: 'TrelloWorkspaceEmojiBackground';
|
|
239846
|
+
endColor?: Maybe<Scalars['String']['output']>;
|
|
239847
|
+
gradient?: Maybe<Scalars['String']['output']>;
|
|
239848
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
239849
|
+
startColor?: Maybe<Scalars['String']['output']>;
|
|
239850
|
+
};
|
|
238602
239851
|
export type TrelloWorkspaceEnterpriseUpdated = {
|
|
238603
239852
|
__typename?: 'TrelloWorkspaceEnterpriseUpdated';
|
|
238604
239853
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -241350,6 +242599,7 @@ export type UserPreferences = {
|
|
|
241350
242599
|
homePagesDisplayView: PagesDisplayPersistenceOption;
|
|
241351
242600
|
homeWidgets: Array<HomeWidget>;
|
|
241352
242601
|
isCommentsPanelAutomaticSummariesEnabled: Scalars['Boolean']['output'];
|
|
242602
|
+
isCwrRemixCreationEnabled: Scalars['Boolean']['output'];
|
|
241353
242603
|
isHomeOnboardingDismissed: Scalars['Boolean']['output'];
|
|
241354
242604
|
keyboardShortcutDisabled: Scalars['Boolean']['output'];
|
|
241355
242605
|
missionControlFeatureDiscoverySuggestions: Array<Maybe<MissionControlFeatureDiscoverySuggestionState>>;
|
|
@@ -241402,6 +242652,7 @@ export type UserPreferencesInput = {
|
|
|
241402
242652
|
homePagesDisplayView?: InputMaybe<PagesDisplayPersistenceOption>;
|
|
241403
242653
|
homeWidget?: InputMaybe<HomeWidgetInput>;
|
|
241404
242654
|
isCommentsPanelAutomaticSummariesEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
242655
|
+
isCwrRemixCreationEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
241405
242656
|
isHomeOnboardingDismissed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
241406
242657
|
keyboardShortcutDisabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
241407
242658
|
missionControlFeatureDiscoverySuggestion?: InputMaybe<MissionControlFeatureDiscoverySuggestionInput>;
|
|
@@ -241512,6 +242763,14 @@ export declare enum UtsAllowanceExemptionStatus {
|
|
|
241512
242763
|
Expired = "EXPIRED",
|
|
241513
242764
|
Scheduled = "SCHEDULED"
|
|
241514
242765
|
}
|
|
242766
|
+
export type UtsAllowancePool = {
|
|
242767
|
+
__typename?: 'UtsAllowancePool';
|
|
242768
|
+
allowance?: Maybe<Scalars['Float']['output']>;
|
|
242769
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
242770
|
+
owner?: Maybe<Scalars['String']['output']>;
|
|
242771
|
+
status?: Maybe<UtsAllowancePoolStatus>;
|
|
242772
|
+
usageKey?: Maybe<Scalars['String']['output']>;
|
|
242773
|
+
};
|
|
241515
242774
|
export type UtsAllowancePoolAllocationUpdateInput = {
|
|
241516
242775
|
allocationId: Scalars['ID']['input'];
|
|
241517
242776
|
billingEntity?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -241525,6 +242784,11 @@ export type UtsAllowancePoolAllocationUpdateResult = {
|
|
|
241525
242784
|
poolId?: Maybe<Scalars['ID']['output']>;
|
|
241526
242785
|
transactionId?: Maybe<Scalars['ID']['output']>;
|
|
241527
242786
|
};
|
|
242787
|
+
export declare enum UtsAllowancePoolStatus {
|
|
242788
|
+
Active = "ACTIVE",
|
|
242789
|
+
Archived = "ARCHIVED",
|
|
242790
|
+
Inactive = "INACTIVE"
|
|
242791
|
+
}
|
|
241528
242792
|
export declare enum UtsLatestAllowanceEnforcementModeType {
|
|
241529
242793
|
Block = "BLOCK",
|
|
241530
242794
|
LimitedOverage = "LIMITED_OVERAGE",
|