@forge/cli-shared 8.15.1-next.9 → 8.15.1-next.9-experimental-3fd1b86
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 +17 -0
- package/out/graphql/graphql-types.d.ts +376 -14
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +71 -37
- package/package.json +2 -2
|
@@ -457,6 +457,23 @@ export declare type AvpChartTemplate = {
|
|
|
457
457
|
title: Scalars['String']['output'];
|
|
458
458
|
type?: Maybe<Scalars['String']['output']>;
|
|
459
459
|
};
|
|
460
|
+
export declare type AvpChartTemplatePreview = {
|
|
461
|
+
__typename?: 'AVPChartTemplatePreview';
|
|
462
|
+
data?: Maybe<AvpChartTemplatePreviewData>;
|
|
463
|
+
settings?: Maybe<AvpChartClientSettings>;
|
|
464
|
+
};
|
|
465
|
+
export declare type AvpChartTemplatePreviewColumn = {
|
|
466
|
+
__typename?: 'AVPChartTemplatePreviewColumn';
|
|
467
|
+
dataType?: Maybe<Scalars['String']['output']>;
|
|
468
|
+
header?: Maybe<Scalars['String']['output']>;
|
|
469
|
+
isNullable?: Maybe<Scalars['Boolean']['output']>;
|
|
470
|
+
};
|
|
471
|
+
export declare type AvpChartTemplatePreviewData = {
|
|
472
|
+
__typename?: 'AVPChartTemplatePreviewData';
|
|
473
|
+
chartType: Scalars['String']['output'];
|
|
474
|
+
columns?: Maybe<Array<Maybe<AvpChartTemplatePreviewColumn>>>;
|
|
475
|
+
data?: Maybe<Scalars['String']['output']>;
|
|
476
|
+
};
|
|
460
477
|
export declare type AvpClearChartInRowPayload = Payload & {
|
|
461
478
|
__typename?: 'AVPClearChartInRowPayload';
|
|
462
479
|
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
@@ -907,6 +924,22 @@ export declare enum AvpPermissionsAccessLevel {
|
|
|
907
924
|
Read = "READ",
|
|
908
925
|
Write = "WRITE"
|
|
909
926
|
}
|
|
927
|
+
export declare type AvpPermissionsCapabilityEntry = {
|
|
928
|
+
capabilityId: Scalars['String']['input'];
|
|
929
|
+
key?: InputMaybe<Scalars['String']['input']>;
|
|
930
|
+
};
|
|
931
|
+
export declare enum AvpPermissionsCapabilityFailureType {
|
|
932
|
+
CustomCheckFailed = "CUSTOM_CHECK_FAILED",
|
|
933
|
+
EditionUnavailable = "EDITION_UNAVAILABLE",
|
|
934
|
+
None = "NONE",
|
|
935
|
+
PermissionDenied = "PERMISSION_DENIED",
|
|
936
|
+
ProductRequired = "PRODUCT_REQUIRED"
|
|
937
|
+
}
|
|
938
|
+
export declare type AvpPermissionsCapabilityResult = {
|
|
939
|
+
__typename?: 'AVPPermissionsCapabilityResult';
|
|
940
|
+
capabilityId?: Maybe<Scalars['String']['output']>;
|
|
941
|
+
result?: Maybe<AvpPermissionsHasCapabilityResponse>;
|
|
942
|
+
};
|
|
910
943
|
export declare type AvpPermissionsDashboardIdentityAccess = {
|
|
911
944
|
__typename?: 'AVPPermissionsDashboardIdentityAccess';
|
|
912
945
|
dashboardId: Scalars['ID']['output'];
|
|
@@ -928,6 +961,14 @@ export declare type AvpPermissionsFailedDashboardUserAccess = {
|
|
|
928
961
|
errorMessage: Scalars['String']['output'];
|
|
929
962
|
user: AvpPermissionsDashboardUserAccessResult;
|
|
930
963
|
};
|
|
964
|
+
export declare type AvpPermissionsGetCapabilitiesInput = {
|
|
965
|
+
capabilityRequests?: InputMaybe<Array<AvpPermissionsCapabilityEntry>>;
|
|
966
|
+
cloudId: Scalars['ID']['input'];
|
|
967
|
+
};
|
|
968
|
+
export declare type AvpPermissionsGetCapabilitiesResponse = {
|
|
969
|
+
__typename?: 'AVPPermissionsGetCapabilitiesResponse';
|
|
970
|
+
capabilities?: Maybe<Array<AvpPermissionsCapabilityResult>>;
|
|
971
|
+
};
|
|
931
972
|
export declare type AvpPermissionsGetDashboardIdentityAccessInput = {
|
|
932
973
|
dashboardId: Scalars['ID']['input'];
|
|
933
974
|
directAccess?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -940,6 +981,22 @@ export declare type AvpPermissionsGroupAccess = {
|
|
|
940
981
|
group?: Maybe<IdentityGroup>;
|
|
941
982
|
principalId: Scalars['ID']['output'];
|
|
942
983
|
};
|
|
984
|
+
export declare type AvpPermissionsHasCapabilityInput = {
|
|
985
|
+
capabilityId: Scalars['String']['input'];
|
|
986
|
+
cloudId: Scalars['ID']['input'];
|
|
987
|
+
key?: InputMaybe<Scalars['String']['input']>;
|
|
988
|
+
};
|
|
989
|
+
export declare type AvpPermissionsHasCapabilityResponse = {
|
|
990
|
+
__typename?: 'AVPPermissionsHasCapabilityResponse';
|
|
991
|
+
failureCode?: Maybe<Scalars['String']['output']>;
|
|
992
|
+
failureType?: Maybe<AvpPermissionsCapabilityFailureType>;
|
|
993
|
+
hasAccess?: Maybe<Scalars['Boolean']['output']>;
|
|
994
|
+
hasManage?: Maybe<Scalars['Boolean']['output']>;
|
|
995
|
+
hasWrite?: Maybe<Scalars['Boolean']['output']>;
|
|
996
|
+
productResults?: Maybe<Array<AvpPermissionsProductCapabilityResult>>;
|
|
997
|
+
properties?: Maybe<Array<AvpPermissionsPropertyEntry>>;
|
|
998
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
999
|
+
};
|
|
943
1000
|
export declare type AvpPermissionsHelloResponse = {
|
|
944
1001
|
__typename?: 'AVPPermissionsHelloResponse';
|
|
945
1002
|
hello?: Maybe<Scalars['String']['output']>;
|
|
@@ -949,6 +1006,35 @@ export declare type AvpPermissionsPrincipals = {
|
|
|
949
1006
|
groups?: Maybe<Array<AvpPermissionsGroupAccess>>;
|
|
950
1007
|
users?: Maybe<Array<AvpPermissionsUserAccess>>;
|
|
951
1008
|
};
|
|
1009
|
+
export declare type AvpPermissionsProductCapabilityResponse = {
|
|
1010
|
+
__typename?: 'AVPPermissionsProductCapabilityResponse';
|
|
1011
|
+
failureCode?: Maybe<Scalars['String']['output']>;
|
|
1012
|
+
failureType?: Maybe<AvpPermissionsCapabilityFailureType>;
|
|
1013
|
+
hasAccess?: Maybe<Scalars['Boolean']['output']>;
|
|
1014
|
+
hasManage?: Maybe<Scalars['Boolean']['output']>;
|
|
1015
|
+
hasWrite?: Maybe<Scalars['Boolean']['output']>;
|
|
1016
|
+
properties?: Maybe<Array<AvpPermissionsPropertyEntry>>;
|
|
1017
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
1018
|
+
};
|
|
1019
|
+
export declare type AvpPermissionsProductCapabilityResult = {
|
|
1020
|
+
__typename?: 'AVPPermissionsProductCapabilityResult';
|
|
1021
|
+
productId?: Maybe<Scalars['String']['output']>;
|
|
1022
|
+
result?: Maybe<AvpPermissionsProductCapabilityResponse>;
|
|
1023
|
+
};
|
|
1024
|
+
export declare type AvpPermissionsPropertyEntry = {
|
|
1025
|
+
__typename?: 'AVPPermissionsPropertyEntry';
|
|
1026
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
1027
|
+
value?: Maybe<AvpPermissionsPropertyValue>;
|
|
1028
|
+
};
|
|
1029
|
+
export declare type AvpPermissionsPropertyValue = AvpPermissionsPropertyValueList | AvpPermissionsPropertyValueString;
|
|
1030
|
+
export declare type AvpPermissionsPropertyValueList = {
|
|
1031
|
+
__typename?: 'AVPPermissionsPropertyValueList';
|
|
1032
|
+
values?: Maybe<Array<Scalars['String']['output']>>;
|
|
1033
|
+
};
|
|
1034
|
+
export declare type AvpPermissionsPropertyValueString = {
|
|
1035
|
+
__typename?: 'AVPPermissionsPropertyValueString';
|
|
1036
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
1037
|
+
};
|
|
952
1038
|
export declare type AvpPermissionsUpdateDashboardUserAccessInput = {
|
|
953
1039
|
cloudId: Scalars['ID']['input'];
|
|
954
1040
|
containerId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -3830,6 +3916,11 @@ export declare type AgentStudioPortalChannel = AgentStudioChannel & {
|
|
|
3830
3916
|
connected?: Maybe<Scalars['Boolean']['output']>;
|
|
3831
3917
|
url?: Maybe<Scalars['String']['output']>;
|
|
3832
3918
|
};
|
|
3919
|
+
export declare type AgentStudioProductAriAgentResult = {
|
|
3920
|
+
__typename?: 'AgentStudioProductAriAgentResult';
|
|
3921
|
+
agent?: Maybe<AgentStudioAgentResult>;
|
|
3922
|
+
hasAgent: Scalars['Boolean']['output'];
|
|
3923
|
+
};
|
|
3833
3924
|
export declare enum AgentStudioProductType {
|
|
3834
3925
|
Csm = "CSM",
|
|
3835
3926
|
RovoAgents = "ROVO_AGENTS",
|
|
@@ -4229,6 +4320,19 @@ export declare type AgentWorkspaceAgentAvailability = {
|
|
|
4229
4320
|
teamNames: Array<Scalars['String']['output']>;
|
|
4230
4321
|
updatedAt: Scalars['DateTime']['output'];
|
|
4231
4322
|
};
|
|
4323
|
+
export declare type AgentWorkspaceAgentCapacity = {
|
|
4324
|
+
__typename?: 'AgentWorkspaceAgentCapacity';
|
|
4325
|
+
agentId: Scalars['ID']['output'];
|
|
4326
|
+
agentName: Scalars['String']['output'];
|
|
4327
|
+
availableSlots: Scalars['Int']['output'];
|
|
4328
|
+
currentLoad: Scalars['Int']['output'];
|
|
4329
|
+
maxCapacity: Scalars['Int']['output'];
|
|
4330
|
+
status: AgentWorkspaceCapacityStatus;
|
|
4331
|
+
teamIds: Array<Scalars['ID']['output']>;
|
|
4332
|
+
teamNames: Array<Scalars['String']['output']>;
|
|
4333
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
4334
|
+
utilizationPercent: Scalars['Float']['output'];
|
|
4335
|
+
};
|
|
4232
4336
|
export declare type AgentWorkspaceAgentShifts = {
|
|
4233
4337
|
__typename?: 'AgentWorkspaceAgentShifts';
|
|
4234
4338
|
agent: AgentWorkspaceAgent;
|
|
@@ -4276,6 +4380,51 @@ export declare type AgentWorkspaceAvailabilitySummary = {
|
|
|
4276
4380
|
onBreak: Scalars['Int']['output'];
|
|
4277
4381
|
onDuty: Scalars['Int']['output'];
|
|
4278
4382
|
};
|
|
4383
|
+
export declare type AgentWorkspaceCapacityConnection = {
|
|
4384
|
+
__typename?: 'AgentWorkspaceCapacityConnection';
|
|
4385
|
+
nodes: Array<AgentWorkspaceAgentCapacity>;
|
|
4386
|
+
pageInfo: AgentWorkspaceCapacityPageInfo;
|
|
4387
|
+
summary: AgentWorkspaceCapacitySummary;
|
|
4388
|
+
};
|
|
4389
|
+
export declare type AgentWorkspaceCapacityError = {
|
|
4390
|
+
__typename?: 'AgentWorkspaceCapacityError';
|
|
4391
|
+
code: Scalars['String']['output'];
|
|
4392
|
+
field?: Maybe<Scalars['String']['output']>;
|
|
4393
|
+
message: Scalars['String']['output'];
|
|
4394
|
+
};
|
|
4395
|
+
export declare type AgentWorkspaceCapacityInput = {
|
|
4396
|
+
agentIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4397
|
+
cloudId: Scalars['ID']['input'];
|
|
4398
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
4399
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
4400
|
+
projectKey: Scalars['String']['input'];
|
|
4401
|
+
statuses?: InputMaybe<Array<AgentWorkspaceCapacityStatus>>;
|
|
4402
|
+
teamIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4403
|
+
};
|
|
4404
|
+
export declare type AgentWorkspaceCapacityPageInfo = {
|
|
4405
|
+
__typename?: 'AgentWorkspaceCapacityPageInfo';
|
|
4406
|
+
currentPage: Scalars['Int']['output'];
|
|
4407
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
4408
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
4409
|
+
pageSize: Scalars['Int']['output'];
|
|
4410
|
+
totalCount: Scalars['Int']['output'];
|
|
4411
|
+
totalPages: Scalars['Int']['output'];
|
|
4412
|
+
};
|
|
4413
|
+
export declare enum AgentWorkspaceCapacityStatus {
|
|
4414
|
+
High = "HIGH",
|
|
4415
|
+
Idle = "IDLE",
|
|
4416
|
+
Optimal = "OPTIMAL",
|
|
4417
|
+
Overloaded = "OVERLOADED"
|
|
4418
|
+
}
|
|
4419
|
+
export declare type AgentWorkspaceCapacitySummary = {
|
|
4420
|
+
__typename?: 'AgentWorkspaceCapacitySummary';
|
|
4421
|
+
activeAgents: Scalars['Int']['output'];
|
|
4422
|
+
agentsWithWorkItems: Scalars['Int']['output'];
|
|
4423
|
+
assignedPercent: Scalars['Float']['output'];
|
|
4424
|
+
overloadedCount: Scalars['Int']['output'];
|
|
4425
|
+
totalAssignedWorkItems: Scalars['Int']['output'];
|
|
4426
|
+
totalCapacity: Scalars['Int']['output'];
|
|
4427
|
+
};
|
|
4279
4428
|
export declare type AgentWorkspaceCreateScheduleInput = {
|
|
4280
4429
|
agentIds: Array<Scalars['ID']['input']>;
|
|
4281
4430
|
cloudId: Scalars['ID']['input'];
|
|
@@ -4303,6 +4452,12 @@ export declare enum AgentWorkspaceDayOfWeek {
|
|
|
4303
4452
|
Tuesday = "TUESDAY",
|
|
4304
4453
|
Wednesday = "WEDNESDAY"
|
|
4305
4454
|
}
|
|
4455
|
+
export declare type AgentWorkspaceDefaultCapacity = {
|
|
4456
|
+
__typename?: 'AgentWorkspaceDefaultCapacity';
|
|
4457
|
+
defaultCapacity: Scalars['Int']['output'];
|
|
4458
|
+
projectId: Scalars['ID']['output'];
|
|
4459
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
4460
|
+
};
|
|
4306
4461
|
export declare type AgentWorkspaceDeleteScheduleInput = {
|
|
4307
4462
|
cloudId: Scalars['ID']['input'];
|
|
4308
4463
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -4391,6 +4546,17 @@ export declare type AgentWorkspaceScheduleVersion = {
|
|
|
4391
4546
|
versionEndTime: Scalars['DateTime']['output'];
|
|
4392
4547
|
versionStartTime: Scalars['DateTime']['output'];
|
|
4393
4548
|
};
|
|
4549
|
+
export declare type AgentWorkspaceSetDefaultCapacityInput = {
|
|
4550
|
+
cloudId: Scalars['ID']['input'];
|
|
4551
|
+
defaultCapacity: Scalars['Int']['input'];
|
|
4552
|
+
projectKey: Scalars['String']['input'];
|
|
4553
|
+
};
|
|
4554
|
+
export declare type AgentWorkspaceSetDefaultCapacityPayload = {
|
|
4555
|
+
__typename?: 'AgentWorkspaceSetDefaultCapacityPayload';
|
|
4556
|
+
defaultCapacity?: Maybe<AgentWorkspaceDefaultCapacity>;
|
|
4557
|
+
errors?: Maybe<Array<AgentWorkspaceCapacityError>>;
|
|
4558
|
+
success: Scalars['Boolean']['output'];
|
|
4559
|
+
};
|
|
4394
4560
|
export declare type AgentWorkspaceShift = {
|
|
4395
4561
|
__typename?: 'AgentWorkspaceShift';
|
|
4396
4562
|
agentId: Scalars['ID']['output'];
|
|
@@ -21595,6 +21761,14 @@ export declare type ConfluenceApplicationLink = {
|
|
|
21595
21761
|
rpcUrl?: Maybe<Scalars['String']['output']>;
|
|
21596
21762
|
typeId: Scalars['String']['output'];
|
|
21597
21763
|
};
|
|
21764
|
+
export declare enum ConfluenceApprovalTransitionType {
|
|
21765
|
+
Directed = "DIRECTED",
|
|
21766
|
+
Initial = "INITIAL"
|
|
21767
|
+
}
|
|
21768
|
+
export declare type ConfluenceApprovalsDate = {
|
|
21769
|
+
__typename?: 'ConfluenceApprovalsDate';
|
|
21770
|
+
value: Scalars['String']['output'];
|
|
21771
|
+
};
|
|
21598
21772
|
export declare type ConfluenceApprovalsWorkflowStatus = {
|
|
21599
21773
|
__typename?: 'ConfluenceApprovalsWorkflowStatus';
|
|
21600
21774
|
allowsReviews?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -25673,6 +25847,20 @@ export declare type ConfluenceRestrictionsResult = {
|
|
|
25673
25847
|
__typename?: 'ConfluenceRestrictionsResult';
|
|
25674
25848
|
restrictions: Array<Maybe<ConfluenceRestriction>>;
|
|
25675
25849
|
};
|
|
25850
|
+
export declare type ConfluenceReviewerDecisionInfo = {
|
|
25851
|
+
__typename?: 'ConfluenceReviewerDecisionInfo';
|
|
25852
|
+
comment?: Maybe<Scalars['String']['output']>;
|
|
25853
|
+
lastModifiedDate?: Maybe<ConfluenceApprovalsDate>;
|
|
25854
|
+
principalId: Scalars['String']['output'];
|
|
25855
|
+
principalType: ConfluencePrincipalType;
|
|
25856
|
+
reviewerDecisionStatus?: Maybe<ConfluenceReviewerDecisionState>;
|
|
25857
|
+
};
|
|
25858
|
+
export declare enum ConfluenceReviewerDecisionState {
|
|
25859
|
+
PendingReview = "PENDING_REVIEW",
|
|
25860
|
+
ReviewerApproved = "REVIEWER_APPROVED",
|
|
25861
|
+
ReviewerDenied = "REVIEWER_DENIED",
|
|
25862
|
+
ReviewCanceled = "REVIEW_CANCELED"
|
|
25863
|
+
}
|
|
25676
25864
|
export declare enum ConfluenceRoleAssignabilityCode {
|
|
25677
25865
|
Assignable = "ASSIGNABLE",
|
|
25678
25866
|
DefaultRoleAssignmentNotSupported = "DEFAULT_ROLE_ASSIGNMENT_NOT_SUPPORTED",
|
|
@@ -26558,6 +26746,13 @@ export declare type ConfluenceUpdateContentAppearancePayload = {
|
|
|
26558
26746
|
errors?: Maybe<Array<MutationError>>;
|
|
26559
26747
|
success: Scalars['Boolean']['output'];
|
|
26560
26748
|
};
|
|
26749
|
+
export declare type ConfluenceUpdateContentApprovalRequestInput = {
|
|
26750
|
+
approvalStatus?: InputMaybe<ConfluenceWorkflowReviewStatus>;
|
|
26751
|
+
comment?: InputMaybe<Scalars['String']['input']>;
|
|
26752
|
+
contentApprovalReviewId: Scalars['Long']['input'];
|
|
26753
|
+
reviewers?: InputMaybe<Array<InputMaybe<ConfluenceContentApprovalReviewerInput>>>;
|
|
26754
|
+
workflowApplicationId: Scalars['Long']['input'];
|
|
26755
|
+
};
|
|
26561
26756
|
export declare type ConfluenceUpdateContentDirectRestrictionsInput = {
|
|
26562
26757
|
add?: InputMaybe<ConfluenceDirectRestrictionsAddInput>;
|
|
26563
26758
|
contentId: Scalars['ID']['input'];
|
|
@@ -26849,6 +27044,11 @@ export declare type ConfluenceUpdateQuestionPayload = Payload & {
|
|
|
26849
27044
|
question?: Maybe<ConfluenceQuestion>;
|
|
26850
27045
|
success: Scalars['Boolean']['output'];
|
|
26851
27046
|
};
|
|
27047
|
+
export declare type ConfluenceUpdateReviewerDecisionInput = {
|
|
27048
|
+
comment?: InputMaybe<Scalars['String']['input']>;
|
|
27049
|
+
decisionStatus: ConfluenceReviewerDecisionState;
|
|
27050
|
+
reviewerId: Scalars['Long']['input'];
|
|
27051
|
+
};
|
|
26852
27052
|
export declare type ConfluenceUpdateShareableLinksInput = {
|
|
26853
27053
|
accessType: ConfluencePublicLinkAccessType;
|
|
26854
27054
|
contentId: Scalars['ID']['input'];
|
|
@@ -27272,12 +27472,30 @@ export declare enum ConfluenceWorkflowReviewStatus {
|
|
|
27272
27472
|
Denied = "DENIED",
|
|
27273
27473
|
Pending = "PENDING"
|
|
27274
27474
|
}
|
|
27475
|
+
export declare type ConfluenceWorkflowReviewWithDecisions = {
|
|
27476
|
+
__typename?: 'ConfluenceWorkflowReviewWithDecisions';
|
|
27477
|
+
reviewComment?: Maybe<Scalars['String']['output']>;
|
|
27478
|
+
reviewLastModified?: Maybe<ConfluenceApprovalsDate>;
|
|
27479
|
+
reviewStatus: ConfluenceWorkflowReviewStatus;
|
|
27480
|
+
reviewerDecisions: Array<Maybe<ConfluenceReviewerDecisionInfo>>;
|
|
27481
|
+
};
|
|
27482
|
+
export declare type ConfluenceWorkflowReviewWithDecisionsPayload = {
|
|
27483
|
+
__typename?: 'ConfluenceWorkflowReviewWithDecisionsPayload';
|
|
27484
|
+
errors: Array<MutationError>;
|
|
27485
|
+
success: Scalars['Boolean']['output'];
|
|
27486
|
+
workflowReviewWithDecisions?: Maybe<ConfluenceWorkflowReviewWithDecisions>;
|
|
27487
|
+
};
|
|
27275
27488
|
export declare type ConfluenceWorkflowReviewer = {
|
|
27276
27489
|
__typename?: 'ConfluenceWorkflowReviewer';
|
|
27277
27490
|
isRequired: Scalars['Boolean']['output'];
|
|
27278
27491
|
principalId: Scalars['String']['output'];
|
|
27279
27492
|
principalType: Scalars['String']['output'];
|
|
27280
27493
|
};
|
|
27494
|
+
export declare type ConfluenceWorkflowReviewerDecisionPayload = {
|
|
27495
|
+
__typename?: 'ConfluenceWorkflowReviewerDecisionPayload';
|
|
27496
|
+
errors: Array<MutationError>;
|
|
27497
|
+
success: Scalars['Boolean']['output'];
|
|
27498
|
+
};
|
|
27281
27499
|
export declare type Confluence_CqlMetaData = {
|
|
27282
27500
|
__typename?: 'Confluence_cqlMetaData';
|
|
27283
27501
|
cqlContentTypes: Array<Maybe<CqlDisplayableType>>;
|
|
@@ -29572,8 +29790,10 @@ export declare enum ConvoAiHomeThreadSuggestedActionOriginType {
|
|
|
29572
29790
|
}
|
|
29573
29791
|
export declare enum ConvoAiHomeThreadSuggestedActionType {
|
|
29574
29792
|
Delete = "DELETE",
|
|
29793
|
+
JumpBackIn = "JUMP_BACK_IN",
|
|
29575
29794
|
Reply = "REPLY",
|
|
29576
29795
|
Share = "SHARE",
|
|
29796
|
+
TakeAction = "TAKE_ACTION",
|
|
29577
29797
|
View = "VIEW"
|
|
29578
29798
|
}
|
|
29579
29799
|
export declare type ConvoAiHomeThreadsEdge = {
|
|
@@ -29820,6 +30040,7 @@ export declare type CplsAddContributorWorkAssociationPayload = Payload & {
|
|
|
29820
30040
|
contributorWorkAssociations?: Maybe<Array<Maybe<CplsContributorWorkEdge>>>;
|
|
29821
30041
|
errors?: Maybe<Array<MutationError>>;
|
|
29822
30042
|
success: Scalars['Boolean']['output'];
|
|
30043
|
+
workContributorAssociations?: Maybe<Array<Maybe<CplsWorkContributorEdge>>>;
|
|
29823
30044
|
};
|
|
29824
30045
|
export declare type CplsAddWorkScopeAssociationsInput = {
|
|
29825
30046
|
cloudId: Scalars['ID']['input'];
|
|
@@ -36727,7 +36948,7 @@ export declare type EcosystemQuery = {
|
|
|
36727
36948
|
appPoliciesByAppIds?: Maybe<Array<EcosystemAppPoliciesByAppId>>;
|
|
36728
36949
|
appVersionEnrolments?: Maybe<Array<Maybe<AppVersionEnrolment>>>;
|
|
36729
36950
|
appVersionRollout?: Maybe<AppVersionRollout>;
|
|
36730
|
-
appsInstalledInContexts
|
|
36951
|
+
appsInstalledInContexts?: Maybe<EcosystemAppsInstalledInContextsConnection>;
|
|
36731
36952
|
checkConsentPermissionByOAuthClientId?: Maybe<PermissionToConsentByOauthId>;
|
|
36732
36953
|
dataClassifications?: Maybe<EcosystemDataClassificationsContext>;
|
|
36733
36954
|
devConsole?: Maybe<DevConsoleQuery>;
|
|
@@ -36737,7 +36958,7 @@ export declare type EcosystemQuery = {
|
|
|
36737
36958
|
forgeMetrics?: Maybe<ForgeMetricsQuery>;
|
|
36738
36959
|
fortifiedMetrics?: Maybe<FortifiedMetricsQuery>;
|
|
36739
36960
|
globalInstallationConfig?: Maybe<Array<Maybe<EcosystemGlobalInstallationOverride>>>;
|
|
36740
|
-
marketplaceData
|
|
36961
|
+
marketplaceData?: Maybe<EcosystemMarketplaceData>;
|
|
36741
36962
|
userAccess?: Maybe<UserAccess>;
|
|
36742
36963
|
userGrants?: Maybe<UserGrantConnection>;
|
|
36743
36964
|
userInstallationRules?: Maybe<UserInstallationRules>;
|
|
@@ -94314,6 +94535,13 @@ export declare type InfluentsNotificationActor = {
|
|
|
94314
94535
|
avatarURL?: Maybe<Scalars['String']['output']>;
|
|
94315
94536
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
94316
94537
|
};
|
|
94538
|
+
export declare type InfluentsNotificationActorFilter = {
|
|
94539
|
+
afterTimestamp?: InputMaybe<Scalars['DateTime']['input']>;
|
|
94540
|
+
beforeTimestamp?: InputMaybe<Scalars['DateTime']['input']>;
|
|
94541
|
+
categoryFilter?: InputMaybe<InfluentsNotificationCategory>;
|
|
94542
|
+
productFilter?: InputMaybe<Scalars['String']['input']>;
|
|
94543
|
+
readStateFilter?: InputMaybe<InfluentsNotificationReadState>;
|
|
94544
|
+
};
|
|
94317
94545
|
export declare enum InfluentsNotificationActorType {
|
|
94318
94546
|
Animated = "animated",
|
|
94319
94547
|
Url = "url"
|
|
@@ -94499,10 +94727,15 @@ export declare type InfluentsNotificationPath = {
|
|
|
94499
94727
|
};
|
|
94500
94728
|
export declare type InfluentsNotificationQuery = {
|
|
94501
94729
|
__typename?: 'InfluentsNotificationQuery';
|
|
94730
|
+
availableActors: Array<InfluentsNotificationActor>;
|
|
94502
94731
|
notificationFeed: InfluentsNotificationFeedConnection;
|
|
94503
94732
|
notificationGroup: InfluentsNotificationGroupConnection;
|
|
94504
94733
|
unseenNotificationCount: Scalars['Int']['output'];
|
|
94505
94734
|
};
|
|
94735
|
+
export declare type InfluentsNotificationQueryAvailableActorsArgs = {
|
|
94736
|
+
filter?: InputMaybe<InfluentsNotificationActorFilter>;
|
|
94737
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
94738
|
+
};
|
|
94506
94739
|
export declare type InfluentsNotificationQueryNotificationFeedArgs = {
|
|
94507
94740
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
94508
94741
|
filter?: InputMaybe<InfluentsNotificationFilter>;
|
|
@@ -96677,6 +96910,7 @@ export declare type JiraBacklogData = {
|
|
|
96677
96910
|
selectedForDevelopmentColumn?: Maybe<JiraBacklogColumn>;
|
|
96678
96911
|
sprints?: Maybe<Array<Maybe<JiraBacklogSprint>>>;
|
|
96679
96912
|
supportsPages?: Maybe<Scalars['Boolean']['output']>;
|
|
96913
|
+
townsquareProjects?: Maybe<Array<Maybe<JiraBacklogTownsquareProject>>>;
|
|
96680
96914
|
versionData?: Maybe<JiraBacklogVersionData>;
|
|
96681
96915
|
};
|
|
96682
96916
|
export declare type JiraBacklogEpicConfig = {
|
|
@@ -96759,6 +96993,7 @@ export declare type JiraBacklogIssue = {
|
|
|
96759
96993
|
statusName?: Maybe<Scalars['String']['output']>;
|
|
96760
96994
|
statusUrl?: Maybe<Scalars['String']['output']>;
|
|
96761
96995
|
summary?: Maybe<Scalars['String']['output']>;
|
|
96996
|
+
townsquareProjectId?: Maybe<Scalars['String']['output']>;
|
|
96762
96997
|
trackingStatistic?: Maybe<JiraBacklogStatisticFieldValue>;
|
|
96763
96998
|
typeHierarchyLevel?: Maybe<Scalars['Int']['output']>;
|
|
96764
96999
|
typeId?: Maybe<Scalars['String']['output']>;
|
|
@@ -96936,6 +97171,16 @@ export declare type JiraBacklogTimeTrackingSymbols = {
|
|
|
96936
97171
|
minute?: Maybe<Scalars['String']['output']>;
|
|
96937
97172
|
week?: Maybe<Scalars['String']['output']>;
|
|
96938
97173
|
};
|
|
97174
|
+
export declare type JiraBacklogTownsquareProject = {
|
|
97175
|
+
__typename?: 'JiraBacklogTownsquareProject';
|
|
97176
|
+
hasPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
97177
|
+
iconName?: Maybe<Scalars['String']['output']>;
|
|
97178
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
97179
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
97180
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
97181
|
+
privateProject?: Maybe<Scalars['Boolean']['output']>;
|
|
97182
|
+
state?: Maybe<Scalars['String']['output']>;
|
|
97183
|
+
};
|
|
96939
97184
|
export declare type JiraBacklogTrackingConfig = {
|
|
96940
97185
|
__typename?: 'JiraBacklogTrackingConfig';
|
|
96941
97186
|
currentTrackingStatistic?: Maybe<JiraBacklogStatisticsField>;
|
|
@@ -97280,6 +97525,14 @@ export declare type JiraBoardViewCellConnection = {
|
|
|
97280
97525
|
errors?: Maybe<Array<QueryError>>;
|
|
97281
97526
|
pageInfo?: Maybe<PageInfo>;
|
|
97282
97527
|
};
|
|
97528
|
+
export declare type JiraBoardViewCellContainer = {
|
|
97529
|
+
cells?: Maybe<JiraBoardViewCellConnection>;
|
|
97530
|
+
};
|
|
97531
|
+
export declare type JiraBoardViewCellContainerCellsArgs = {
|
|
97532
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
97533
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
97534
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
97535
|
+
};
|
|
97283
97536
|
export declare type JiraBoardViewCellEdge = {
|
|
97284
97537
|
__typename?: 'JiraBoardViewCellEdge';
|
|
97285
97538
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -97307,7 +97560,7 @@ export declare type JiraBoardViewColumnEdge = {
|
|
|
97307
97560
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
97308
97561
|
node?: Maybe<JiraBoardViewColumn>;
|
|
97309
97562
|
};
|
|
97310
|
-
export declare type JiraBoardViewColumnLayout = Node & {
|
|
97563
|
+
export declare type JiraBoardViewColumnLayout = JiraBoardViewCellContainer & Node & {
|
|
97311
97564
|
__typename?: 'JiraBoardViewColumnLayout';
|
|
97312
97565
|
cells?: Maybe<JiraBoardViewCellConnection>;
|
|
97313
97566
|
id: Scalars['ID']['output'];
|
|
@@ -97324,7 +97577,7 @@ export declare type JiraBoardViewFieldCardOption = JiraBoardViewCardOption & {
|
|
|
97324
97577
|
field?: Maybe<JiraField>;
|
|
97325
97578
|
id: Scalars['ID']['output'];
|
|
97326
97579
|
};
|
|
97327
|
-
export declare type JiraBoardViewFieldSwimlane = JiraBoardViewSwimlane & Node & {
|
|
97580
|
+
export declare type JiraBoardViewFieldSwimlane = JiraBoardViewCellContainer & JiraBoardViewSwimlane & Node & {
|
|
97328
97581
|
__typename?: 'JiraBoardViewFieldSwimlane';
|
|
97329
97582
|
cells?: Maybe<JiraBoardViewCellConnection>;
|
|
97330
97583
|
field?: Maybe<JiraField>;
|
|
@@ -118517,7 +118770,6 @@ export declare type JpdViewUpdatedEvent = {
|
|
|
118517
118770
|
viewUuid: Scalars['ID']['output'];
|
|
118518
118771
|
};
|
|
118519
118772
|
export declare type JpdViewsServiceCreateGlobalViewInput = {
|
|
118520
|
-
cloudId: Scalars['String']['input'];
|
|
118521
118773
|
name: Scalars['String']['input'];
|
|
118522
118774
|
visualizationType: JpdViewsServiceVisualizationType;
|
|
118523
118775
|
};
|
|
@@ -118540,7 +118792,7 @@ export declare type JpdViewsServiceGlobalView = JpdViewsServiceViewBase & Node &
|
|
|
118540
118792
|
__typename?: 'JpdViewsServiceGlobalView';
|
|
118541
118793
|
id: Scalars['ID']['output'];
|
|
118542
118794
|
name: Scalars['String']['output'];
|
|
118543
|
-
rank
|
|
118795
|
+
rank?: Maybe<Scalars['Int']['output']>;
|
|
118544
118796
|
visualizationType: JpdViewsServiceVisualizationType;
|
|
118545
118797
|
};
|
|
118546
118798
|
export declare type JpdViewsServiceGlobalViewConnection = {
|
|
@@ -118551,7 +118803,7 @@ export declare type JpdViewsServiceGlobalViewConnection = {
|
|
|
118551
118803
|
export declare type JpdViewsServiceGlobalViewEdge = {
|
|
118552
118804
|
__typename?: 'JpdViewsServiceGlobalViewEdge';
|
|
118553
118805
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
118554
|
-
node
|
|
118806
|
+
node?: Maybe<JpdViewsServiceGlobalView>;
|
|
118555
118807
|
};
|
|
118556
118808
|
export declare type JpdViewsServiceGlobalViewsByCriteriaInput = {
|
|
118557
118809
|
containsText: Scalars['String']['input'];
|
|
@@ -118593,7 +118845,7 @@ export declare type JpdViewsServiceUpdateGlobalViewPayload = Payload & {
|
|
|
118593
118845
|
};
|
|
118594
118846
|
export declare type JpdViewsServiceViewBase = {
|
|
118595
118847
|
name: Scalars['String']['output'];
|
|
118596
|
-
rank
|
|
118848
|
+
rank?: Maybe<Scalars['Int']['output']>;
|
|
118597
118849
|
visualizationType: JpdViewsServiceVisualizationType;
|
|
118598
118850
|
};
|
|
118599
118851
|
export declare enum JpdViewsServiceViewSortMode {
|
|
@@ -120172,11 +120424,12 @@ export declare type KnowledgeBaseCategoryDetail = {
|
|
|
120172
120424
|
id?: Maybe<Scalars['String']['output']>;
|
|
120173
120425
|
name?: Maybe<Scalars['String']['output']>;
|
|
120174
120426
|
};
|
|
120175
|
-
export declare type
|
|
120176
|
-
__typename?: '
|
|
120427
|
+
export declare type KnowledgeBaseConfluenceAppLinkDetails = {
|
|
120428
|
+
__typename?: 'KnowledgeBaseConfluenceAppLinkDetails';
|
|
120429
|
+
appLinkId?: Maybe<Scalars['String']['output']>;
|
|
120177
120430
|
isConfluenceServerLinked: Scalars['Boolean']['output'];
|
|
120178
120431
|
};
|
|
120179
|
-
export declare type
|
|
120432
|
+
export declare type KnowledgeBaseConfluenceAppLinkDetailsResponse = KnowledgeBaseConfluenceAppLinkDetails | QueryError;
|
|
120180
120433
|
export declare type KnowledgeBaseConfluenceSpaceSuggestions = KnowledgeBaseSourceSuggestionInterface & {
|
|
120181
120434
|
__typename?: 'KnowledgeBaseConfluenceSpaceSuggestions';
|
|
120182
120435
|
sourceARI?: Maybe<Scalars['ID']['output']>;
|
|
@@ -120221,6 +120474,7 @@ export declare type KnowledgeBaseLinkSourceResult = {
|
|
|
120221
120474
|
mutationError?: Maybe<MutationError>;
|
|
120222
120475
|
sourceARI?: Maybe<Scalars['ID']['output']>;
|
|
120223
120476
|
sourceContainerARI?: Maybe<Scalars['ID']['output']>;
|
|
120477
|
+
sourceId?: Maybe<Scalars['String']['output']>;
|
|
120224
120478
|
sourceVisibility?: Maybe<Scalars['String']['output']>;
|
|
120225
120479
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
120226
120480
|
};
|
|
@@ -120234,6 +120488,7 @@ export declare type KnowledgeBaseLinkedSource = {
|
|
|
120234
120488
|
permissions?: Maybe<KnowledgeBaseSourcePermissionsResponse>;
|
|
120235
120489
|
sourceARI?: Maybe<Scalars['ID']['output']>;
|
|
120236
120490
|
sourceId?: Maybe<Scalars['ID']['output']>;
|
|
120491
|
+
sourceSettingsUrl?: Maybe<Scalars['String']['output']>;
|
|
120237
120492
|
sourceType?: Maybe<Scalars['String']['output']>;
|
|
120238
120493
|
sourceVisibility?: Maybe<Scalars['String']['output']>;
|
|
120239
120494
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -129896,6 +130151,7 @@ export declare type Mutation = {
|
|
|
129896
130151
|
agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
|
|
129897
130152
|
agentWorkspace_deleteSchedule?: Maybe<AgentWorkspaceDeleteSchedulePayload>;
|
|
129898
130153
|
agentWorkspace_endBreak?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
130154
|
+
agentWorkspace_setDefaultCapacity?: Maybe<AgentWorkspaceSetDefaultCapacityPayload>;
|
|
129899
130155
|
agentWorkspace_startBreak?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
129900
130156
|
agentWorkspace_updateSchedule?: Maybe<AgentWorkspaceUpdateSchedulePayload>;
|
|
129901
130157
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
@@ -130108,6 +130364,7 @@ export declare type Mutation = {
|
|
|
130108
130364
|
confluence_updateContentAccessRequest?: Maybe<ConfluenceUpdateContentAccessRequestPayload>;
|
|
130109
130365
|
confluence_updateContentAccessRequestSettings?: Maybe<ConfluenceUpdateAccessRequestSettingsPayload>;
|
|
130110
130366
|
confluence_updateContentAppearance?: Maybe<ConfluenceUpdateContentAppearancePayload>;
|
|
130367
|
+
confluence_updateContentApproval?: Maybe<ConfluenceContentApprovalPayload>;
|
|
130111
130368
|
confluence_updateContentDirectRestrictions?: Maybe<ConfluenceUpdateContentDirectRestrictionsPayload>;
|
|
130112
130369
|
confluence_updateContentMode?: Maybe<ConfluenceUpdateContentModePayload>;
|
|
130113
130370
|
confluence_updateCoverPicture?: Maybe<ConfluenceUpdateCoverPicturePayload>;
|
|
@@ -130119,6 +130376,7 @@ export declare type Mutation = {
|
|
|
130119
130376
|
confluence_updateNcsPdfExportConfiguration?: Maybe<ConfluenceUpdateNcsPdfExportConfigurationPayload>;
|
|
130120
130377
|
confluence_updatePage?: Maybe<ConfluenceUpdatePagePayload>;
|
|
130121
130378
|
confluence_updateQuestion?: Maybe<ConfluenceUpdateQuestionPayload>;
|
|
130379
|
+
confluence_updateReviewerDecision?: Maybe<ConfluenceWorkflowReviewerDecisionPayload>;
|
|
130122
130380
|
confluence_updateShareableLink?: Maybe<ConfluenceUpdateShareableLinksPayload>;
|
|
130123
130381
|
confluence_updateSpaceAccessRequestSettings?: Maybe<ConfluenceUpdateAccessRequestSettingsPayload>;
|
|
130124
130382
|
confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
|
|
@@ -131094,6 +131352,9 @@ export declare type MutationAgentWorkspace_DeleteScheduleArgs = {
|
|
|
131094
131352
|
export declare type MutationAgentWorkspace_EndBreakArgs = {
|
|
131095
131353
|
agentId: Scalars['ID']['input'];
|
|
131096
131354
|
};
|
|
131355
|
+
export declare type MutationAgentWorkspace_SetDefaultCapacityArgs = {
|
|
131356
|
+
input: AgentWorkspaceSetDefaultCapacityInput;
|
|
131357
|
+
};
|
|
131097
131358
|
export declare type MutationAgentWorkspace_StartBreakArgs = {
|
|
131098
131359
|
agentId: Scalars['ID']['input'];
|
|
131099
131360
|
};
|
|
@@ -131528,6 +131789,7 @@ export declare type MutationBulkUpdateMainSpaceSidebarLinksArgs = {
|
|
|
131528
131789
|
};
|
|
131529
131790
|
export declare type MutationChangeManagement_RecordLastRovoRiskAssessmentArgs = {
|
|
131530
131791
|
input: ChangeManagementUpdateLastRovoRiskAssessmentInput;
|
|
131792
|
+
keepUpdatedAt?: InputMaybe<Scalars['Boolean']['input']>;
|
|
131531
131793
|
};
|
|
131532
131794
|
export declare type MutationChangeManagement_UpdateGlobalRiskAssessmentSettingsArgs = {
|
|
131533
131795
|
input: ChangeManagementUpdateGlobalRiskAssessmentSettingsInput;
|
|
@@ -131898,6 +132160,10 @@ export declare type MutationConfluence_UpdateContentAppearanceArgs = {
|
|
|
131898
132160
|
cloudId: Scalars['ID']['input'];
|
|
131899
132161
|
input: ConfluenceUpdateContentAppearanceInput;
|
|
131900
132162
|
};
|
|
132163
|
+
export declare type MutationConfluence_UpdateContentApprovalArgs = {
|
|
132164
|
+
cloudId: Scalars['ID']['input'];
|
|
132165
|
+
updateContentApprovalGraphQLInput: ConfluenceUpdateContentApprovalRequestInput;
|
|
132166
|
+
};
|
|
131901
132167
|
export declare type MutationConfluence_UpdateContentDirectRestrictionsArgs = {
|
|
131902
132168
|
cloudId: Scalars['ID']['input'];
|
|
131903
132169
|
input: ConfluenceUpdateContentDirectRestrictionsInput;
|
|
@@ -131944,6 +132210,10 @@ export declare type MutationConfluence_UpdateQuestionArgs = {
|
|
|
131944
132210
|
cloudId: Scalars['ID']['input'];
|
|
131945
132211
|
input: ConfluenceUpdateQuestionInput;
|
|
131946
132212
|
};
|
|
132213
|
+
export declare type MutationConfluence_UpdateReviewerDecisionArgs = {
|
|
132214
|
+
cloudId: Scalars['ID']['input'];
|
|
132215
|
+
confluenceUpdateReviewerDecisionInput: ConfluenceUpdateReviewerDecisionInput;
|
|
132216
|
+
};
|
|
131947
132217
|
export declare type MutationConfluence_UpdateShareableLinkArgs = {
|
|
131948
132218
|
cloudId: Scalars['ID']['input'];
|
|
131949
132219
|
input: ConfluenceUpdateShareableLinksInput;
|
|
@@ -133171,6 +133441,7 @@ export declare type MutationJira_UpdateSchemeFieldPerWorkTypeCustomizationsArgs
|
|
|
133171
133441
|
input?: InputMaybe<JiraFieldWorkTypeCustomizationsInput>;
|
|
133172
133442
|
};
|
|
133173
133443
|
export declare type MutationJpdViewsService_CreateGlobalViewArgs = {
|
|
133444
|
+
cloudId: Scalars['String']['input'];
|
|
133174
133445
|
input: JpdViewsServiceCreateGlobalViewInput;
|
|
133175
133446
|
};
|
|
133176
133447
|
export declare type MutationJpdViewsService_DeleteGlobalViewArgs = {
|
|
@@ -137260,6 +137531,7 @@ export declare type Query = {
|
|
|
137260
137531
|
agentStudio_evaluationProject?: Maybe<AgentStudioBatchEvaluationProject>;
|
|
137261
137532
|
agentStudio_evaluationResultList?: Maybe<AgentStudioEvaluationResultsResult>;
|
|
137262
137533
|
agentStudio_getAgentActorRoles?: Maybe<AgentStudioActorRoles>;
|
|
137534
|
+
agentStudio_getAgentByProductAri?: Maybe<AgentStudioProductAriAgentResult>;
|
|
137263
137535
|
agentStudio_getAgentUsePermissionSettings?: Maybe<AgentStudioAgentUsePermissionSettings>;
|
|
137264
137536
|
agentStudio_getAgents?: Maybe<AgentStudioAgentsConnection>;
|
|
137265
137537
|
agentStudio_getByExternalReference?: Maybe<AgentStudioAgentResult>;
|
|
@@ -137271,6 +137543,8 @@ export declare type Query = {
|
|
|
137271
137543
|
agentStudio_jobExecutionHistoryList?: Maybe<AgentStudioJobExecutionHistory>;
|
|
137272
137544
|
agentStudio_jobRun?: Maybe<AgentStudioBatchEvaluationJobRun>;
|
|
137273
137545
|
agentStudio_jobRunList?: Maybe<AgentStudioBatchEvaluationJobRunResult>;
|
|
137546
|
+
agentStudio_liveConversationHistoryById?: Maybe<AgentStudioConversationHistoryResult>;
|
|
137547
|
+
agentStudio_liveConversationListByContainerId?: Maybe<AgentStudioConversationListResult>;
|
|
137274
137548
|
agentStudio_scenarioById?: Maybe<AgentStudioScenarioResult>;
|
|
137275
137549
|
agentStudio_scenarioListByContainerId?: Maybe<AgentStudioScenariosResult>;
|
|
137276
137550
|
agentStudio_scenariosByIds?: Maybe<Array<Maybe<AgentStudioScenario>>>;
|
|
@@ -137281,6 +137555,8 @@ export declare type Query = {
|
|
|
137281
137555
|
agentStudio_validateScenarios?: Maybe<AgentStudioScenarioValidateModeOutput>;
|
|
137282
137556
|
agentStudio_widgetByContainerAri?: Maybe<AgentStudioWidgetByContainerAriResult>;
|
|
137283
137557
|
agentWorkspace_availability?: Maybe<AgentWorkspaceAvailabilityConnection>;
|
|
137558
|
+
agentWorkspace_capacity?: Maybe<AgentWorkspaceCapacityConnection>;
|
|
137559
|
+
agentWorkspace_defaultCapacity?: Maybe<AgentWorkspaceDefaultCapacity>;
|
|
137284
137560
|
agentWorkspace_schedule?: Maybe<AgentWorkspaceSchedule>;
|
|
137285
137561
|
agentWorkspace_schedules?: Maybe<Array<AgentWorkspaceSchedule>>;
|
|
137286
137562
|
agentWorkspace_shifts?: Maybe<AgentWorkspaceShiftsConnection>;
|
|
@@ -137381,9 +137657,12 @@ export declare type Query = {
|
|
|
137381
137657
|
atlasProjectsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
137382
137658
|
atlassianStudio_userSiteContext?: Maybe<AtlassianStudioUserSiteContextResult>;
|
|
137383
137659
|
availableContentStates?: Maybe<AvailableContentStates>;
|
|
137660
|
+
avpPermissions_getCapabilities?: Maybe<AvpPermissionsGetCapabilitiesResponse>;
|
|
137384
137661
|
avpPermissions_getDashboardIdentityAccess?: Maybe<AvpPermissionsDashboardIdentityAccess>;
|
|
137662
|
+
avpPermissions_hasCapability?: Maybe<AvpPermissionsHasCapabilityResponse>;
|
|
137385
137663
|
avpPermissions_hello?: Maybe<AvpPermissionsHelloResponse>;
|
|
137386
137664
|
avp_getChart?: Maybe<AvpChart>;
|
|
137665
|
+
avp_getChartTemplatePreview?: Maybe<AvpChartTemplatePreview>;
|
|
137387
137666
|
avp_getChartTemplates?: Maybe<Array<AvpChartTemplate>>;
|
|
137388
137667
|
avp_getDashboard?: Maybe<AvpDashboard>;
|
|
137389
137668
|
avp_getDashboardTemplates?: Maybe<Array<AvpDashboardTemplate>>;
|
|
@@ -137490,6 +137769,7 @@ export declare type Query = {
|
|
|
137490
137769
|
confluence_contentAISummaries?: Maybe<Array<Maybe<ConfluenceContentAiSummaryResponse>>>;
|
|
137491
137770
|
confluence_contentAccessRequestByStatus?: Maybe<ConfluenceContentAccessRequestConnection>;
|
|
137492
137771
|
confluence_contentAnalyticsCountUserByContentType?: Maybe<ConfluenceContentAnalyticsCountUserByContentType>;
|
|
137772
|
+
confluence_contentApprovalStatuses?: Maybe<Array<Maybe<ConfluenceApprovalsWorkflowStatus>>>;
|
|
137493
137773
|
confluence_contentPermissions?: Maybe<ConfluenceContentPermissions>;
|
|
137494
137774
|
confluence_contentReactionsSummary?: Maybe<ConfluenceReactionSummary>;
|
|
137495
137775
|
confluence_contentSmartLinksForDraft?: Maybe<PaginatedSmartLinkList>;
|
|
@@ -137517,6 +137797,7 @@ export declare type Query = {
|
|
|
137517
137797
|
confluence_getSmartContentFeatures?: Maybe<Array<Maybe<SmartPageFeatures>>>;
|
|
137518
137798
|
confluence_getTotalPendingContentAccessRequestsCount?: Maybe<Scalars['Int']['output']>;
|
|
137519
137799
|
confluence_getWacTemplate?: Maybe<ConfluenceWacTemplate>;
|
|
137800
|
+
confluence_getWorkflowReviewByApplicationId?: Maybe<ConfluenceWorkflowReviewWithDecisionsPayload>;
|
|
137520
137801
|
confluence_hasClearPermissionForSpace?: Maybe<Scalars['Boolean']['output']>;
|
|
137521
137802
|
confluence_hasDivergedFromDefaultSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
137522
137803
|
confluence_importsAll?: Maybe<Array<Maybe<ConfluenceImport>>>;
|
|
@@ -137916,7 +138197,7 @@ export declare type Query = {
|
|
|
137916
138197
|
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
137917
138198
|
knowledgeBaseSpacePermission_bulkQuery: Array<Maybe<KnowledgeBaseSpacePermissionQueryResponse>>;
|
|
137918
138199
|
knowledgeBase_agentSearch?: Maybe<KnowledgeBaseAgentArticleSearchResponse>;
|
|
137919
|
-
|
|
138200
|
+
knowledgeBase_confluenceAppLinkDetails?: Maybe<KnowledgeBaseConfluenceAppLinkDetailsResponse>;
|
|
137920
138201
|
knowledgeBase_getLinkedSourceTypes?: Maybe<KnowledgeBaseLinkedSourceTypesResponse>;
|
|
137921
138202
|
knowledgeBase_linkedSources?: Maybe<KnowledgeBaseLinkedSourcesResponse>;
|
|
137922
138203
|
knowledgeBase_searchArticles?: Maybe<KnowledgeBaseArticleSearchResponse>;
|
|
@@ -138615,6 +138896,10 @@ export declare type QueryAgentStudio_GetAgentActorRolesArgs = {
|
|
|
138615
138896
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
138616
138897
|
id: Scalars['ID']['input'];
|
|
138617
138898
|
};
|
|
138899
|
+
export declare type QueryAgentStudio_GetAgentByProductAriArgs = {
|
|
138900
|
+
cloudId: Scalars['String']['input'];
|
|
138901
|
+
productAri: Scalars['ID']['input'];
|
|
138902
|
+
};
|
|
138618
138903
|
export declare type QueryAgentStudio_GetAgentUsePermissionSettingsArgs = {
|
|
138619
138904
|
id: Scalars['ID']['input'];
|
|
138620
138905
|
};
|
|
@@ -138675,6 +138960,22 @@ export declare type QueryAgentStudio_JobRunListArgs = {
|
|
|
138675
138960
|
projectContainerAri: Scalars['ID']['input'];
|
|
138676
138961
|
status?: InputMaybe<AgentStudioJobRunStatus>;
|
|
138677
138962
|
};
|
|
138963
|
+
export declare type QueryAgentStudio_LiveConversationHistoryByIdArgs = {
|
|
138964
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
138965
|
+
cloudId: Scalars['String']['input'];
|
|
138966
|
+
conversationId: Scalars['ID']['input'];
|
|
138967
|
+
experienceId: Scalars['String']['input'];
|
|
138968
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
138969
|
+
productType: AgentStudioProductType;
|
|
138970
|
+
};
|
|
138971
|
+
export declare type QueryAgentStudio_LiveConversationListByContainerIdArgs = {
|
|
138972
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
138973
|
+
cloudId: Scalars['String']['input'];
|
|
138974
|
+
containerAri: Scalars['ID']['input'];
|
|
138975
|
+
experienceId: Scalars['String']['input'];
|
|
138976
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
138977
|
+
productType: AgentStudioProductType;
|
|
138978
|
+
};
|
|
138678
138979
|
export declare type QueryAgentStudio_ScenarioByIdArgs = {
|
|
138679
138980
|
containerId: Scalars['ID']['input'];
|
|
138680
138981
|
id: Scalars['ID']['input'];
|
|
@@ -138725,6 +139026,13 @@ export declare type QueryAgentStudio_WidgetByContainerAriArgs = {
|
|
|
138725
139026
|
export declare type QueryAgentWorkspace_AvailabilityArgs = {
|
|
138726
139027
|
input: AgentWorkspaceAvailabilityInput;
|
|
138727
139028
|
};
|
|
139029
|
+
export declare type QueryAgentWorkspace_CapacityArgs = {
|
|
139030
|
+
input: AgentWorkspaceCapacityInput;
|
|
139031
|
+
};
|
|
139032
|
+
export declare type QueryAgentWorkspace_DefaultCapacityArgs = {
|
|
139033
|
+
cloudId: Scalars['ID']['input'];
|
|
139034
|
+
projectKey: Scalars['String']['input'];
|
|
139035
|
+
};
|
|
138728
139036
|
export declare type QueryAgentWorkspace_ScheduleArgs = {
|
|
138729
139037
|
cloudId: Scalars['ID']['input'];
|
|
138730
139038
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -139259,9 +139567,15 @@ export declare type QueryAtlassianStudio_UserSiteContextArgs = {
|
|
|
139259
139567
|
export declare type QueryAvailableContentStatesArgs = {
|
|
139260
139568
|
contentId: Scalars['ID']['input'];
|
|
139261
139569
|
};
|
|
139570
|
+
export declare type QueryAvpPermissions_GetCapabilitiesArgs = {
|
|
139571
|
+
input: AvpPermissionsGetCapabilitiesInput;
|
|
139572
|
+
};
|
|
139262
139573
|
export declare type QueryAvpPermissions_GetDashboardIdentityAccessArgs = {
|
|
139263
139574
|
input: AvpPermissionsGetDashboardIdentityAccessInput;
|
|
139264
139575
|
};
|
|
139576
|
+
export declare type QueryAvpPermissions_HasCapabilityArgs = {
|
|
139577
|
+
input: AvpPermissionsHasCapabilityInput;
|
|
139578
|
+
};
|
|
139265
139579
|
export declare type QueryAvpPermissions_HelloArgs = {
|
|
139266
139580
|
cloudId: Scalars['ID']['input'];
|
|
139267
139581
|
integrationId: Scalars['String']['input'];
|
|
@@ -139269,6 +139583,11 @@ export declare type QueryAvpPermissions_HelloArgs = {
|
|
|
139269
139583
|
export declare type QueryAvp_GetChartArgs = {
|
|
139270
139584
|
chartAri: Scalars['ID']['input'];
|
|
139271
139585
|
};
|
|
139586
|
+
export declare type QueryAvp_GetChartTemplatePreviewArgs = {
|
|
139587
|
+
cloudId: Scalars['ID']['input'];
|
|
139588
|
+
templateFileName: Scalars['String']['input'];
|
|
139589
|
+
workspaceId: Scalars['ID']['input'];
|
|
139590
|
+
};
|
|
139272
139591
|
export declare type QueryAvp_GetChartTemplatesArgs = {
|
|
139273
139592
|
cloudId: Scalars['ID']['input'];
|
|
139274
139593
|
locations: Array<Scalars['String']['input']>;
|
|
@@ -139677,6 +139996,10 @@ export declare type QueryConfluence_ContentAnalyticsCountUserByContentTypeArgs =
|
|
|
139677
139996
|
startTime: Scalars['String']['input'];
|
|
139678
139997
|
subType?: InputMaybe<Scalars['String']['input']>;
|
|
139679
139998
|
};
|
|
139999
|
+
export declare type QueryConfluence_ContentApprovalStatusesArgs = {
|
|
140000
|
+
cloudId: Scalars['ID']['input'];
|
|
140001
|
+
transitionType?: InputMaybe<ConfluenceApprovalTransitionType>;
|
|
140002
|
+
};
|
|
139680
140003
|
export declare type QueryConfluence_ContentPermissionsArgs = {
|
|
139681
140004
|
cloudId: Scalars['ID']['input'];
|
|
139682
140005
|
contentId: Scalars['ID']['input'];
|
|
@@ -139809,6 +140132,10 @@ export declare type QueryConfluence_GetTotalPendingContentAccessRequestsCountArg
|
|
|
139809
140132
|
export declare type QueryConfluence_GetWacTemplateArgs = {
|
|
139810
140133
|
cloudId: Scalars['ID']['input'];
|
|
139811
140134
|
};
|
|
140135
|
+
export declare type QueryConfluence_GetWorkflowReviewByApplicationIdArgs = {
|
|
140136
|
+
applicationId: Scalars['Long']['input'];
|
|
140137
|
+
cloudId: Scalars['ID']['input'];
|
|
140138
|
+
};
|
|
139812
140139
|
export declare type QueryConfluence_HasClearPermissionForSpaceArgs = {
|
|
139813
140140
|
cloudId: Scalars['ID']['input'];
|
|
139814
140141
|
spaceKey: Scalars['String']['input'];
|
|
@@ -141508,7 +141835,7 @@ export declare type QueryKnowledgeBaseSpacePermission_BulkQueryArgs = {
|
|
|
141508
141835
|
export declare type QueryKnowledgeBase_AgentSearchArgs = {
|
|
141509
141836
|
searchInput?: InputMaybe<KnowledgeBaseAgentArticleSearchInput>;
|
|
141510
141837
|
};
|
|
141511
|
-
export declare type
|
|
141838
|
+
export declare type QueryKnowledgeBase_ConfluenceAppLinkDetailsArgs = {
|
|
141512
141839
|
cloudId: Scalars['ID']['input'];
|
|
141513
141840
|
projectIdentifier: Scalars['String']['input'];
|
|
141514
141841
|
};
|
|
@@ -145672,6 +145999,10 @@ export declare type SearchLayerDefinition = {
|
|
|
145672
145999
|
shadowId?: InputMaybe<Scalars['String']['input']>;
|
|
145673
146000
|
subEntity?: InputMaybe<Scalars['String']['input']>;
|
|
145674
146001
|
};
|
|
146002
|
+
export declare enum SearchLinkedEntitiesType {
|
|
146003
|
+
Messages = "messages",
|
|
146004
|
+
Thread = "thread"
|
|
146005
|
+
}
|
|
145675
146006
|
export declare enum SearchLinkedEntityGranularity {
|
|
145676
146007
|
AllMatchingMessages = "ALL_MATCHING_MESSAGES",
|
|
145677
146008
|
Default = "DEFAULT",
|
|
@@ -146035,9 +146366,16 @@ export declare type SearchResultGoogleSpreadsheet = SearchL2FeatureProvider & Se
|
|
|
146035
146366
|
type: SearchResultType;
|
|
146036
146367
|
url: Scalars['String']['output'];
|
|
146037
146368
|
};
|
|
146369
|
+
export declare type SearchResultGraphAttachment = {
|
|
146370
|
+
__typename?: 'SearchResultGraphAttachment';
|
|
146371
|
+
fileType?: Maybe<Scalars['String']['output']>;
|
|
146372
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
146373
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
146374
|
+
};
|
|
146038
146375
|
export declare type SearchResultGraphDocument = SearchL2FeatureProvider & SearchResult & {
|
|
146039
146376
|
__typename?: 'SearchResultGraphDocument';
|
|
146040
146377
|
allContributors?: Maybe<Array<ThirdPartyUser>>;
|
|
146378
|
+
attachments?: Maybe<Array<SearchResultGraphAttachment>>;
|
|
146041
146379
|
bodyText?: Maybe<Scalars['String']['output']>;
|
|
146042
146380
|
connectorType?: Maybe<Scalars['String']['output']>;
|
|
146043
146381
|
containerName?: Maybe<Scalars['String']['output']>;
|
|
@@ -146051,7 +146389,9 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
|
|
|
146051
146389
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
146052
146390
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
146053
146391
|
linkedEntities?: Maybe<Array<SearchResultGraphDocument>>;
|
|
146392
|
+
linkedEntitiesType?: Maybe<SearchLinkedEntitiesType>;
|
|
146054
146393
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
146394
|
+
links?: Maybe<Array<Scalars['String']['output']>>;
|
|
146055
146395
|
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
146056
146396
|
owner?: Maybe<ThirdPartyUser>;
|
|
146057
146397
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
@@ -146388,7 +146728,7 @@ export declare type SearchTalentFilter = {
|
|
|
146388
146728
|
teams?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
146389
146729
|
};
|
|
146390
146730
|
export declare type SearchTeamsFilters = {
|
|
146391
|
-
|
|
146731
|
+
attachmentFileTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
146392
146732
|
hasAttachment?: InputMaybe<Scalars['Boolean']['input']>;
|
|
146393
146733
|
hasLink?: InputMaybe<Scalars['Boolean']['input']>;
|
|
146394
146734
|
};
|
|
@@ -170912,6 +171252,22 @@ export declare type TownsquareCommentEdge = {
|
|
|
170912
171252
|
cursor: Scalars['String']['output'];
|
|
170913
171253
|
node?: Maybe<TownsquareComment>;
|
|
170914
171254
|
};
|
|
171255
|
+
export declare type TownsquareCompletionGoalState = {
|
|
171256
|
+
__typename?: 'TownsquareCompletionGoalState';
|
|
171257
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
171258
|
+
localizedLabel?: Maybe<TownsquareLocalizationField>;
|
|
171259
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
171260
|
+
value?: Maybe<TownsquareGoalStateValue>;
|
|
171261
|
+
};
|
|
171262
|
+
export declare type TownsquareCompletionGoalStateLabelArgs = {
|
|
171263
|
+
includeScore?: InputMaybe<Scalars['Boolean']['input']>;
|
|
171264
|
+
};
|
|
171265
|
+
export declare type TownsquareCompletionProjectState = {
|
|
171266
|
+
__typename?: 'TownsquareCompletionProjectState';
|
|
171267
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
171268
|
+
localizedLabel?: Maybe<TownsquareLocalizationField>;
|
|
171269
|
+
value?: Maybe<TownsquareProjectStateValue>;
|
|
171270
|
+
};
|
|
170915
171271
|
export declare type TownsquareContributor = {
|
|
170916
171272
|
__typename?: 'TownsquareContributor';
|
|
170917
171273
|
teamContributor?: Maybe<TownsquareTeamContributor>;
|
|
@@ -171553,7 +171909,9 @@ export declare enum TownsquareGoalSortEnum {
|
|
|
171553
171909
|
}
|
|
171554
171910
|
export declare type TownsquareGoalState = {
|
|
171555
171911
|
__typename?: 'TownsquareGoalState';
|
|
171912
|
+
atCompletionState?: Maybe<TownsquareCompletionGoalState>;
|
|
171556
171913
|
label?: Maybe<Scalars['String']['output']>;
|
|
171914
|
+
localizedLabel?: Maybe<TownsquareLocalizationField>;
|
|
171557
171915
|
score?: Maybe<Scalars['Float']['output']>;
|
|
171558
171916
|
value?: Maybe<TownsquareGoalStateValue>;
|
|
171559
171917
|
};
|
|
@@ -172816,7 +173174,9 @@ export declare enum TownsquareProjectSortEnum {
|
|
|
172816
173174
|
}
|
|
172817
173175
|
export declare type TownsquareProjectState = {
|
|
172818
173176
|
__typename?: 'TownsquareProjectState';
|
|
173177
|
+
atCompletionState?: Maybe<TownsquareCompletionProjectState>;
|
|
172819
173178
|
label?: Maybe<Scalars['String']['output']>;
|
|
173179
|
+
localizedLabel?: Maybe<TownsquareLocalizationField>;
|
|
172820
173180
|
value?: Maybe<TownsquareProjectStateValue>;
|
|
172821
173181
|
};
|
|
172822
173182
|
export declare enum TownsquareProjectStateValue {
|
|
@@ -173590,6 +173950,7 @@ export declare type TownsquareShareProjectUserInput = {
|
|
|
173590
173950
|
};
|
|
173591
173951
|
export declare type TownsquareStatus = {
|
|
173592
173952
|
__typename?: 'TownsquareStatus';
|
|
173953
|
+
atCompletionState?: Maybe<TownsquareCompletionGoalState>;
|
|
173593
173954
|
localizedLabel?: Maybe<TownsquareLocalizationField>;
|
|
173594
173955
|
score?: Maybe<Scalars['Float']['output']>;
|
|
173595
173956
|
value?: Maybe<Scalars['String']['output']>;
|
|
@@ -176021,6 +176382,7 @@ export declare type TrelloInboxNotificationsUpdated = {
|
|
|
176021
176382
|
__typename?: 'TrelloInboxNotificationsUpdated';
|
|
176022
176383
|
onQuickCaptureNotificationsCleared?: Maybe<Array<TrelloQuickCaptureNotificationCleared>>;
|
|
176023
176384
|
quickCaptureCards?: Maybe<Array<TrelloInboxQuickCaptureCard>>;
|
|
176385
|
+
quickCaptureCardsCreated?: Maybe<Array<TrelloQuickCaptureNotification>>;
|
|
176024
176386
|
};
|
|
176025
176387
|
export declare type TrelloInboxPrefs = TrelloBaseBoardPrefs & {
|
|
176026
176388
|
__typename?: 'TrelloInboxPrefs';
|