@forge/cli-shared 9.5.1-next.4 → 9.6.0-next.10
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 +42 -0
- package/out/graphql/graphql-types.d.ts +1523 -56
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +180 -60
- package/out/shared/developer-console.d.ts +10 -0
- package/out/shared/developer-console.d.ts.map +1 -0
- package/out/shared/developer-console.js +41 -0
- package/out/shared/index.d.ts +1 -0
- package/out/shared/index.d.ts.map +1 -1
- package/out/shared/index.js +1 -0
- package/out/ui/command-line-ui.d.ts +9 -1
- package/out/ui/command-line-ui.d.ts.map +1 -1
- package/out/ui/command-line-ui.js +100 -6
- package/out/ui/text.d.ts +16 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +22 -5
- package/out/ui/ui.d.ts +2 -1
- package/out/ui/ui.d.ts.map +1 -1
- package/package.json +2 -2
|
@@ -2276,6 +2276,7 @@ export type AvpDashboard = Node & {
|
|
|
2276
2276
|
filterExpression?: Maybe<AvpFilterExpression>;
|
|
2277
2277
|
fromTemplate?: Maybe<Scalars['String']['output']>;
|
|
2278
2278
|
id: Scalars['ID']['output'];
|
|
2279
|
+
integrationId?: Maybe<AvpIntegrationId>;
|
|
2279
2280
|
isReadOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
2280
2281
|
isStarred?: Maybe<Scalars['Boolean']['output']>;
|
|
2281
2282
|
isWrapper?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -4551,7 +4552,6 @@ export declare enum AdminAuthenticationType {
|
|
|
4551
4552
|
}
|
|
4552
4553
|
export type AdminBreachingConnection = {
|
|
4553
4554
|
__typename?: 'AdminBreachingConnection';
|
|
4554
|
-
collabContextId: Scalars['ID']['output'];
|
|
4555
4555
|
connectionEntityId: Scalars['ID']['output'];
|
|
4556
4556
|
connectionId: Scalars['ID']['output'];
|
|
4557
4557
|
connectionSelfLink: Scalars['String']['output'];
|
|
@@ -4560,6 +4560,7 @@ export type AdminBreachingConnection = {
|
|
|
4560
4560
|
createdTimestamp?: Maybe<Scalars['String']['output']>;
|
|
4561
4561
|
sourceWorkspace?: Maybe<AdminWorkspace>;
|
|
4562
4562
|
status: AdminBreachingConnectionStatus;
|
|
4563
|
+
targetUnit?: Maybe<AdminUnit>;
|
|
4563
4564
|
targetWorkspace?: Maybe<AdminWorkspace>;
|
|
4564
4565
|
updatedTimestamp?: Maybe<Scalars['String']['output']>;
|
|
4565
4566
|
};
|
|
@@ -4568,6 +4569,9 @@ export type AdminBreachingConnectionEdge = {
|
|
|
4568
4569
|
cursor: Scalars['String']['output'];
|
|
4569
4570
|
node: AdminBreachingConnection;
|
|
4570
4571
|
};
|
|
4572
|
+
export type AdminBreachingConnectionFilter = {
|
|
4573
|
+
status?: InputMaybe<AdminBreachingConnectionStatus>;
|
|
4574
|
+
};
|
|
4571
4575
|
export declare enum AdminBreachingConnectionStatus {
|
|
4572
4576
|
Active = "ACTIVE",
|
|
4573
4577
|
Removed = "REMOVED"
|
|
@@ -4697,6 +4701,11 @@ export type AdminCreateInvitePolicyResponsePayload = {
|
|
|
4697
4701
|
invitePolicy?: Maybe<AdminInvitePolicy>;
|
|
4698
4702
|
success: Scalars['Boolean']['output'];
|
|
4699
4703
|
};
|
|
4704
|
+
export type AdminCreateOAuthClientInput = {
|
|
4705
|
+
name: Scalars['String']['input'];
|
|
4706
|
+
orgId: Scalars['ID']['input'];
|
|
4707
|
+
scopes: Array<Scalars['String']['input']>;
|
|
4708
|
+
};
|
|
4700
4709
|
export type AdminCreateOutboundAuthServicePayload = AdminPayload & {
|
|
4701
4710
|
__typename?: 'AdminCreateOutboundAuthServicePayload';
|
|
4702
4711
|
errors?: Maybe<Array<AdminMutationError>>;
|
|
@@ -4912,7 +4921,7 @@ export type AdminGenericMutationResponse = AdminPayload & {
|
|
|
4912
4921
|
errors?: Maybe<Array<AdminMutationError>>;
|
|
4913
4922
|
success: Scalars['Boolean']['output'];
|
|
4914
4923
|
};
|
|
4915
|
-
export type AdminGroup = {
|
|
4924
|
+
export type AdminGroup = AdminPrincipal & {
|
|
4916
4925
|
__typename?: 'AdminGroup';
|
|
4917
4926
|
counts?: Maybe<AdminGroupCounts>;
|
|
4918
4927
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -5203,6 +5212,73 @@ export type AdminMutationError = {
|
|
|
5203
5212
|
extensions?: Maybe<AdminApplicationErrorExtension>;
|
|
5204
5213
|
message?: Maybe<Scalars['String']['output']>;
|
|
5205
5214
|
};
|
|
5215
|
+
export type AdminOAuthClient = {
|
|
5216
|
+
__typename?: 'AdminOAuthClient';
|
|
5217
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
5218
|
+
createdBy?: Maybe<AdminPrincipal>;
|
|
5219
|
+
createdByAccountId?: Maybe<Scalars['ID']['output']>;
|
|
5220
|
+
expiresAt?: Maybe<Scalars['DateTime']['output']>;
|
|
5221
|
+
id: Scalars['ID']['output'];
|
|
5222
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
5223
|
+
revokedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
5224
|
+
revokedBy?: Maybe<AdminPrincipal>;
|
|
5225
|
+
revokedByAccountId?: Maybe<Scalars['ID']['output']>;
|
|
5226
|
+
scopes?: Maybe<Array<Scalars['String']['output']>>;
|
|
5227
|
+
status?: Maybe<AdminOAuthClientStatus>;
|
|
5228
|
+
};
|
|
5229
|
+
export type AdminOAuthClientConnection = {
|
|
5230
|
+
__typename?: 'AdminOAuthClientConnection';
|
|
5231
|
+
edges?: Maybe<Array<AdminOAuthClientEdge>>;
|
|
5232
|
+
pageInfo: PageInfo;
|
|
5233
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
5234
|
+
};
|
|
5235
|
+
export type AdminOAuthClientEdge = {
|
|
5236
|
+
__typename?: 'AdminOAuthClientEdge';
|
|
5237
|
+
cursor: Scalars['String']['output'];
|
|
5238
|
+
node: AdminOAuthClient;
|
|
5239
|
+
};
|
|
5240
|
+
export type AdminOAuthClientFilter = {
|
|
5241
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
5242
|
+
status?: InputMaybe<AdminOAuthClientStatus>;
|
|
5243
|
+
};
|
|
5244
|
+
export type AdminOAuthClientSecretPayload = AdminPayload & {
|
|
5245
|
+
__typename?: 'AdminOAuthClientSecretPayload';
|
|
5246
|
+
clientId?: Maybe<Scalars['ID']['output']>;
|
|
5247
|
+
clientSecret?: Maybe<Scalars['String']['output']>;
|
|
5248
|
+
errors?: Maybe<Array<AdminMutationError>>;
|
|
5249
|
+
success: Scalars['Boolean']['output'];
|
|
5250
|
+
};
|
|
5251
|
+
export declare enum AdminOAuthClientSortField {
|
|
5252
|
+
CreatedAt = "CREATED_AT",
|
|
5253
|
+
CreatedByName = "CREATED_BY_NAME",
|
|
5254
|
+
Name = "NAME"
|
|
5255
|
+
}
|
|
5256
|
+
export type AdminOAuthClientSortInput = {
|
|
5257
|
+
direction: SortDirection;
|
|
5258
|
+
field: AdminOAuthClientSortField;
|
|
5259
|
+
};
|
|
5260
|
+
export declare enum AdminOAuthClientStatus {
|
|
5261
|
+
Active = "ACTIVE",
|
|
5262
|
+
Revoked = "REVOKED"
|
|
5263
|
+
}
|
|
5264
|
+
export type AdminOAuthScope = {
|
|
5265
|
+
__typename?: 'AdminOAuthScope';
|
|
5266
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
5267
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
5268
|
+
groupDisplayName?: Maybe<Scalars['String']['output']>;
|
|
5269
|
+
id: Scalars['ID']['output'];
|
|
5270
|
+
};
|
|
5271
|
+
export type AdminOAuthScopeConnection = {
|
|
5272
|
+
__typename?: 'AdminOAuthScopeConnection';
|
|
5273
|
+
edges?: Maybe<Array<AdminOAuthScopeEdge>>;
|
|
5274
|
+
pageInfo: PageInfo;
|
|
5275
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
5276
|
+
};
|
|
5277
|
+
export type AdminOAuthScopeEdge = {
|
|
5278
|
+
__typename?: 'AdminOAuthScopeEdge';
|
|
5279
|
+
cursor: Scalars['String']['output'];
|
|
5280
|
+
node: AdminOAuthScope;
|
|
5281
|
+
};
|
|
5206
5282
|
export type AdminOfferingInput = {
|
|
5207
5283
|
byokPolicyId?: InputMaybe<Scalars['ID']['input']>;
|
|
5208
5284
|
chargeElement?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -5325,7 +5401,10 @@ export declare enum AdminPolicyStatus {
|
|
|
5325
5401
|
export type AdminPrimitive = {
|
|
5326
5402
|
field?: InputMaybe<AdminQueryableField>;
|
|
5327
5403
|
};
|
|
5328
|
-
export type AdminPrincipal =
|
|
5404
|
+
export type AdminPrincipal = {
|
|
5405
|
+
id: Scalars['ID']['output'];
|
|
5406
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
5407
|
+
};
|
|
5329
5408
|
export type AdminProductListingResult = {
|
|
5330
5409
|
__typename?: 'AdminProductListingResult';
|
|
5331
5410
|
name: Scalars['String']['output'];
|
|
@@ -5398,6 +5477,16 @@ export type AdminResourceRoleInput = {
|
|
|
5398
5477
|
resourceId: Scalars['ID']['input'];
|
|
5399
5478
|
roleId: Scalars['ID']['input'];
|
|
5400
5479
|
};
|
|
5480
|
+
export type AdminRevokeOAuthClientInput = {
|
|
5481
|
+
clientId: Scalars['ID']['input'];
|
|
5482
|
+
orgId: Scalars['ID']['input'];
|
|
5483
|
+
};
|
|
5484
|
+
export type AdminRevokeOAuthClientPayload = AdminPayload & {
|
|
5485
|
+
__typename?: 'AdminRevokeOAuthClientPayload';
|
|
5486
|
+
clientId?: Maybe<Scalars['ID']['output']>;
|
|
5487
|
+
errors?: Maybe<Array<AdminMutationError>>;
|
|
5488
|
+
success: Scalars['Boolean']['output'];
|
|
5489
|
+
};
|
|
5401
5490
|
export type AdminRevokeRoleInput = {
|
|
5402
5491
|
principalId: Scalars['String']['input'];
|
|
5403
5492
|
resourceId: Scalars['String']['input'];
|
|
@@ -5440,6 +5529,10 @@ export type AdminRoleIdCounts = {
|
|
|
5440
5529
|
count: Scalars['Int']['output'];
|
|
5441
5530
|
roleId: Scalars['String']['output'];
|
|
5442
5531
|
};
|
|
5532
|
+
export type AdminRotateOAuthClientSecretInput = {
|
|
5533
|
+
clientId: Scalars['ID']['input'];
|
|
5534
|
+
orgId: Scalars['ID']['input'];
|
|
5535
|
+
};
|
|
5443
5536
|
export type AdminSamlConfiguration = {
|
|
5444
5537
|
__typename?: 'AdminSamlConfiguration';
|
|
5445
5538
|
identityProviderDirectoryId: Scalars['ID']['output'];
|
|
@@ -5959,6 +6052,15 @@ export type AdminUpdateAiPolicyResponsePayload = AdminPayload & {
|
|
|
5959
6052
|
errors?: Maybe<Array<AdminMutationError>>;
|
|
5960
6053
|
success: Scalars['Boolean']['output'];
|
|
5961
6054
|
};
|
|
6055
|
+
export type AdminUpdateEnforceBoundarySettingInput = {
|
|
6056
|
+
boundaryEnforced: Scalars['Boolean']['input'];
|
|
6057
|
+
orgId: Scalars['ID']['input'];
|
|
6058
|
+
};
|
|
6059
|
+
export type AdminUpdateEnforceBoundarySettingPayload = {
|
|
6060
|
+
__typename?: 'AdminUpdateEnforceBoundarySettingPayload';
|
|
6061
|
+
errors?: Maybe<Array<AdminMutationError>>;
|
|
6062
|
+
success: Scalars['Boolean']['output'];
|
|
6063
|
+
};
|
|
5962
6064
|
export type AdminUpdateInvitePolicyInput = {
|
|
5963
6065
|
allowedAction?: InputMaybe<AdminInviteAllowedAction>;
|
|
5964
6066
|
appliesTo?: InputMaybe<Array<AdminResourceRoleInput>>;
|
|
@@ -5982,7 +6084,7 @@ export type AdminUsageInfo = {
|
|
|
5982
6084
|
usage?: Maybe<Scalars['Float']['output']>;
|
|
5983
6085
|
usageIdentifier?: Maybe<Scalars['String']['output']>;
|
|
5984
6086
|
};
|
|
5985
|
-
export type AdminUser = {
|
|
6087
|
+
export type AdminUser = AdminPrincipal & {
|
|
5986
6088
|
__typename?: 'AdminUser';
|
|
5987
6089
|
accountStatus: Scalars['String']['output'];
|
|
5988
6090
|
accountType?: Maybe<Scalars['String']['output']>;
|
|
@@ -6259,6 +6361,24 @@ export type AgentAiSummary = {
|
|
|
6259
6361
|
adf?: Maybe<Scalars['String']['output']>;
|
|
6260
6362
|
text?: Maybe<Scalars['String']['output']>;
|
|
6261
6363
|
};
|
|
6364
|
+
export type AgentConversationChannel = {
|
|
6365
|
+
__typename?: 'AgentConversationChannel';
|
|
6366
|
+
createdAt?: Maybe<Scalars['Long']['output']>;
|
|
6367
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
6368
|
+
interactionChannel?: Maybe<Scalars['String']['output']>;
|
|
6369
|
+
interactionChannelAri?: Maybe<Scalars['String']['output']>;
|
|
6370
|
+
isPinned?: Maybe<Scalars['Boolean']['output']>;
|
|
6371
|
+
isPlanning?: Maybe<Scalars['Boolean']['output']>;
|
|
6372
|
+
lastAgentMessageId?: Maybe<Scalars['String']['output']>;
|
|
6373
|
+
lastAgentMessageStatus?: Maybe<Scalars['String']['output']>;
|
|
6374
|
+
lastMessage?: Maybe<Scalars['String']['output']>;
|
|
6375
|
+
lastMessageTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
6376
|
+
lastMessageType?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
6377
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
6378
|
+
pinnedAt?: Maybe<Scalars['Long']['output']>;
|
|
6379
|
+
readStatus?: Maybe<Scalars['Boolean']['output']>;
|
|
6380
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
6381
|
+
};
|
|
6262
6382
|
export type AgentSession = AgentSessionNode & {
|
|
6263
6383
|
__typename?: 'AgentSession';
|
|
6264
6384
|
_type?: Maybe<Scalars['String']['output']>;
|
|
@@ -6267,6 +6387,7 @@ export type AgentSession = AgentSessionNode & {
|
|
|
6267
6387
|
agentAri?: Maybe<Scalars['ID']['output']>;
|
|
6268
6388
|
associatedEntities?: Maybe<Array<Maybe<AgentSessionLinkedEntity>>>;
|
|
6269
6389
|
author?: Maybe<User>;
|
|
6390
|
+
conversationChannel?: Maybe<AgentConversationChannel>;
|
|
6270
6391
|
convoAiAgentId?: Maybe<Scalars['String']['output']>;
|
|
6271
6392
|
expireTime?: Maybe<Scalars['DateTime']['output']>;
|
|
6272
6393
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -6277,6 +6398,9 @@ export type AgentSession = AgentSessionNode & {
|
|
|
6277
6398
|
studioAgent?: Maybe<AgentStudioAgent>;
|
|
6278
6399
|
version?: Maybe<Scalars['Long']['output']>;
|
|
6279
6400
|
};
|
|
6401
|
+
export type AgentSessionConversationChannelArgs = {
|
|
6402
|
+
workspaceAri: Scalars['String']['input'];
|
|
6403
|
+
};
|
|
6280
6404
|
export type AgentSessionAssociation = AgentSessionAssociationNode & {
|
|
6281
6405
|
__typename?: 'AgentSessionAssociation';
|
|
6282
6406
|
_type?: Maybe<Scalars['String']['output']>;
|
|
@@ -6697,6 +6821,7 @@ export type AgentStudioAssistantConversation = {
|
|
|
6697
6821
|
__typename?: 'AgentStudioAssistantConversation';
|
|
6698
6822
|
agentVersionNumber?: Maybe<Scalars['Int']['output']>;
|
|
6699
6823
|
hasCoachingContent?: Maybe<Scalars['Boolean']['output']>;
|
|
6824
|
+
hasConfigurationError?: Maybe<Scalars['Boolean']['output']>;
|
|
6700
6825
|
hasGenericAnnotation?: Maybe<Scalars['Boolean']['output']>;
|
|
6701
6826
|
id?: Maybe<Scalars['ID']['output']>;
|
|
6702
6827
|
interactionChannel?: Maybe<Scalars['String']['output']>;
|
|
@@ -6772,6 +6897,9 @@ export type AgentStudioAuthReadinessResult = {
|
|
|
6772
6897
|
thirdPartyApps: Array<AgentStudioThirdPartyApp>;
|
|
6773
6898
|
thirdPartyConnections?: Maybe<Array<AgentStudioThirdPartyConnection>>;
|
|
6774
6899
|
};
|
|
6900
|
+
export type AgentStudioAuthReadinessResultFirstPartyAppsArgs = {
|
|
6901
|
+
includeGrantedApps?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6902
|
+
};
|
|
6775
6903
|
export type AgentStudioAuthoringTeamInput = {
|
|
6776
6904
|
authoringTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
6777
6905
|
};
|
|
@@ -9053,6 +9181,8 @@ export type AgentWorkspaceProjectRoutingHistoryEventsArgs = {
|
|
|
9053
9181
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
9054
9182
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
9055
9183
|
kinds?: InputMaybe<Array<AgentWorkspaceRoutingHistoryEventKind>>;
|
|
9184
|
+
statuses?: InputMaybe<Array<AgentWorkspaceRoutingHistoryStatus>>;
|
|
9185
|
+
triggers?: InputMaybe<Array<AgentWorkspaceConfigurableRoutingTrigger>>;
|
|
9056
9186
|
};
|
|
9057
9187
|
export type AgentWorkspaceProjectSkill = {
|
|
9058
9188
|
__typename?: 'AgentWorkspaceProjectSkill';
|
|
@@ -9226,6 +9356,7 @@ export type AgentWorkspaceRoutingHistoryEvent = {
|
|
|
9226
9356
|
kind: AgentWorkspaceRoutingHistoryEventKind;
|
|
9227
9357
|
message: Scalars['String']['output'];
|
|
9228
9358
|
occurredAt: Scalars['DateTime']['output'];
|
|
9359
|
+
status?: Maybe<AgentWorkspaceRoutingHistoryStatus>;
|
|
9229
9360
|
trigger?: Maybe<Scalars['String']['output']>;
|
|
9230
9361
|
};
|
|
9231
9362
|
export type AgentWorkspaceRoutingHistoryEventConnection = {
|
|
@@ -9250,6 +9381,12 @@ export type AgentWorkspaceRoutingHistoryPageInfo = {
|
|
|
9250
9381
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
9251
9382
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
9252
9383
|
};
|
|
9384
|
+
export declare enum AgentWorkspaceRoutingHistoryStatus {
|
|
9385
|
+
AssignedAndRouted = "ASSIGNED_AND_ROUTED",
|
|
9386
|
+
AssignedTeamMember = "ASSIGNED_TEAM_MEMBER",
|
|
9387
|
+
RoutedTeam = "ROUTED_TEAM",
|
|
9388
|
+
Skipped = "SKIPPED"
|
|
9389
|
+
}
|
|
9253
9390
|
export type AgentWorkspaceRoutingHistoryTeamEntity = AgentWorkspaceRoutingHistoryEntity & {
|
|
9254
9391
|
__typename?: 'AgentWorkspaceRoutingHistoryTeamEntity';
|
|
9255
9392
|
fallbackText: Scalars['String']['output'];
|
|
@@ -9264,6 +9401,18 @@ export type AgentWorkspaceRoutingHistoryUserEntity = AgentWorkspaceRoutingHistor
|
|
|
9264
9401
|
key: Scalars['String']['output'];
|
|
9265
9402
|
user?: Maybe<User>;
|
|
9266
9403
|
};
|
|
9404
|
+
export type AgentWorkspaceRoutingServiceFieldInput = {
|
|
9405
|
+
id: Scalars['String']['input'];
|
|
9406
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
9407
|
+
type: AgentWorkspaceSmartRoutingServiceFieldType;
|
|
9408
|
+
};
|
|
9409
|
+
export type AgentWorkspaceRoutingSetupRowInput = {
|
|
9410
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
9411
|
+
included?: InputMaybe<Scalars['Boolean']['input']>;
|
|
9412
|
+
serviceId?: InputMaybe<Scalars['ID']['input']>;
|
|
9413
|
+
serviceName?: InputMaybe<Scalars['String']['input']>;
|
|
9414
|
+
teamAri?: InputMaybe<Scalars['ID']['input']>;
|
|
9415
|
+
};
|
|
9267
9416
|
export type AgentWorkspaceRoutingTableEntry = {
|
|
9268
9417
|
__typename?: 'AgentWorkspaceRoutingTableEntry';
|
|
9269
9418
|
description: Scalars['String']['output'];
|
|
@@ -9300,6 +9449,21 @@ export declare enum AgentWorkspaceRoutingTableGenerationStatus {
|
|
|
9300
9449
|
InProgress = "IN_PROGRESS",
|
|
9301
9450
|
Timeout = "TIMEOUT"
|
|
9302
9451
|
}
|
|
9452
|
+
export type AgentWorkspaceSaveRoutingSetupInput = {
|
|
9453
|
+
cloudId: Scalars['ID']['input'];
|
|
9454
|
+
defaultTeam?: InputMaybe<Scalars['ID']['input']>;
|
|
9455
|
+
projectKey: Scalars['String']['input'];
|
|
9456
|
+
routingMode?: InputMaybe<AgentWorkspaceSmartRoutingMode>;
|
|
9457
|
+
rows?: InputMaybe<Array<AgentWorkspaceRoutingSetupRowInput>>;
|
|
9458
|
+
serviceField?: InputMaybe<AgentWorkspaceRoutingServiceFieldInput>;
|
|
9459
|
+
teamAssignmentMode: AgentWorkspaceTeamAssignmentMode;
|
|
9460
|
+
};
|
|
9461
|
+
export type AgentWorkspaceSaveRoutingSetupPayload = {
|
|
9462
|
+
__typename?: 'AgentWorkspaceSaveRoutingSetupPayload';
|
|
9463
|
+
rowsWritten: Scalars['Int']['output'];
|
|
9464
|
+
smartRoutingConfig: AgentWorkspaceSmartRoutingConfig;
|
|
9465
|
+
success: Scalars['Boolean']['output'];
|
|
9466
|
+
};
|
|
9303
9467
|
export type AgentWorkspaceSchedule = {
|
|
9304
9468
|
__typename?: 'AgentWorkspaceSchedule';
|
|
9305
9469
|
agents: Array<AgentWorkspaceAgent>;
|
|
@@ -9784,6 +9948,7 @@ export type AgentWorkspaceSmartRoutingConfig = {
|
|
|
9784
9948
|
serviceFieldName?: Maybe<Scalars['String']['output']>;
|
|
9785
9949
|
serviceFieldType?: Maybe<AgentWorkspaceSmartRoutingServiceFieldType>;
|
|
9786
9950
|
setupVersion: Scalars['Int']['output'];
|
|
9951
|
+
teamAssignmentMode: AgentWorkspaceTeamAssignmentMode;
|
|
9787
9952
|
triggers: Array<AgentWorkspaceConfigurableRoutingTriggerSetting>;
|
|
9788
9953
|
warning?: Maybe<Scalars['String']['output']>;
|
|
9789
9954
|
};
|
|
@@ -9986,6 +10151,11 @@ export type AgentWorkspaceTeam = {
|
|
|
9986
10151
|
teamARI: Scalars['ID']['output'];
|
|
9987
10152
|
teamId?: Maybe<Scalars['ID']['output']>;
|
|
9988
10153
|
};
|
|
10154
|
+
export declare enum AgentWorkspaceTeamAssignmentMode {
|
|
10155
|
+
DefaultTeam = "DEFAULT_TEAM",
|
|
10156
|
+
Manual = "MANUAL",
|
|
10157
|
+
Smart = "SMART"
|
|
10158
|
+
}
|
|
9989
10159
|
export type AgentWorkspaceTeamCapacitiesInput = {
|
|
9990
10160
|
cloudId: Scalars['ID']['input'];
|
|
9991
10161
|
projectKey: Scalars['String']['input'];
|
|
@@ -12828,6 +12998,7 @@ export type ArtifactCreateInput = {
|
|
|
12828
12998
|
access?: InputMaybe<ArtifactAccess>;
|
|
12829
12999
|
contentId: Scalars['ID']['input'];
|
|
12830
13000
|
contextId: Scalars['ID']['input'];
|
|
13001
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
12831
13002
|
name: Scalars['String']['input'];
|
|
12832
13003
|
type: Scalars['String']['input'];
|
|
12833
13004
|
};
|
|
@@ -12869,6 +13040,21 @@ export type ArtifactTokenReference = {
|
|
|
12869
13040
|
family: Scalars['String']['output'];
|
|
12870
13041
|
tokens: Array<ArtifactDesignToken>;
|
|
12871
13042
|
};
|
|
13043
|
+
export type ArtifactUpdateInput = {
|
|
13044
|
+
access?: InputMaybe<ArtifactAccess>;
|
|
13045
|
+
contentId?: InputMaybe<Scalars['ID']['input']>;
|
|
13046
|
+
contextId: Scalars['ID']['input'];
|
|
13047
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
13048
|
+
id: Scalars['ID']['input'];
|
|
13049
|
+
name: Scalars['String']['input'];
|
|
13050
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
13051
|
+
};
|
|
13052
|
+
export type ArtifactUpdatePayload = Payload & {
|
|
13053
|
+
__typename?: 'ArtifactUpdatePayload';
|
|
13054
|
+
artifact?: Maybe<Artifact>;
|
|
13055
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13056
|
+
success: Scalars['Boolean']['output'];
|
|
13057
|
+
};
|
|
12872
13058
|
export type ArtifactUploadTarget = {
|
|
12873
13059
|
__typename?: 'ArtifactUploadTarget';
|
|
12874
13060
|
contentId: Scalars['ID']['output'];
|
|
@@ -22801,7 +22987,9 @@ export type CommerceExpCcpEntitlement = {
|
|
|
22801
22987
|
accountModificationForBac?: Maybe<Array<Maybe<CommerceExpEntitlementAccountModificationForBac>>>;
|
|
22802
22988
|
actions?: Maybe<CommerceExpEntitlementActions>;
|
|
22803
22989
|
actions2?: Maybe<CommerceExpEntitlementActionsV2>;
|
|
22990
|
+
actions3?: Maybe<CommerceExpEntitlementActionsV3>;
|
|
22804
22991
|
aggCcpEntitlement?: Maybe<CcpEntitlement>;
|
|
22992
|
+
aggCcpEntitlementIfEntitlementTypeIsApp?: Maybe<CcpEntitlement>;
|
|
22805
22993
|
aggCcpEntitlementIfHostingTypeIsDataCenter?: Maybe<CcpEntitlement>;
|
|
22806
22994
|
allRelatedEntitlementsForBac?: Maybe<Array<Maybe<CommerceExpCcpEntitlement>>>;
|
|
22807
22995
|
allowanceExemptions?: Maybe<CommerceExpUtsAllowanceExemptionList>;
|
|
@@ -22820,6 +23008,7 @@ export type CommerceExpCcpEntitlement = {
|
|
|
22820
23008
|
contract?: Maybe<CommerceExpCommercialContract>;
|
|
22821
23009
|
currentPromotions?: Maybe<Array<Maybe<CommerceExpCcpPromotion>>>;
|
|
22822
23010
|
currentUserPermissions?: Maybe<Array<Maybe<CommerceExpUserPermission>>>;
|
|
23011
|
+
entitlementIdIfEntitlementTypeIsApp?: Maybe<Scalars['ID']['output']>;
|
|
22823
23012
|
entitlementIdIfHostingTypeIsDataCenter?: Maybe<Scalars['ID']['output']>;
|
|
22824
23013
|
forecastBillEstimates?: Maybe<CommerceExpForecastBillEstimates>;
|
|
22825
23014
|
hasConnectedAnnualProductEntitlements?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -23570,6 +23759,7 @@ export type CommerceExpCcpSubscriptionTrial = {
|
|
|
23570
23759
|
endTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
23571
23760
|
isCloudMigrationTrial?: Maybe<Scalars['Boolean']['output']>;
|
|
23572
23761
|
offering?: Maybe<CcpOffering>;
|
|
23762
|
+
offeringAri?: Maybe<Scalars['String']['output']>;
|
|
23573
23763
|
offeringId?: Maybe<Scalars['String']['output']>;
|
|
23574
23764
|
pricingPlan?: Maybe<CommerceExpCcpPricingPlan>;
|
|
23575
23765
|
pricingPlanId?: Maybe<Scalars['String']['output']>;
|
|
@@ -24379,6 +24569,15 @@ export declare enum CommerceExpEntitlementActionExperienceType {
|
|
|
24379
24569
|
NotAvailable = "NOT_AVAILABLE",
|
|
24380
24570
|
SelfServe = "SELF_SERVE"
|
|
24381
24571
|
}
|
|
24572
|
+
export declare enum CommerceExpEntitlementActionExperienceTypeV3 {
|
|
24573
|
+
CollectionInstance = "COLLECTION_INSTANCE",
|
|
24574
|
+
ContactEdo = "CONTACT_EDO",
|
|
24575
|
+
ContactSupport = "CONTACT_SUPPORT",
|
|
24576
|
+
ContactSupportEnterprise = "CONTACT_SUPPORT_ENTERPRISE",
|
|
24577
|
+
NotAvailable = "NOT_AVAILABLE",
|
|
24578
|
+
RequestAccess = "REQUEST_ACCESS",
|
|
24579
|
+
SelfServe = "SELF_SERVE"
|
|
24580
|
+
}
|
|
24382
24581
|
export type CommerceExpEntitlementActionResult = {
|
|
24383
24582
|
ctaType?: Maybe<CommerceExpEntitlementActionCtaType>;
|
|
24384
24583
|
experienceType?: Maybe<CommerceExpEntitlementActionExperienceType>;
|
|
@@ -24414,6 +24613,23 @@ export type CommerceExpEntitlementActionsV2 = {
|
|
|
24414
24613
|
undoCancellation?: Maybe<CommerceExpGenericEntitlementActionResult>;
|
|
24415
24614
|
viewBillingPartner?: Maybe<CommerceExpGenericEntitlementActionResult>;
|
|
24416
24615
|
};
|
|
24616
|
+
export type CommerceExpEntitlementActionsV3 = {
|
|
24617
|
+
__typename?: 'CommerceExpEntitlementActionsV3';
|
|
24618
|
+
applyPromoCode?: Maybe<CommerceExpGenericEntitlementActionResultV3>;
|
|
24619
|
+
cancel?: Maybe<CommerceExpGenericEntitlementActionResultV3>;
|
|
24620
|
+
changePlan?: Maybe<CommerceExpGenericEntitlementActionResultV3>;
|
|
24621
|
+
changeQuantity?: Maybe<CommerceExpGenericEntitlementActionResultV3>;
|
|
24622
|
+
deleteAppData?: Maybe<CommerceExpGenericEntitlementActionResultV3>;
|
|
24623
|
+
endTrialToCancel?: Maybe<CommerceExpGenericEntitlementActionResultV3>;
|
|
24624
|
+
manageCustomerContact?: Maybe<CommerceExpGenericEntitlementActionResultV3>;
|
|
24625
|
+
optOutTrial?: Maybe<CommerceExpGenericEntitlementActionResultV3>;
|
|
24626
|
+
reactivate?: Maybe<CommerceExpGenericEntitlementActionResultV3>;
|
|
24627
|
+
removeFromEnterprise?: Maybe<CommerceExpGenericEntitlementActionResultV3>;
|
|
24628
|
+
removeFromMultiInstance?: Maybe<CommerceExpGenericEntitlementActionResultV3>;
|
|
24629
|
+
unbundleCollection?: Maybe<CommerceExpGenericEntitlementActionResultV3>;
|
|
24630
|
+
undoCancellation?: Maybe<CommerceExpGenericEntitlementActionResultV3>;
|
|
24631
|
+
viewBillingPartner?: Maybe<CommerceExpGenericEntitlementActionResultV3>;
|
|
24632
|
+
};
|
|
24417
24633
|
export type CommerceExpEntitlementBillingPeriod = {
|
|
24418
24634
|
__typename?: 'CommerceExpEntitlementBillingPeriod';
|
|
24419
24635
|
endTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
@@ -24501,6 +24717,7 @@ export type CommerceExpEntitlementReactivationForBac = {
|
|
|
24501
24717
|
endTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
24502
24718
|
invoiceGroup?: Maybe<CommerceExpCcpInvoiceGroup>;
|
|
24503
24719
|
offering?: Maybe<CcpOffering>;
|
|
24720
|
+
offeringAri?: Maybe<Scalars['String']['output']>;
|
|
24504
24721
|
offeringId?: Maybe<Scalars['ID']['output']>;
|
|
24505
24722
|
pricingPlan?: Maybe<CommerceExpCcpPricingPlan>;
|
|
24506
24723
|
validReactivationOrder?: Maybe<CommerceExpValidOrderResponse>;
|
|
@@ -24670,6 +24887,11 @@ export type CommerceExpGenericEntitlementActionResult = CommerceExpEntitlementAc
|
|
|
24670
24887
|
ctaType?: Maybe<CommerceExpEntitlementActionCtaType>;
|
|
24671
24888
|
experienceType?: Maybe<CommerceExpEntitlementActionExperienceType>;
|
|
24672
24889
|
};
|
|
24890
|
+
export type CommerceExpGenericEntitlementActionResultV3 = {
|
|
24891
|
+
__typename?: 'CommerceExpGenericEntitlementActionResultV3';
|
|
24892
|
+
ctaType?: Maybe<CommerceExpEntitlementActionCtaType>;
|
|
24893
|
+
experienceType?: Maybe<CommerceExpEntitlementActionExperienceTypeV3>;
|
|
24894
|
+
};
|
|
24673
24895
|
export type CommerceExpGenericError = {
|
|
24674
24896
|
__typename?: 'CommerceExpGenericError';
|
|
24675
24897
|
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
@@ -25216,6 +25438,7 @@ export type CommerceExpOrderAmendmentItem = {
|
|
|
25216
25438
|
itemId: Scalars['String']['output'];
|
|
25217
25439
|
nextBillingAnchorTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
25218
25440
|
offering?: Maybe<CcpOffering>;
|
|
25441
|
+
offeringAri?: Maybe<Scalars['String']['output']>;
|
|
25219
25442
|
offeringId: Scalars['ID']['output'];
|
|
25220
25443
|
promotions?: Maybe<Array<Maybe<CommerceExpOmsPromotionDto>>>;
|
|
25221
25444
|
type: CommerceExpOrderType;
|
|
@@ -25316,6 +25539,7 @@ export type CommerceExpOrderCreationItem = {
|
|
|
25316
25539
|
itemId: Scalars['String']['output'];
|
|
25317
25540
|
nextBillingAnchorTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
25318
25541
|
offering?: Maybe<CcpOffering>;
|
|
25542
|
+
offeringAri?: Maybe<Scalars['String']['output']>;
|
|
25319
25543
|
offeringId: Scalars['ID']['output'];
|
|
25320
25544
|
parentEntitlement?: Maybe<CommerceExpCcpEntitlement>;
|
|
25321
25545
|
parentEntitlementId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -26831,6 +27055,7 @@ export type CommerceExpValidOrderSuccess = {
|
|
|
26831
27055
|
rawOrder?: Maybe<Scalars['JSON']['output']>;
|
|
26832
27056
|
recurringEstimate?: Maybe<CommerceExpOrderIntentEstimate>;
|
|
26833
27057
|
shouldAddPaymentBeforeUpgrade?: Maybe<Scalars['Boolean']['output']>;
|
|
27058
|
+
shouldSkipTrialOnUpgrade?: Maybe<Scalars['Boolean']['output']>;
|
|
26834
27059
|
upgradeServCoProductsAction?: Maybe<CommerceExpServCoUpgradeAction>;
|
|
26835
27060
|
validOrderItems?: Maybe<Array<Maybe<CommerceExpValidOrderItem>>>;
|
|
26836
27061
|
};
|
|
@@ -36912,6 +37137,7 @@ export type ConfluencePermissionTransitionPrincipalPageInfo = {
|
|
|
36912
37137
|
};
|
|
36913
37138
|
export declare enum ConfluencePermissionTransitionPrincipalType {
|
|
36914
37139
|
AccessClass = "ACCESS_CLASS",
|
|
37140
|
+
Agent = "AGENT",
|
|
36915
37141
|
Anonymous = "ANONYMOUS",
|
|
36916
37142
|
App = "APP",
|
|
36917
37143
|
Group = "GROUP",
|
|
@@ -41814,7 +42040,7 @@ export type CplsAtlasProjectRecommendation = {
|
|
|
41814
42040
|
atlasProject?: Maybe<TownsquareProject>;
|
|
41815
42041
|
atlasProjectId: Scalars['ID']['output'];
|
|
41816
42042
|
};
|
|
41817
|
-
export type CplsCapacityPlan = {
|
|
42043
|
+
export type CplsCapacityPlan = Node & {
|
|
41818
42044
|
__typename?: 'CplsCapacityPlan';
|
|
41819
42045
|
id: Scalars['ID']['output'];
|
|
41820
42046
|
scopeId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -42142,7 +42368,7 @@ export type CplsCreateSuggestionsPayload = Payload & {
|
|
|
42142
42368
|
errors?: Maybe<Array<MutationError>>;
|
|
42143
42369
|
success: Scalars['Boolean']['output'];
|
|
42144
42370
|
};
|
|
42145
|
-
export type CplsCustomContributionTarget = {
|
|
42371
|
+
export type CplsCustomContributionTarget = Node & {
|
|
42146
42372
|
__typename?: 'CplsCustomContributionTarget';
|
|
42147
42373
|
id: Scalars['ID']['output'];
|
|
42148
42374
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -46071,6 +46297,14 @@ export type CustomerServiceUpdateRequestParticipantInput = {
|
|
|
46071
46297
|
addedParticipants: Array<Scalars['String']['input']>;
|
|
46072
46298
|
deletedParticipants: Array<Scalars['ID']['input']>;
|
|
46073
46299
|
};
|
|
46300
|
+
export type CustomerServiceUpdateWorkItemSupportSitePayload = Payload & {
|
|
46301
|
+
__typename?: 'CustomerServiceUpdateWorkItemSupportSitePayload';
|
|
46302
|
+
errors?: Maybe<Array<MutationError>>;
|
|
46303
|
+
formAttached: Scalars['Boolean']['output'];
|
|
46304
|
+
id: Scalars['ID']['output'];
|
|
46305
|
+
success: Scalars['Boolean']['output'];
|
|
46306
|
+
workItemSupportSite?: Maybe<CustomerServiceWorkItemSupportSite>;
|
|
46307
|
+
};
|
|
46074
46308
|
export type CustomerServiceUpdatedCustomerAccount = {
|
|
46075
46309
|
__typename?: 'CustomerServiceUpdatedCustomerAccount';
|
|
46076
46310
|
displayName: Scalars['String']['output'];
|
|
@@ -46099,6 +46333,14 @@ export type CustomerServiceWorkItemAiSummaryResponse = {
|
|
|
46099
46333
|
meta?: Maybe<CustomerServiceWorkItemAiSummaryMeta>;
|
|
46100
46334
|
summary?: Maybe<CustomerServiceWorkItemAiSummary>;
|
|
46101
46335
|
};
|
|
46336
|
+
export type CustomerServiceWorkItemSupportSite = {
|
|
46337
|
+
__typename?: 'CustomerServiceWorkItemSupportSite';
|
|
46338
|
+
helpCenter?: Maybe<HelpCenterQueryResult>;
|
|
46339
|
+
helpCenterId?: Maybe<Scalars['ID']['output']>;
|
|
46340
|
+
id: Scalars['ID']['output'];
|
|
46341
|
+
workItemKey: Scalars['String']['output'];
|
|
46342
|
+
};
|
|
46343
|
+
export type CustomerServiceWorkItemSupportSiteQueryResult = CustomerServiceWorkItemSupportSite | QueryError;
|
|
46102
46344
|
export type CustomerUser = LocalizationContext & User & {
|
|
46103
46345
|
__typename?: 'CustomerUser';
|
|
46104
46346
|
accountId: Scalars['ID']['output'];
|
|
@@ -47403,6 +47645,7 @@ export type DevAiAutodevNextWorkItemClassification = {
|
|
|
47403
47645
|
codingAgentPromptContext?: Maybe<Scalars['String']['output']>;
|
|
47404
47646
|
enrichedContext?: Maybe<DevAiAutodevNextWorkItemEnrichedContext>;
|
|
47405
47647
|
feedback?: Maybe<Scalars['String']['output']>;
|
|
47648
|
+
openPullRequestAsDraft?: Maybe<Scalars['Boolean']['output']>;
|
|
47406
47649
|
repositories?: Maybe<Array<Scalars['String']['output']>>;
|
|
47407
47650
|
status?: Maybe<Scalars['ID']['output']>;
|
|
47408
47651
|
tShirtSize?: Maybe<Scalars['ID']['output']>;
|
|
@@ -50635,6 +50878,7 @@ export type DlpFalsePositive = {
|
|
|
50635
50878
|
contentHash?: Maybe<Scalars['String']['output']>;
|
|
50636
50879
|
contentType?: Maybe<Scalars['String']['output']>;
|
|
50637
50880
|
detectorId?: Maybe<Scalars['String']['output']>;
|
|
50881
|
+
detectorType?: Maybe<Scalars['String']['output']>;
|
|
50638
50882
|
excludedAt?: Maybe<Scalars['String']['output']>;
|
|
50639
50883
|
excludedBy?: Maybe<Scalars['String']['output']>;
|
|
50640
50884
|
findingId?: Maybe<Scalars['String']['output']>;
|
|
@@ -50644,6 +50888,7 @@ export type DlpFalsePositive = {
|
|
|
50644
50888
|
objectTitle?: Maybe<Scalars['String']['output']>;
|
|
50645
50889
|
parentResourceId?: Maybe<Scalars['String']['output']>;
|
|
50646
50890
|
resourceId?: Maybe<Scalars['String']['output']>;
|
|
50891
|
+
scope?: Maybe<DlpFalsePositiveScope>;
|
|
50647
50892
|
source?: Maybe<Scalars['String']['output']>;
|
|
50648
50893
|
workspaceId?: Maybe<Scalars['String']['output']>;
|
|
50649
50894
|
};
|
|
@@ -50665,15 +50910,21 @@ export type DlpFalsePositiveInput = {
|
|
|
50665
50910
|
contentHash: Scalars['String']['input'];
|
|
50666
50911
|
contentType: Scalars['String']['input'];
|
|
50667
50912
|
detectorId: Scalars['String']['input'];
|
|
50913
|
+
detectorType?: InputMaybe<Scalars['String']['input']>;
|
|
50668
50914
|
findingId: Scalars['String']['input'];
|
|
50669
50915
|
lastDetectedAt?: InputMaybe<Scalars['String']['input']>;
|
|
50670
50916
|
location?: InputMaybe<Scalars['String']['input']>;
|
|
50671
50917
|
objectTitle?: InputMaybe<Scalars['String']['input']>;
|
|
50672
50918
|
parentResourceId: Scalars['String']['input'];
|
|
50673
50919
|
resourceId: Scalars['String']['input'];
|
|
50920
|
+
scope?: InputMaybe<DlpFalsePositiveScope>;
|
|
50674
50921
|
source?: InputMaybe<Scalars['String']['input']>;
|
|
50675
50922
|
workspaceId: Scalars['String']['input'];
|
|
50676
50923
|
};
|
|
50924
|
+
export declare enum DlpFalsePositiveScope {
|
|
50925
|
+
Object = "OBJECT",
|
|
50926
|
+
Org = "ORG"
|
|
50927
|
+
}
|
|
50677
50928
|
export type DlpFalsePositivesListResponse = {
|
|
50678
50929
|
__typename?: 'DlpFalsePositivesListResponse';
|
|
50679
50930
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -51998,6 +52249,7 @@ export type ExternalBranch = Node & {
|
|
|
51998
52249
|
__typename?: 'ExternalBranch';
|
|
51999
52250
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52000
52251
|
branchId?: Maybe<Scalars['String']['output']>;
|
|
52252
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52001
52253
|
container?: Maybe<ExternalEntity>;
|
|
52002
52254
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52003
52255
|
createPullRequestUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -52029,6 +52281,7 @@ export type ExternalBuildInfo = Node & {
|
|
|
52029
52281
|
__typename?: 'ExternalBuildInfo';
|
|
52030
52282
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52031
52283
|
buildNumber?: Maybe<Scalars['Long']['output']>;
|
|
52284
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52032
52285
|
container?: Maybe<ExternalEntity>;
|
|
52033
52286
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52034
52287
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -52362,6 +52615,7 @@ export type ExternalCommit = Node & {
|
|
|
52362
52615
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52363
52616
|
author?: Maybe<ExternalUser>;
|
|
52364
52617
|
commitId?: Maybe<Scalars['String']['output']>;
|
|
52618
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52365
52619
|
container?: Maybe<ExternalEntity>;
|
|
52366
52620
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52367
52621
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -52777,6 +53031,7 @@ export type ExternalDealOpportunityAmount = {
|
|
|
52777
53031
|
export type ExternalDeployment = Node & {
|
|
52778
53032
|
__typename?: 'ExternalDeployment';
|
|
52779
53033
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53034
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52780
53035
|
container?: Maybe<ExternalEntity>;
|
|
52781
53036
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52782
53037
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -52814,6 +53069,7 @@ export declare enum ExternalDeploymentState {
|
|
|
52814
53069
|
export type ExternalDesign = Node & {
|
|
52815
53070
|
__typename?: 'ExternalDesign';
|
|
52816
53071
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53072
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52817
53073
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
52818
53074
|
createdBy?: Maybe<ExternalUser>;
|
|
52819
53075
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -53055,6 +53311,7 @@ export type ExternalExportLink = {
|
|
|
53055
53311
|
export type ExternalFeatureFlag = Node & {
|
|
53056
53312
|
__typename?: 'ExternalFeatureFlag';
|
|
53057
53313
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53314
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53058
53315
|
details?: Maybe<Array<Maybe<ExternalFeatureFlagDetail>>>;
|
|
53059
53316
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
53060
53317
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
@@ -53372,6 +53629,7 @@ export type ExternalPullRequest = Node & {
|
|
|
53372
53629
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53373
53630
|
author?: Maybe<ExternalUser>;
|
|
53374
53631
|
commentCount?: Maybe<Scalars['Int']['output']>;
|
|
53632
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53375
53633
|
container?: Maybe<ExternalEntity>;
|
|
53376
53634
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53377
53635
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -53433,6 +53691,7 @@ export type ExternalRemoteLink = Node & {
|
|
|
53433
53691
|
attributeMap?: Maybe<Array<Maybe<ExternalRemoteLinkAttributeTuple>>>;
|
|
53434
53692
|
author?: Maybe<ExternalUser>;
|
|
53435
53693
|
category?: Maybe<Scalars['String']['output']>;
|
|
53694
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53436
53695
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
53437
53696
|
createdBy?: Maybe<ExternalUser>;
|
|
53438
53697
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -53465,6 +53724,7 @@ export type ExternalRepository = Node & {
|
|
|
53465
53724
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53466
53725
|
avatarDescription?: Maybe<Scalars['String']['output']>;
|
|
53467
53726
|
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
53727
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53468
53728
|
createdBy?: Maybe<ExternalUser>;
|
|
53469
53729
|
description?: Maybe<Scalars['String']['output']>;
|
|
53470
53730
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -53918,6 +54178,7 @@ export type ExternalVulnerability = Node & {
|
|
|
53918
54178
|
__typename?: 'ExternalVulnerability';
|
|
53919
54179
|
additionalInfo?: Maybe<ExternalVulnerabilityAdditionalInfo>;
|
|
53920
54180
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
54181
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53921
54182
|
description?: Maybe<Scalars['String']['output']>;
|
|
53922
54183
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
53923
54184
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
@@ -57033,6 +57294,9 @@ export declare enum GraphInferenceFailureReason {
|
|
|
57033
57294
|
Unavailable = "UNAVAILABLE",
|
|
57034
57295
|
Unknown = "UNKNOWN"
|
|
57035
57296
|
}
|
|
57297
|
+
export type GraphInferenceGenerateReviewPackInput = {
|
|
57298
|
+
requestId: Scalars['String']['input'];
|
|
57299
|
+
};
|
|
57036
57300
|
export type GraphInferenceGetJiraEntityContextInput = {
|
|
57037
57301
|
agentAri?: InputMaybe<Scalars['String']['input']>;
|
|
57038
57302
|
contextTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -57303,6 +57567,7 @@ export type GraphInferenceInferenceAppV3 = {
|
|
|
57303
57567
|
source: Scalars['String']['output'];
|
|
57304
57568
|
};
|
|
57305
57569
|
export type GraphInferenceInferenceEvalInput = {
|
|
57570
|
+
activationId?: InputMaybe<Scalars['String']['input']>;
|
|
57306
57571
|
appId: Scalars['String']['input'];
|
|
57307
57572
|
historyFixture?: InputMaybe<Scalars['JSON']['input']>;
|
|
57308
57573
|
promptTemplate?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -57501,6 +57766,74 @@ export type GraphInferenceInferredProjectViewer = {
|
|
|
57501
57766
|
__typename?: 'GraphInferenceInferredProjectViewer';
|
|
57502
57767
|
accountId: Scalars['String']['output'];
|
|
57503
57768
|
};
|
|
57769
|
+
export type GraphInferenceInlineEvalContractInput = {
|
|
57770
|
+
appId: Scalars['String']['input'];
|
|
57771
|
+
};
|
|
57772
|
+
export type GraphInferenceInlineEvalContractResponse = {
|
|
57773
|
+
__typename?: 'GraphInferenceInlineEvalContractResponse';
|
|
57774
|
+
appConfigurationFingerprint: Scalars['String']['output'];
|
|
57775
|
+
appId: Scalars['String']['output'];
|
|
57776
|
+
sourceCapabilityId: Scalars['String']['output'];
|
|
57777
|
+
stages: Array<GraphInferenceInlineEvalStageContract>;
|
|
57778
|
+
supported: Scalars['Boolean']['output'];
|
|
57779
|
+
targetCapabilityIds: Array<Scalars['String']['output']>;
|
|
57780
|
+
unsupportedReason?: Maybe<Scalars['String']['output']>;
|
|
57781
|
+
};
|
|
57782
|
+
export type GraphInferenceInlineEvalCost = {
|
|
57783
|
+
__typename?: 'GraphInferenceInlineEvalCost';
|
|
57784
|
+
amountUsd?: Maybe<Scalars['String']['output']>;
|
|
57785
|
+
status: Scalars['String']['output'];
|
|
57786
|
+
};
|
|
57787
|
+
export type GraphInferenceInlineEvalRunResponse = {
|
|
57788
|
+
__typename?: 'GraphInferenceInlineEvalRunResponse';
|
|
57789
|
+
appConfigurationFingerprint: Scalars['String']['output'];
|
|
57790
|
+
appId: Scalars['String']['output'];
|
|
57791
|
+
cost: GraphInferenceInlineEvalCost;
|
|
57792
|
+
createdAtUnixSeconds: Scalars['Long']['output'];
|
|
57793
|
+
expiresAtUnixSeconds: Scalars['Long']['output'];
|
|
57794
|
+
failureCode?: Maybe<Scalars['String']['output']>;
|
|
57795
|
+
result?: Maybe<Scalars['JSON']['output']>;
|
|
57796
|
+
runId: Scalars['ID']['output'];
|
|
57797
|
+
stages: Array<GraphInferenceInlineEvalStageTelemetry>;
|
|
57798
|
+
status: Scalars['String']['output'];
|
|
57799
|
+
};
|
|
57800
|
+
export type GraphInferenceInlineEvalStageContract = {
|
|
57801
|
+
__typename?: 'GraphInferenceInlineEvalStageContract';
|
|
57802
|
+
id: Scalars['String']['output'];
|
|
57803
|
+
modelOverrideSupported: Scalars['Boolean']['output'];
|
|
57804
|
+
optionalInputIds: Array<Scalars['String']['output']>;
|
|
57805
|
+
promptOverrideSupported: Scalars['Boolean']['output'];
|
|
57806
|
+
reasoningLevelOverrideSupported: Scalars['Boolean']['output'];
|
|
57807
|
+
};
|
|
57808
|
+
export type GraphInferenceInlineEvalStageTelemetry = {
|
|
57809
|
+
__typename?: 'GraphInferenceInlineEvalStageTelemetry';
|
|
57810
|
+
cachedReadTokens?: Maybe<Scalars['Long']['output']>;
|
|
57811
|
+
cachedWriteTokens?: Maybe<Scalars['Long']['output']>;
|
|
57812
|
+
configuredModel?: Maybe<Scalars['String']['output']>;
|
|
57813
|
+
inputTokens?: Maybe<Scalars['Long']['output']>;
|
|
57814
|
+
latencyMs?: Maybe<Scalars['Long']['output']>;
|
|
57815
|
+
outputTokens?: Maybe<Scalars['Long']['output']>;
|
|
57816
|
+
promptVersion: Scalars['String']['output'];
|
|
57817
|
+
responseBytes?: Maybe<Scalars['Long']['output']>;
|
|
57818
|
+
stageId: Scalars['String']['output'];
|
|
57819
|
+
thoughtTokens?: Maybe<Scalars['Long']['output']>;
|
|
57820
|
+
totalTokens?: Maybe<Scalars['Long']['output']>;
|
|
57821
|
+
};
|
|
57822
|
+
export type GraphInferenceInlineEvalStartInput = {
|
|
57823
|
+
appConfigurationFingerprint: Scalars['String']['input'];
|
|
57824
|
+
appId: Scalars['String']['input'];
|
|
57825
|
+
clientRequestId: Scalars['String']['input'];
|
|
57826
|
+
executionOverrides?: InputMaybe<Scalars['JSON']['input']>;
|
|
57827
|
+
inlinePayload: Scalars['JSON']['input'];
|
|
57828
|
+
stageInputs?: InputMaybe<Scalars['JSON']['input']>;
|
|
57829
|
+
};
|
|
57830
|
+
export type GraphInferenceInlineEvalStartResponse = {
|
|
57831
|
+
__typename?: 'GraphInferenceInlineEvalStartResponse';
|
|
57832
|
+
createdAtUnixSeconds: Scalars['Long']['output'];
|
|
57833
|
+
expiresAtUnixSeconds: Scalars['Long']['output'];
|
|
57834
|
+
runId: Scalars['ID']['output'];
|
|
57835
|
+
status: Scalars['String']['output'];
|
|
57836
|
+
};
|
|
57504
57837
|
export type GraphInferenceInsight = {
|
|
57505
57838
|
associatedEntities: Array<GraphInferenceInsightEntity>;
|
|
57506
57839
|
confidenceScore?: Maybe<Scalars['Float']['output']>;
|
|
@@ -57659,6 +57992,122 @@ export type GraphInferenceRelatedReposRoot = {
|
|
|
57659
57992
|
__typename?: 'GraphInferenceRelatedReposRoot';
|
|
57660
57993
|
ari: Scalars['String']['output'];
|
|
57661
57994
|
};
|
|
57995
|
+
export type GraphInferenceReviewEntity = {
|
|
57996
|
+
__typename?: 'GraphInferenceReviewEntity';
|
|
57997
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
57998
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
57999
|
+
id: Scalars['String']['output'];
|
|
58000
|
+
inferred: Scalars['Boolean']['output'];
|
|
58001
|
+
kind: GraphInferenceReviewSubjectKind;
|
|
58002
|
+
title: Scalars['String']['output'];
|
|
58003
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
58004
|
+
};
|
|
58005
|
+
export type GraphInferenceReviewEvidence = {
|
|
58006
|
+
__typename?: 'GraphInferenceReviewEvidence';
|
|
58007
|
+
entity: GraphInferenceReviewEntity;
|
|
58008
|
+
sourceType?: Maybe<Scalars['String']['output']>;
|
|
58009
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
58010
|
+
};
|
|
58011
|
+
export declare enum GraphInferenceReviewIssueLabel {
|
|
58012
|
+
MissingContext = "MISSING_CONTEXT",
|
|
58013
|
+
Outdated = "OUTDATED",
|
|
58014
|
+
UnsupportedEvidence = "UNSUPPORTED_EVIDENCE",
|
|
58015
|
+
WrongEntity = "WRONG_ENTITY",
|
|
58016
|
+
WrongRelationship = "WRONG_RELATIONSHIP"
|
|
58017
|
+
}
|
|
58018
|
+
export type GraphInferenceReviewPackDetail = {
|
|
58019
|
+
__typename?: 'GraphInferenceReviewPackDetail';
|
|
58020
|
+
items: Array<GraphInferenceReviewPackItem>;
|
|
58021
|
+
summary: GraphInferenceReviewPackSummary;
|
|
58022
|
+
};
|
|
58023
|
+
export type GraphInferenceReviewPackItem = {
|
|
58024
|
+
__typename?: 'GraphInferenceReviewPackItem';
|
|
58025
|
+
anchor?: Maybe<GraphInferenceInferenceAppStoredAnchor>;
|
|
58026
|
+
appId: Scalars['String']['output'];
|
|
58027
|
+
available: Scalars['Boolean']['output'];
|
|
58028
|
+
evidence: Array<GraphInferenceReviewEvidence>;
|
|
58029
|
+
explanation?: Maybe<Scalars['String']['output']>;
|
|
58030
|
+
id: Scalars['ID']['output'];
|
|
58031
|
+
inferenceNode?: Maybe<GraphInferenceInferenceAppStoredInferenceNode>;
|
|
58032
|
+
inferenceType: Scalars['String']['output'];
|
|
58033
|
+
linksEntities: Array<GraphInferenceInferenceAppStoredLinkedEntity>;
|
|
58034
|
+
position: Scalars['Int']['output'];
|
|
58035
|
+
response?: Maybe<GraphInferenceReviewResponse>;
|
|
58036
|
+
selectionReason: Scalars['String']['output'];
|
|
58037
|
+
subject?: Maybe<GraphInferenceReviewSubject>;
|
|
58038
|
+
};
|
|
58039
|
+
export declare enum GraphInferenceReviewPackKind {
|
|
58040
|
+
Manual = "MANUAL",
|
|
58041
|
+
Weekly = "WEEKLY"
|
|
58042
|
+
}
|
|
58043
|
+
export declare enum GraphInferenceReviewPackStatus {
|
|
58044
|
+
Completed = "COMPLETED",
|
|
58045
|
+
Failed = "FAILED",
|
|
58046
|
+
Generating = "GENERATING",
|
|
58047
|
+
InReview = "IN_REVIEW",
|
|
58048
|
+
Ready = "READY"
|
|
58049
|
+
}
|
|
58050
|
+
export type GraphInferenceReviewPackSummary = {
|
|
58051
|
+
__typename?: 'GraphInferenceReviewPackSummary';
|
|
58052
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
58053
|
+
failureCode?: Maybe<Scalars['String']['output']>;
|
|
58054
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
58055
|
+
itemCount?: Maybe<Scalars['Int']['output']>;
|
|
58056
|
+
kind?: Maybe<GraphInferenceReviewPackKind>;
|
|
58057
|
+
periodEnd?: Maybe<Scalars['String']['output']>;
|
|
58058
|
+
periodStart?: Maybe<Scalars['String']['output']>;
|
|
58059
|
+
requestedSize?: Maybe<Scalars['Int']['output']>;
|
|
58060
|
+
reviewedCount?: Maybe<Scalars['Int']['output']>;
|
|
58061
|
+
samplingVersion?: Maybe<Scalars['String']['output']>;
|
|
58062
|
+
skippedCount?: Maybe<Scalars['Int']['output']>;
|
|
58063
|
+
status?: Maybe<GraphInferenceReviewPackStatus>;
|
|
58064
|
+
tenantAri?: Maybe<Scalars['String']['output']>;
|
|
58065
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
58066
|
+
userAri?: Maybe<Scalars['String']['output']>;
|
|
58067
|
+
};
|
|
58068
|
+
export type GraphInferenceReviewRelationship = {
|
|
58069
|
+
__typename?: 'GraphInferenceReviewRelationship';
|
|
58070
|
+
relationshipType: Scalars['String']['output'];
|
|
58071
|
+
source: GraphInferenceReviewEntity;
|
|
58072
|
+
target: GraphInferenceReviewEntity;
|
|
58073
|
+
};
|
|
58074
|
+
export type GraphInferenceReviewResponse = {
|
|
58075
|
+
__typename?: 'GraphInferenceReviewResponse';
|
|
58076
|
+
correction?: Maybe<Scalars['String']['output']>;
|
|
58077
|
+
issueLabels: Array<GraphInferenceReviewIssueLabel>;
|
|
58078
|
+
itemId: Scalars['ID']['output'];
|
|
58079
|
+
skipped: Scalars['Boolean']['output'];
|
|
58080
|
+
updatedAt: Scalars['String']['output'];
|
|
58081
|
+
utility?: Maybe<GraphInferenceReviewUtility>;
|
|
58082
|
+
verdict?: Maybe<GraphInferenceReviewVerdict>;
|
|
58083
|
+
};
|
|
58084
|
+
export type GraphInferenceReviewSubject = {
|
|
58085
|
+
__typename?: 'GraphInferenceReviewSubject';
|
|
58086
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
58087
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
58088
|
+
id: Scalars['String']['output'];
|
|
58089
|
+
inferred: Scalars['Boolean']['output'];
|
|
58090
|
+
kind: GraphInferenceReviewSubjectKind;
|
|
58091
|
+
relationship?: Maybe<GraphInferenceReviewRelationship>;
|
|
58092
|
+
title: Scalars['String']['output'];
|
|
58093
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
58094
|
+
};
|
|
58095
|
+
export declare enum GraphInferenceReviewSubjectKind {
|
|
58096
|
+
Artifact = "ARTIFACT",
|
|
58097
|
+
Decision = "DECISION",
|
|
58098
|
+
Project = "PROJECT",
|
|
58099
|
+
Relationship = "RELATIONSHIP",
|
|
58100
|
+
Team = "TEAM"
|
|
58101
|
+
}
|
|
58102
|
+
export declare enum GraphInferenceReviewUtility {
|
|
58103
|
+
NotUseful = "NOT_USEFUL",
|
|
58104
|
+
Useful = "USEFUL"
|
|
58105
|
+
}
|
|
58106
|
+
export declare enum GraphInferenceReviewVerdict {
|
|
58107
|
+
Correct = "CORRECT",
|
|
58108
|
+
NeedsChanges = "NEEDS_CHANGES",
|
|
58109
|
+
Unsure = "UNSURE"
|
|
58110
|
+
}
|
|
57662
58111
|
export type GraphInferenceSimilarJiraItemCandidate = {
|
|
57663
58112
|
__typename?: 'GraphInferenceSimilarJiraItemCandidate';
|
|
57664
58113
|
ari: Scalars['String']['output'];
|
|
@@ -57680,6 +58129,15 @@ export type GraphInferenceSimilarJiraItemsRoot = {
|
|
|
57680
58129
|
__typename?: 'GraphInferenceSimilarJiraItemsRoot';
|
|
57681
58130
|
ari: Scalars['String']['output'];
|
|
57682
58131
|
};
|
|
58132
|
+
export type GraphInferenceSubmitReviewInput = {
|
|
58133
|
+
correction?: InputMaybe<Scalars['String']['input']>;
|
|
58134
|
+
issueLabels?: Array<GraphInferenceReviewIssueLabel>;
|
|
58135
|
+
itemId: Scalars['String']['input'];
|
|
58136
|
+
packId: Scalars['String']['input'];
|
|
58137
|
+
skipped?: Scalars['Boolean']['input'];
|
|
58138
|
+
utility?: InputMaybe<GraphInferenceReviewUtility>;
|
|
58139
|
+
verdict?: InputMaybe<GraphInferenceReviewVerdict>;
|
|
58140
|
+
};
|
|
57683
58141
|
export type GraphInferenceTargetInsightsInput = {
|
|
57684
58142
|
dateRange?: InputMaybe<GraphInferenceInsightDateRangeInput>;
|
|
57685
58143
|
insightTypes?: InputMaybe<Array<GraphInferenceInsightType>>;
|
|
@@ -58114,6 +58572,7 @@ export type GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateEdge = {
|
|
|
58114
58572
|
export type GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateNode = {
|
|
58115
58573
|
__typename?: 'GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateNode';
|
|
58116
58574
|
authType: GraphIntegrationMcpAdminManagementMcpServerAuthType;
|
|
58575
|
+
customOauthProperties: Array<GraphIntegrationMcpAdminManagementCustomOauthProperties>;
|
|
58117
58576
|
description?: Maybe<Scalars['String']['output']>;
|
|
58118
58577
|
displayName: Scalars['String']['output'];
|
|
58119
58578
|
documentationUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -58131,6 +58590,34 @@ export type GraphIntegrationMcpAdminManagementCustomOauthConfigInput = {
|
|
|
58131
58590
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
58132
58591
|
values?: InputMaybe<Array<GraphIntegrationMcpAdminManagementExtraInputEntry>>;
|
|
58133
58592
|
};
|
|
58593
|
+
export type GraphIntegrationMcpAdminManagementCustomOauthInputField = {
|
|
58594
|
+
__typename?: 'GraphIntegrationMcpAdminManagementCustomOauthInputField';
|
|
58595
|
+
inputPrefix?: Maybe<Scalars['String']['output']>;
|
|
58596
|
+
inputSuffix?: Maybe<Scalars['String']['output']>;
|
|
58597
|
+
inputType: GraphIntegrationMcpAdminManagementCustomOauthInputType;
|
|
58598
|
+
key: Scalars['String']['output'];
|
|
58599
|
+
label: Scalars['String']['output'];
|
|
58600
|
+
options?: Maybe<Array<GraphIntegrationMcpAdminManagementExtraInputOption>>;
|
|
58601
|
+
required: Scalars['Boolean']['output'];
|
|
58602
|
+
target: GraphIntegrationMcpAdminManagementCustomOauthInputTarget;
|
|
58603
|
+
validationPattern?: Maybe<Scalars['String']['output']>;
|
|
58604
|
+
};
|
|
58605
|
+
export declare enum GraphIntegrationMcpAdminManagementCustomOauthInputTarget {
|
|
58606
|
+
ClientId = "CLIENT_ID",
|
|
58607
|
+
ClientSecret = "CLIENT_SECRET",
|
|
58608
|
+
Value = "VALUE"
|
|
58609
|
+
}
|
|
58610
|
+
export declare enum GraphIntegrationMcpAdminManagementCustomOauthInputType {
|
|
58611
|
+
Secret = "SECRET",
|
|
58612
|
+
Select = "SELECT",
|
|
58613
|
+
Text = "TEXT"
|
|
58614
|
+
}
|
|
58615
|
+
export type GraphIntegrationMcpAdminManagementCustomOauthProperties = {
|
|
58616
|
+
__typename?: 'GraphIntegrationMcpAdminManagementCustomOauthProperties';
|
|
58617
|
+
authType: GraphIntegrationMcpAdminManagementMcpServerAuthType;
|
|
58618
|
+
platformInputs: Array<GraphIntegrationMcpAdminManagementCustomOauthInputField>;
|
|
58619
|
+
templateInputs: Array<GraphIntegrationMcpAdminManagementCustomOauthInputField>;
|
|
58620
|
+
};
|
|
58134
58621
|
export type GraphIntegrationMcpAdminManagementExtraInputEntry = {
|
|
58135
58622
|
key: Scalars['String']['input'];
|
|
58136
58623
|
value: Scalars['String']['input'];
|
|
@@ -58303,6 +58790,7 @@ export type GraphIntegrationMcpAdminManagementSurfaceMcpServerTemplateEdge = {
|
|
|
58303
58790
|
export type GraphIntegrationMcpAdminManagementSurfaceMcpServerTemplateNode = {
|
|
58304
58791
|
__typename?: 'GraphIntegrationMcpAdminManagementSurfaceMcpServerTemplateNode';
|
|
58305
58792
|
authType: GraphIntegrationMcpAdminManagementMcpServerAuthType;
|
|
58793
|
+
customOauthProperties: Array<GraphIntegrationMcpAdminManagementCustomOauthProperties>;
|
|
58306
58794
|
description?: Maybe<Scalars['String']['output']>;
|
|
58307
58795
|
displayName: Scalars['String']['output'];
|
|
58308
58796
|
displayTools: Array<GraphIntegrationMcpAdminManagementSurfaceMcpServerToolNode>;
|
|
@@ -61730,6 +62218,8 @@ export type GraphStore = {
|
|
|
61730
62218
|
atlassianUserOwnsExternalTestStatusInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInverseConnection>;
|
|
61731
62219
|
atlassianUserOwnsInferredProject?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectConnection>;
|
|
61732
62220
|
atlassianUserOwnsInferredProjectInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseConnection>;
|
|
62221
|
+
atlassianUserRespondsToJiraWorkItem?: Maybe<GraphStoreSimplifiedAtlassianUserRespondsToJiraWorkItemConnection>;
|
|
62222
|
+
atlassianUserRespondsToJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedAtlassianUserRespondsToJiraWorkItemInverseConnection>;
|
|
61733
62223
|
atlassianUserReviewedConfluenceApprovalInverse?: Maybe<GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection>;
|
|
61734
62224
|
atlassianUserTriggeredAtlassianAgentSessionInverse?: Maybe<GraphStoreSimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseConnection>;
|
|
61735
62225
|
atlassianUserUpdatedExternalCampaign?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCampaignConnection>;
|
|
@@ -62043,6 +62533,8 @@ export type GraphStore = {
|
|
|
62043
62533
|
inferredProjectHasRelatedEntityInverse?: Maybe<GraphStoreSimplifiedInferredProjectHasRelatedEntityInverseConnection>;
|
|
62044
62534
|
inferredProjectLinksEntity?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityConnection>;
|
|
62045
62535
|
inferredProjectLinksEntityInverse?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityInverseConnection>;
|
|
62536
|
+
inferredProjectPromotedToAtlassianProject?: Maybe<GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectConnection>;
|
|
62537
|
+
inferredProjectPromotedToAtlassianProjectInverse?: Maybe<GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectInverseConnection>;
|
|
62046
62538
|
inferredTeamCollaboratesOnInferredProject?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectConnection>;
|
|
62047
62539
|
inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
|
|
62048
62540
|
inferredTeamLinksEntity?: Maybe<GraphStoreSimplifiedInferredTeamLinksEntityConnection>;
|
|
@@ -62157,6 +62649,8 @@ export type GraphStore = {
|
|
|
62157
62649
|
jiraSpaceHasLinkedKnowledgeBaseEntityInverse?: Maybe<GraphStoreSimplifiedJiraSpaceHasLinkedKnowledgeBaseEntityInverseConnection>;
|
|
62158
62650
|
jiraWorkItemCommentHasChildComment?: Maybe<GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentConnection>;
|
|
62159
62651
|
jiraWorkItemCommentHasChildCommentInverse?: Maybe<GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentInverseConnection>;
|
|
62652
|
+
jiraWorkItemHasJsmIncidentSeverity?: Maybe<GraphStoreSimplifiedJiraWorkItemHasJsmIncidentSeverityConnection>;
|
|
62653
|
+
jiraWorkItemHasJsmIncidentSeverityInverse?: Maybe<GraphStoreSimplifiedJiraWorkItemHasJsmIncidentSeverityInverseConnection>;
|
|
62160
62654
|
jiraWorkItemLinksAssetObject?: Maybe<GraphStoreSimplifiedJiraWorkItemLinksAssetObjectConnection>;
|
|
62161
62655
|
jiraWorkItemLinksAssetObjectInverse?: Maybe<GraphStoreSimplifiedJiraWorkItemLinksAssetObjectInverseConnection>;
|
|
62162
62656
|
jsmProjectAssociatedService?: Maybe<GraphStoreSimplifiedJsmProjectAssociatedServiceConnection>;
|
|
@@ -63986,6 +64480,22 @@ export type GraphStoreAtlassianUserOwnsInferredProjectInverseArgs = {
|
|
|
63986
64480
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
63987
64481
|
sort?: InputMaybe<GraphStoreAtlassianUserOwnsInferredProjectSortInput>;
|
|
63988
64482
|
};
|
|
64483
|
+
export type GraphStoreAtlassianUserRespondsToJiraWorkItemArgs = {
|
|
64484
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
64485
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
64486
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
64487
|
+
id: Scalars['ID']['input'];
|
|
64488
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
64489
|
+
sort?: InputMaybe<GraphStoreAtlassianUserRespondsToJiraWorkItemSortInput>;
|
|
64490
|
+
};
|
|
64491
|
+
export type GraphStoreAtlassianUserRespondsToJiraWorkItemInverseArgs = {
|
|
64492
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
64493
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
64494
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
64495
|
+
id: Scalars['ID']['input'];
|
|
64496
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
64497
|
+
sort?: InputMaybe<GraphStoreAtlassianUserRespondsToJiraWorkItemSortInput>;
|
|
64498
|
+
};
|
|
63989
64499
|
export type GraphStoreAtlassianUserReviewedConfluenceApprovalInverseArgs = {
|
|
63990
64500
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
63991
64501
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -66416,6 +66926,22 @@ export type GraphStoreInferredProjectLinksEntityInverseArgs = {
|
|
|
66416
66926
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
66417
66927
|
sort?: InputMaybe<GraphStoreInferredProjectLinksEntitySortInput>;
|
|
66418
66928
|
};
|
|
66929
|
+
export type GraphStoreInferredProjectPromotedToAtlassianProjectArgs = {
|
|
66930
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
66931
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
66932
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
66933
|
+
id: Scalars['ID']['input'];
|
|
66934
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
66935
|
+
sort?: InputMaybe<GraphStoreInferredProjectPromotedToAtlassianProjectSortInput>;
|
|
66936
|
+
};
|
|
66937
|
+
export type GraphStoreInferredProjectPromotedToAtlassianProjectInverseArgs = {
|
|
66938
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
66939
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
66940
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
66941
|
+
id: Scalars['ID']['input'];
|
|
66942
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
66943
|
+
sort?: InputMaybe<GraphStoreInferredProjectPromotedToAtlassianProjectSortInput>;
|
|
66944
|
+
};
|
|
66419
66945
|
export type GraphStoreInferredTeamCollaboratesOnInferredProjectArgs = {
|
|
66420
66946
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
66421
66947
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -67272,6 +67798,22 @@ export type GraphStoreJiraWorkItemCommentHasChildCommentInverseArgs = {
|
|
|
67272
67798
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
67273
67799
|
sort?: InputMaybe<GraphStoreJiraWorkItemCommentHasChildCommentSortInput>;
|
|
67274
67800
|
};
|
|
67801
|
+
export type GraphStoreJiraWorkItemHasJsmIncidentSeverityArgs = {
|
|
67802
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
67803
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67804
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67805
|
+
id: Scalars['ID']['input'];
|
|
67806
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
67807
|
+
sort?: InputMaybe<GraphStoreJiraWorkItemHasJsmIncidentSeveritySortInput>;
|
|
67808
|
+
};
|
|
67809
|
+
export type GraphStoreJiraWorkItemHasJsmIncidentSeverityInverseArgs = {
|
|
67810
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
67811
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67812
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67813
|
+
id: Scalars['ID']['input'];
|
|
67814
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
67815
|
+
sort?: InputMaybe<GraphStoreJiraWorkItemHasJsmIncidentSeveritySortInput>;
|
|
67816
|
+
};
|
|
67275
67817
|
export type GraphStoreJiraWorkItemLinksAssetObjectArgs = {
|
|
67276
67818
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
67277
67819
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -72854,6 +73396,9 @@ export type GraphStoreAtlassianUserOwnsExternalTestStatusSortInput = {
|
|
|
72854
73396
|
export type GraphStoreAtlassianUserOwnsInferredProjectSortInput = {
|
|
72855
73397
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72856
73398
|
};
|
|
73399
|
+
export type GraphStoreAtlassianUserRespondsToJiraWorkItemSortInput = {
|
|
73400
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
73401
|
+
};
|
|
72857
73402
|
export type GraphStoreAtlassianUserReviewedConfluenceApprovalSortInput = {
|
|
72858
73403
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72859
73404
|
};
|
|
@@ -80373,6 +80918,9 @@ export type GraphStoreInferredProjectNodeMetadata = {
|
|
|
80373
80918
|
summary?: Maybe<Scalars['String']['output']>;
|
|
80374
80919
|
title?: Maybe<Scalars['String']['output']>;
|
|
80375
80920
|
};
|
|
80921
|
+
export type GraphStoreInferredProjectPromotedToAtlassianProjectSortInput = {
|
|
80922
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80923
|
+
};
|
|
80376
80924
|
export declare enum GraphStoreInferredRiskNodeInferredRiskLevelOutput {
|
|
80377
80925
|
Critical = "CRITICAL",
|
|
80378
80926
|
High = "HIGH",
|
|
@@ -80740,6 +81288,9 @@ export type GraphStoreJiraSpaceHasLinkedKnowledgeBaseEntitySortInput = {
|
|
|
80740
81288
|
export type GraphStoreJiraWorkItemCommentHasChildCommentSortInput = {
|
|
80741
81289
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80742
81290
|
};
|
|
81291
|
+
export type GraphStoreJiraWorkItemHasJsmIncidentSeveritySortInput = {
|
|
81292
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
81293
|
+
};
|
|
80743
81294
|
export type GraphStoreJiraWorkItemLinksAssetObjectSortInput = {
|
|
80744
81295
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80745
81296
|
};
|
|
@@ -83691,6 +84242,34 @@ export type GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseEdge = {
|
|
|
83691
84242
|
};
|
|
83692
84243
|
export type GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
83693
84244
|
export type GraphStoreSimplifiedAtlassianUserOwnsInferredProjectUnion = GraphStoreNodeResponse;
|
|
84245
|
+
export type GraphStoreSimplifiedAtlassianUserRespondsToJiraWorkItemConnection = HasPageInfo & {
|
|
84246
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserRespondsToJiraWorkItemConnection';
|
|
84247
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserRespondsToJiraWorkItemEdge>>>;
|
|
84248
|
+
pageInfo: PageInfo;
|
|
84249
|
+
};
|
|
84250
|
+
export type GraphStoreSimplifiedAtlassianUserRespondsToJiraWorkItemEdge = {
|
|
84251
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserRespondsToJiraWorkItemEdge';
|
|
84252
|
+
createdAt: Scalars['DateTime']['output'];
|
|
84253
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
84254
|
+
id: Scalars['ID']['output'];
|
|
84255
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
84256
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserRespondsToJiraWorkItemUnion>;
|
|
84257
|
+
};
|
|
84258
|
+
export type GraphStoreSimplifiedAtlassianUserRespondsToJiraWorkItemInverseConnection = HasPageInfo & {
|
|
84259
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserRespondsToJiraWorkItemInverseConnection';
|
|
84260
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserRespondsToJiraWorkItemInverseEdge>>>;
|
|
84261
|
+
pageInfo: PageInfo;
|
|
84262
|
+
};
|
|
84263
|
+
export type GraphStoreSimplifiedAtlassianUserRespondsToJiraWorkItemInverseEdge = {
|
|
84264
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserRespondsToJiraWorkItemInverseEdge';
|
|
84265
|
+
createdAt: Scalars['DateTime']['output'];
|
|
84266
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
84267
|
+
id: Scalars['ID']['output'];
|
|
84268
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
84269
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserRespondsToJiraWorkItemInverseUnion>;
|
|
84270
|
+
};
|
|
84271
|
+
export type GraphStoreSimplifiedAtlassianUserRespondsToJiraWorkItemInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
84272
|
+
export type GraphStoreSimplifiedAtlassianUserRespondsToJiraWorkItemUnion = JiraIssue;
|
|
83694
84273
|
export type GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection = HasPageInfo & {
|
|
83695
84274
|
__typename?: 'GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection';
|
|
83696
84275
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseEdge>>>;
|
|
@@ -87264,7 +87843,7 @@ export type GraphStoreSimplifiedInferredDecisionSourceLineageEntityInverseEdge =
|
|
|
87264
87843
|
node?: Maybe<GraphStoreSimplifiedInferredDecisionSourceLineageEntityInverseUnion>;
|
|
87265
87844
|
};
|
|
87266
87845
|
export type GraphStoreSimplifiedInferredDecisionSourceLineageEntityInverseUnion = GraphStoreNodeResponse;
|
|
87267
|
-
export type GraphStoreSimplifiedInferredDecisionSourceLineageEntityUnion = ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | ExternalVideo | LoomVideo;
|
|
87846
|
+
export type GraphStoreSimplifiedInferredDecisionSourceLineageEntityUnion = ConfluencePage | DevOpsDocument | DevOpsPullRequestDetails | ExternalDocument | ExternalPullRequest | ExternalVideo | LoomVideo;
|
|
87268
87847
|
export type GraphStoreSimplifiedInferredProjectHasRelatedEntityConnection = HasPageInfo & {
|
|
87269
87848
|
__typename?: 'GraphStoreSimplifiedInferredProjectHasRelatedEntityConnection';
|
|
87270
87849
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredProjectHasRelatedEntityEdge>>>;
|
|
@@ -87321,6 +87900,34 @@ export type GraphStoreSimplifiedInferredProjectLinksEntityInverseEdge = {
|
|
|
87321
87900
|
};
|
|
87322
87901
|
export type GraphStoreSimplifiedInferredProjectLinksEntityInverseUnion = GraphStoreNodeResponse;
|
|
87323
87902
|
export type GraphStoreSimplifiedInferredProjectLinksEntityUnion = ConfluencePage | JiraIssue | JiraProject;
|
|
87903
|
+
export type GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectConnection = HasPageInfo & {
|
|
87904
|
+
__typename?: 'GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectConnection';
|
|
87905
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectEdge>>>;
|
|
87906
|
+
pageInfo: PageInfo;
|
|
87907
|
+
};
|
|
87908
|
+
export type GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectEdge = {
|
|
87909
|
+
__typename?: 'GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectEdge';
|
|
87910
|
+
createdAt: Scalars['DateTime']['output'];
|
|
87911
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
87912
|
+
id: Scalars['ID']['output'];
|
|
87913
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
87914
|
+
node?: Maybe<GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectUnion>;
|
|
87915
|
+
};
|
|
87916
|
+
export type GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectInverseConnection = HasPageInfo & {
|
|
87917
|
+
__typename?: 'GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectInverseConnection';
|
|
87918
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectInverseEdge>>>;
|
|
87919
|
+
pageInfo: PageInfo;
|
|
87920
|
+
};
|
|
87921
|
+
export type GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectInverseEdge = {
|
|
87922
|
+
__typename?: 'GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectInverseEdge';
|
|
87923
|
+
createdAt: Scalars['DateTime']['output'];
|
|
87924
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
87925
|
+
id: Scalars['ID']['output'];
|
|
87926
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
87927
|
+
node?: Maybe<GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectInverseUnion>;
|
|
87928
|
+
};
|
|
87929
|
+
export type GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectInverseUnion = GraphStoreNodeResponse;
|
|
87930
|
+
export type GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectUnion = TownsquareProject;
|
|
87324
87931
|
export type GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectConnection = HasPageInfo & {
|
|
87325
87932
|
__typename?: 'GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectConnection';
|
|
87326
87933
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectEdge>>>;
|
|
@@ -88431,6 +89038,34 @@ export type GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentInverseEdge =
|
|
|
88431
89038
|
};
|
|
88432
89039
|
export type GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentInverseUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
88433
89040
|
export type GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
89041
|
+
export type GraphStoreSimplifiedJiraWorkItemHasJsmIncidentSeverityConnection = HasPageInfo & {
|
|
89042
|
+
__typename?: 'GraphStoreSimplifiedJiraWorkItemHasJsmIncidentSeverityConnection';
|
|
89043
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraWorkItemHasJsmIncidentSeverityEdge>>>;
|
|
89044
|
+
pageInfo: PageInfo;
|
|
89045
|
+
};
|
|
89046
|
+
export type GraphStoreSimplifiedJiraWorkItemHasJsmIncidentSeverityEdge = {
|
|
89047
|
+
__typename?: 'GraphStoreSimplifiedJiraWorkItemHasJsmIncidentSeverityEdge';
|
|
89048
|
+
createdAt: Scalars['DateTime']['output'];
|
|
89049
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
89050
|
+
id: Scalars['ID']['output'];
|
|
89051
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
89052
|
+
node?: Maybe<GraphStoreSimplifiedJiraWorkItemHasJsmIncidentSeverityUnion>;
|
|
89053
|
+
};
|
|
89054
|
+
export type GraphStoreSimplifiedJiraWorkItemHasJsmIncidentSeverityInverseConnection = HasPageInfo & {
|
|
89055
|
+
__typename?: 'GraphStoreSimplifiedJiraWorkItemHasJsmIncidentSeverityInverseConnection';
|
|
89056
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraWorkItemHasJsmIncidentSeverityInverseEdge>>>;
|
|
89057
|
+
pageInfo: PageInfo;
|
|
89058
|
+
};
|
|
89059
|
+
export type GraphStoreSimplifiedJiraWorkItemHasJsmIncidentSeverityInverseEdge = {
|
|
89060
|
+
__typename?: 'GraphStoreSimplifiedJiraWorkItemHasJsmIncidentSeverityInverseEdge';
|
|
89061
|
+
createdAt: Scalars['DateTime']['output'];
|
|
89062
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
89063
|
+
id: Scalars['ID']['output'];
|
|
89064
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
89065
|
+
node?: Maybe<GraphStoreSimplifiedJiraWorkItemHasJsmIncidentSeverityInverseUnion>;
|
|
89066
|
+
};
|
|
89067
|
+
export type GraphStoreSimplifiedJiraWorkItemHasJsmIncidentSeverityInverseUnion = JiraIssue;
|
|
89068
|
+
export type GraphStoreSimplifiedJiraWorkItemHasJsmIncidentSeverityUnion = GraphStoreNodeResponse;
|
|
88434
89069
|
export type GraphStoreSimplifiedJiraWorkItemLinksAssetObjectConnection = HasPageInfo & {
|
|
88435
89070
|
__typename?: 'GraphStoreSimplifiedJiraWorkItemLinksAssetObjectConnection';
|
|
88436
89071
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraWorkItemLinksAssetObjectEdge>>>;
|
|
@@ -97136,6 +97771,8 @@ export type GraphStoreV2 = {
|
|
|
97136
97771
|
atlassianUserReportedJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReportedJiraWorkItemInverseConnection>;
|
|
97137
97772
|
atlassianUserReportedJsmIncident?: Maybe<GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentConnection>;
|
|
97138
97773
|
atlassianUserReportedJsmIncidentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentInverseConnection>;
|
|
97774
|
+
atlassianUserRespondsToJiraWorkItem?: Maybe<GraphStoreV2SimplifiedAtlassianUserRespondsToJiraWorkItemConnection>;
|
|
97775
|
+
atlassianUserRespondsToJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserRespondsToJiraWorkItemInverseConnection>;
|
|
97139
97776
|
atlassianUserReviewedConfluenceApprovalInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection>;
|
|
97140
97777
|
atlassianUserSnapshottedConfluencePage?: Maybe<GraphStoreV2SimplifiedAtlassianUserSnapshottedConfluencePageConnection>;
|
|
97141
97778
|
atlassianUserSnapshottedConfluencePageInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserSnapshottedConfluencePageInverseConnection>;
|
|
@@ -97628,6 +98265,8 @@ export type GraphStoreV2 = {
|
|
|
97628
98265
|
inferredProjectHasRelatedEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectHasRelatedEntityInverseConnection>;
|
|
97629
98266
|
inferredProjectLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityConnection>;
|
|
97630
98267
|
inferredProjectLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityInverseConnection>;
|
|
98268
|
+
inferredProjectPromotedToAtlassianProject?: Maybe<GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectConnection>;
|
|
98269
|
+
inferredProjectPromotedToAtlassianProjectInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectInverseConnection>;
|
|
97631
98270
|
inferredTeamCollaboratesOnInferredProject?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectConnection>;
|
|
97632
98271
|
inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
|
|
97633
98272
|
inferredTeamLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredTeamLinksEntityConnection>;
|
|
@@ -97744,8 +98383,12 @@ export type GraphStoreV2 = {
|
|
|
97744
98383
|
jiraWorkItemHasJiraPriorityInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJiraPriorityInverseConnection>;
|
|
97745
98384
|
jiraWorkItemHasJiraWorkItemComment?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentConnection>;
|
|
97746
98385
|
jiraWorkItemHasJiraWorkItemCommentInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentInverseConnection>;
|
|
98386
|
+
jiraWorkItemHasJsmIncidentSeverity?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJsmIncidentSeverityConnection>;
|
|
98387
|
+
jiraWorkItemHasJsmIncidentSeverityInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJsmIncidentSeverityInverseConnection>;
|
|
97747
98388
|
jiraWorkItemHasLinkedKnowledgeBaseEntity?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityConnection>;
|
|
97748
98389
|
jiraWorkItemHasLinkedKnowledgeBaseEntityInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityInverseConnection>;
|
|
98390
|
+
jiraWorkItemImpactsCompassComponent?: Maybe<GraphStoreV2SimplifiedJiraWorkItemImpactsCompassComponentConnection>;
|
|
98391
|
+
jiraWorkItemImpactsCompassComponentInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemImpactsCompassComponentInverseConnection>;
|
|
97749
98392
|
jiraWorkItemLinksAssetsObject?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectConnection>;
|
|
97750
98393
|
jiraWorkItemLinksAssetsObjectInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectInverseConnection>;
|
|
97751
98394
|
jiraWorkItemLinksConfluenceWhiteboard?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksConfluenceWhiteboardConnection>;
|
|
@@ -99408,6 +100051,20 @@ export type GraphStoreV2AtlassianUserReportedJsmIncidentInverseArgs = {
|
|
|
99408
100051
|
id: Scalars['ID']['input'];
|
|
99409
100052
|
sort?: InputMaybe<GraphStoreV2AtlassianUserReportedJsmIncidentSortInput>;
|
|
99410
100053
|
};
|
|
100054
|
+
export type GraphStoreV2AtlassianUserRespondsToJiraWorkItemArgs = {
|
|
100055
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
100056
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
100057
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
100058
|
+
id: Scalars['ID']['input'];
|
|
100059
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserRespondsToJiraWorkItemSortInput>;
|
|
100060
|
+
};
|
|
100061
|
+
export type GraphStoreV2AtlassianUserRespondsToJiraWorkItemInverseArgs = {
|
|
100062
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
100063
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
100064
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
100065
|
+
id: Scalars['ID']['input'];
|
|
100066
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserRespondsToJiraWorkItemSortInput>;
|
|
100067
|
+
};
|
|
99411
100068
|
export type GraphStoreV2AtlassianUserReviewedConfluenceApprovalInverseArgs = {
|
|
99412
100069
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
99413
100070
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -102859,6 +103516,20 @@ export type GraphStoreV2InferredProjectLinksEntityInverseArgs = {
|
|
|
102859
103516
|
id: Scalars['ID']['input'];
|
|
102860
103517
|
sort?: InputMaybe<GraphStoreV2InferredProjectLinksEntitySortInput>;
|
|
102861
103518
|
};
|
|
103519
|
+
export type GraphStoreV2InferredProjectPromotedToAtlassianProjectArgs = {
|
|
103520
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
103521
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
103522
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
103523
|
+
id: Scalars['ID']['input'];
|
|
103524
|
+
sort?: InputMaybe<GraphStoreV2InferredProjectPromotedToAtlassianProjectSortInput>;
|
|
103525
|
+
};
|
|
103526
|
+
export type GraphStoreV2InferredProjectPromotedToAtlassianProjectInverseArgs = {
|
|
103527
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
103528
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
103529
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
103530
|
+
id: Scalars['ID']['input'];
|
|
103531
|
+
sort?: InputMaybe<GraphStoreV2InferredProjectPromotedToAtlassianProjectSortInput>;
|
|
103532
|
+
};
|
|
102862
103533
|
export type GraphStoreV2InferredTeamCollaboratesOnInferredProjectArgs = {
|
|
102863
103534
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
102864
103535
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -103703,6 +104374,20 @@ export type GraphStoreV2JiraWorkItemHasJiraWorkItemCommentInverseArgs = {
|
|
|
103703
104374
|
id: Scalars['ID']['input'];
|
|
103704
104375
|
sort?: InputMaybe<GraphStoreV2JiraWorkItemHasJiraWorkItemCommentSortInput>;
|
|
103705
104376
|
};
|
|
104377
|
+
export type GraphStoreV2JiraWorkItemHasJsmIncidentSeverityArgs = {
|
|
104378
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
104379
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
104380
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
104381
|
+
id: Scalars['ID']['input'];
|
|
104382
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemHasJsmIncidentSeveritySortInput>;
|
|
104383
|
+
};
|
|
104384
|
+
export type GraphStoreV2JiraWorkItemHasJsmIncidentSeverityInverseArgs = {
|
|
104385
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
104386
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
104387
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
104388
|
+
id: Scalars['ID']['input'];
|
|
104389
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemHasJsmIncidentSeveritySortInput>;
|
|
104390
|
+
};
|
|
103706
104391
|
export type GraphStoreV2JiraWorkItemHasLinkedKnowledgeBaseEntityArgs = {
|
|
103707
104392
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
103708
104393
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -103717,6 +104402,20 @@ export type GraphStoreV2JiraWorkItemHasLinkedKnowledgeBaseEntityInverseArgs = {
|
|
|
103717
104402
|
id: Scalars['ID']['input'];
|
|
103718
104403
|
sort?: InputMaybe<GraphStoreV2JiraWorkItemHasLinkedKnowledgeBaseEntitySortInput>;
|
|
103719
104404
|
};
|
|
104405
|
+
export type GraphStoreV2JiraWorkItemImpactsCompassComponentArgs = {
|
|
104406
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
104407
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
104408
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
104409
|
+
id: Scalars['ID']['input'];
|
|
104410
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemImpactsCompassComponentSortInput>;
|
|
104411
|
+
};
|
|
104412
|
+
export type GraphStoreV2JiraWorkItemImpactsCompassComponentInverseArgs = {
|
|
104413
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
104414
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
104415
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
104416
|
+
id: Scalars['ID']['input'];
|
|
104417
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemImpactsCompassComponentSortInput>;
|
|
104418
|
+
};
|
|
103720
104419
|
export type GraphStoreV2JiraWorkItemLinksAssetsObjectArgs = {
|
|
103721
104420
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
103722
104421
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -104742,6 +105441,9 @@ export type GraphStoreV2AtlassianUserReportedJiraWorkItemSortInput = {
|
|
|
104742
105441
|
export type GraphStoreV2AtlassianUserReportedJsmIncidentSortInput = {
|
|
104743
105442
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
104744
105443
|
};
|
|
105444
|
+
export type GraphStoreV2AtlassianUserRespondsToJiraWorkItemSortInput = {
|
|
105445
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
105446
|
+
};
|
|
104745
105447
|
export type GraphStoreV2AtlassianUserReviewedConfluenceApprovalSortInput = {
|
|
104746
105448
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
104747
105449
|
};
|
|
@@ -105348,6 +106050,46 @@ export type GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityRelationsh
|
|
|
105348
106050
|
export type GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityRelationshipObjectMetadataInput = {
|
|
105349
106051
|
linkSource?: InputMaybe<GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityLinkSourceInput>;
|
|
105350
106052
|
};
|
|
106053
|
+
export type GraphStoreV2CreateJiraWorkItemImpactsCompassComponentAliasInput = {
|
|
106054
|
+
from: Scalars['ID']['input'];
|
|
106055
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
106056
|
+
subjectMetadata?: InputMaybe<GraphStoreV2CreateJiraWorkItemImpactsCompassComponentRelationshipSubjectMetadataInput>;
|
|
106057
|
+
to: Scalars['ID']['input'];
|
|
106058
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
106059
|
+
};
|
|
106060
|
+
export type GraphStoreV2CreateJiraWorkItemImpactsCompassComponentInput = {
|
|
106061
|
+
aliases: Array<GraphStoreV2CreateJiraWorkItemImpactsCompassComponentAliasInput>;
|
|
106062
|
+
};
|
|
106063
|
+
export declare enum GraphStoreV2CreateJiraWorkItemImpactsCompassComponentJiraIncidentPriorityInput {
|
|
106064
|
+
NotSet = "NOT_SET",
|
|
106065
|
+
P1 = "P1",
|
|
106066
|
+
P2 = "P2",
|
|
106067
|
+
P3 = "P3",
|
|
106068
|
+
P4 = "P4",
|
|
106069
|
+
P5 = "P5",
|
|
106070
|
+
Pending = "PENDING",
|
|
106071
|
+
Unknown = "UNKNOWN"
|
|
106072
|
+
}
|
|
106073
|
+
export declare enum GraphStoreV2CreateJiraWorkItemImpactsCompassComponentJiraIncidentStatusInput {
|
|
106074
|
+
Done = "DONE",
|
|
106075
|
+
Indeterminate = "INDETERMINATE",
|
|
106076
|
+
New = "NEW",
|
|
106077
|
+
NotSet = "NOT_SET",
|
|
106078
|
+
Undefined = "UNDEFINED"
|
|
106079
|
+
}
|
|
106080
|
+
export type GraphStoreV2CreateJiraWorkItemImpactsCompassComponentPayload = {
|
|
106081
|
+
__typename?: 'GraphStoreV2CreateJiraWorkItemImpactsCompassComponentPayload';
|
|
106082
|
+
errors?: Maybe<Array<MutationError>>;
|
|
106083
|
+
success: Scalars['Boolean']['output'];
|
|
106084
|
+
};
|
|
106085
|
+
export type GraphStoreV2CreateJiraWorkItemImpactsCompassComponentRelationshipSubjectMetadataInput = {
|
|
106086
|
+
affectedServiceAris?: InputMaybe<Scalars['String']['input']>;
|
|
106087
|
+
assigneeAri?: InputMaybe<Scalars['String']['input']>;
|
|
106088
|
+
majorIncident?: InputMaybe<Scalars['Boolean']['input']>;
|
|
106089
|
+
priority?: InputMaybe<GraphStoreV2CreateJiraWorkItemImpactsCompassComponentJiraIncidentPriorityInput>;
|
|
106090
|
+
reporterAri?: InputMaybe<Scalars['String']['input']>;
|
|
106091
|
+
status?: InputMaybe<GraphStoreV2CreateJiraWorkItemImpactsCompassComponentJiraIncidentStatusInput>;
|
|
106092
|
+
};
|
|
105351
106093
|
export type GraphStoreV2CreateJiraWorkItemLinksConfluenceWhiteboardAliasInput = {
|
|
105352
106094
|
from: Scalars['ID']['input'];
|
|
105353
106095
|
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
@@ -105962,6 +106704,18 @@ export type GraphStoreV2DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityPayload =
|
|
|
105962
106704
|
errors?: Maybe<Array<MutationError>>;
|
|
105963
106705
|
success: Scalars['Boolean']['output'];
|
|
105964
106706
|
};
|
|
106707
|
+
export type GraphStoreV2DeleteJiraWorkItemImpactsCompassComponentAliasInput = {
|
|
106708
|
+
from: Scalars['ID']['input'];
|
|
106709
|
+
to: Scalars['ID']['input'];
|
|
106710
|
+
};
|
|
106711
|
+
export type GraphStoreV2DeleteJiraWorkItemImpactsCompassComponentInput = {
|
|
106712
|
+
aliases: Array<GraphStoreV2DeleteJiraWorkItemImpactsCompassComponentAliasInput>;
|
|
106713
|
+
};
|
|
106714
|
+
export type GraphStoreV2DeleteJiraWorkItemImpactsCompassComponentPayload = {
|
|
106715
|
+
__typename?: 'GraphStoreV2DeleteJiraWorkItemImpactsCompassComponentPayload';
|
|
106716
|
+
errors?: Maybe<Array<MutationError>>;
|
|
106717
|
+
success: Scalars['Boolean']['output'];
|
|
106718
|
+
};
|
|
105965
106719
|
export type GraphStoreV2DeleteJiraWorkItemLinksConfluenceWhiteboardAliasInput = {
|
|
105966
106720
|
from: Scalars['ID']['input'];
|
|
105967
106721
|
to: Scalars['ID']['input'];
|
|
@@ -106741,6 +107495,9 @@ export type GraphStoreV2InferredProjectHasRelatedEntitySortInput = {
|
|
|
106741
107495
|
export type GraphStoreV2InferredProjectLinksEntitySortInput = {
|
|
106742
107496
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
106743
107497
|
};
|
|
107498
|
+
export type GraphStoreV2InferredProjectPromotedToAtlassianProjectSortInput = {
|
|
107499
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
107500
|
+
};
|
|
106744
107501
|
export type GraphStoreV2InferredTeamCollaboratesOnInferredProjectSortInput = {
|
|
106745
107502
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
106746
107503
|
};
|
|
@@ -107740,6 +108497,9 @@ export type GraphStoreV2JiraWorkItemHasJiraPrioritySortInput = {
|
|
|
107740
108497
|
export type GraphStoreV2JiraWorkItemHasJiraWorkItemCommentSortInput = {
|
|
107741
108498
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
107742
108499
|
};
|
|
108500
|
+
export type GraphStoreV2JiraWorkItemHasJsmIncidentSeveritySortInput = {
|
|
108501
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
108502
|
+
};
|
|
107743
108503
|
export type GraphStoreV2JiraWorkItemHasLinkedKnowledgeBaseEntitySortInput = {
|
|
107744
108504
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
107745
108505
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -107749,6 +108509,9 @@ export type GraphStoreV2JiraWorkItemHasLinkedKnowledgeBaseEntitySortInput = {
|
|
|
107749
108509
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
107750
108510
|
to_linkSource?: InputMaybe<GraphStoreSortInput>;
|
|
107751
108511
|
};
|
|
108512
|
+
export type GraphStoreV2JiraWorkItemImpactsCompassComponentSortInput = {
|
|
108513
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
108514
|
+
};
|
|
107752
108515
|
export type GraphStoreV2JiraWorkItemLinksAssetsObjectSortInput = {
|
|
107753
108516
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
107754
108517
|
};
|
|
@@ -108071,6 +108834,7 @@ export type GraphStoreV2Mutation = {
|
|
|
108071
108834
|
createJiraVersionLinksExternalFeatureFlag?: Maybe<GraphStoreV2CreateJiraVersionLinksExternalFeatureFlagPayload>;
|
|
108072
108835
|
createJiraWorkItemDismissedKnowledgeBaseEntity?: Maybe<GraphStoreV2CreateJiraWorkItemDismissedKnowledgeBaseEntityPayload>;
|
|
108073
108836
|
createJiraWorkItemHasLinkedKnowledgeBaseEntity?: Maybe<GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityPayload>;
|
|
108837
|
+
createJiraWorkItemImpactsCompassComponent?: Maybe<GraphStoreV2CreateJiraWorkItemImpactsCompassComponentPayload>;
|
|
108074
108838
|
createJiraWorkItemLinksConfluenceWhiteboard?: Maybe<GraphStoreV2CreateJiraWorkItemLinksConfluenceWhiteboardPayload>;
|
|
108075
108839
|
createJiraWorkItemLinksExternalVulnerability?: Maybe<GraphStoreV2CreateJiraWorkItemLinksExternalVulnerabilityPayload>;
|
|
108076
108840
|
createJiraWorkItemLinksSupportEscalationEntity?: Maybe<GraphStoreV2CreateJiraWorkItemLinksSupportEscalationEntityPayload>;
|
|
@@ -108106,6 +108870,7 @@ export type GraphStoreV2Mutation = {
|
|
|
108106
108870
|
deleteJiraVersionLinksExternalFeatureFlag?: Maybe<GraphStoreV2DeleteJiraVersionLinksExternalFeatureFlagPayload>;
|
|
108107
108871
|
deleteJiraWorkItemDismissedKnowledgeBaseEntity?: Maybe<GraphStoreV2DeleteJiraWorkItemDismissedKnowledgeBaseEntityPayload>;
|
|
108108
108872
|
deleteJiraWorkItemHasLinkedKnowledgeBaseEntity?: Maybe<GraphStoreV2DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityPayload>;
|
|
108873
|
+
deleteJiraWorkItemImpactsCompassComponent?: Maybe<GraphStoreV2DeleteJiraWorkItemImpactsCompassComponentPayload>;
|
|
108109
108874
|
deleteJiraWorkItemLinksConfluenceWhiteboard?: Maybe<GraphStoreV2DeleteJiraWorkItemLinksConfluenceWhiteboardPayload>;
|
|
108110
108875
|
deleteJiraWorkItemLinksExternalVulnerability?: Maybe<GraphStoreV2DeleteJiraWorkItemLinksExternalVulnerabilityPayload>;
|
|
108111
108876
|
deleteJiraWorkItemLinksSupportEscalationEntity?: Maybe<GraphStoreV2DeleteJiraWorkItemLinksSupportEscalationEntityPayload>;
|
|
@@ -108192,6 +108957,9 @@ export type GraphStoreV2MutationCreateJiraWorkItemDismissedKnowledgeBaseEntityAr
|
|
|
108192
108957
|
export type GraphStoreV2MutationCreateJiraWorkItemHasLinkedKnowledgeBaseEntityArgs = {
|
|
108193
108958
|
input?: InputMaybe<GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityInput>;
|
|
108194
108959
|
};
|
|
108960
|
+
export type GraphStoreV2MutationCreateJiraWorkItemImpactsCompassComponentArgs = {
|
|
108961
|
+
input?: InputMaybe<GraphStoreV2CreateJiraWorkItemImpactsCompassComponentInput>;
|
|
108962
|
+
};
|
|
108195
108963
|
export type GraphStoreV2MutationCreateJiraWorkItemLinksConfluenceWhiteboardArgs = {
|
|
108196
108964
|
input?: InputMaybe<GraphStoreV2CreateJiraWorkItemLinksConfluenceWhiteboardInput>;
|
|
108197
108965
|
};
|
|
@@ -108297,6 +109065,9 @@ export type GraphStoreV2MutationDeleteJiraWorkItemDismissedKnowledgeBaseEntityAr
|
|
|
108297
109065
|
export type GraphStoreV2MutationDeleteJiraWorkItemHasLinkedKnowledgeBaseEntityArgs = {
|
|
108298
109066
|
input?: InputMaybe<GraphStoreV2DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityInput>;
|
|
108299
109067
|
};
|
|
109068
|
+
export type GraphStoreV2MutationDeleteJiraWorkItemImpactsCompassComponentArgs = {
|
|
109069
|
+
input?: InputMaybe<GraphStoreV2DeleteJiraWorkItemImpactsCompassComponentInput>;
|
|
109070
|
+
};
|
|
108300
109071
|
export type GraphStoreV2MutationDeleteJiraWorkItemLinksConfluenceWhiteboardArgs = {
|
|
108301
109072
|
input?: InputMaybe<GraphStoreV2DeleteJiraWorkItemLinksConfluenceWhiteboardInput>;
|
|
108302
109073
|
};
|
|
@@ -111540,6 +112311,34 @@ export type GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentInverseEdge =
|
|
|
111540
112311
|
};
|
|
111541
112312
|
export type GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
111542
112313
|
export type GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentUnion = JiraIssue;
|
|
112314
|
+
export type GraphStoreV2SimplifiedAtlassianUserRespondsToJiraWorkItemConnection = HasPageInfo & {
|
|
112315
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserRespondsToJiraWorkItemConnection';
|
|
112316
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserRespondsToJiraWorkItemEdge>>>;
|
|
112317
|
+
pageInfo: PageInfo;
|
|
112318
|
+
};
|
|
112319
|
+
export type GraphStoreV2SimplifiedAtlassianUserRespondsToJiraWorkItemEdge = {
|
|
112320
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserRespondsToJiraWorkItemEdge';
|
|
112321
|
+
createdAt: Scalars['DateTime']['output'];
|
|
112322
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
112323
|
+
id: Scalars['ID']['output'];
|
|
112324
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
112325
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserRespondsToJiraWorkItemUnion>;
|
|
112326
|
+
};
|
|
112327
|
+
export type GraphStoreV2SimplifiedAtlassianUserRespondsToJiraWorkItemInverseConnection = HasPageInfo & {
|
|
112328
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserRespondsToJiraWorkItemInverseConnection';
|
|
112329
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserRespondsToJiraWorkItemInverseEdge>>>;
|
|
112330
|
+
pageInfo: PageInfo;
|
|
112331
|
+
};
|
|
112332
|
+
export type GraphStoreV2SimplifiedAtlassianUserRespondsToJiraWorkItemInverseEdge = {
|
|
112333
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserRespondsToJiraWorkItemInverseEdge';
|
|
112334
|
+
createdAt: Scalars['DateTime']['output'];
|
|
112335
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
112336
|
+
id: Scalars['ID']['output'];
|
|
112337
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
112338
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserRespondsToJiraWorkItemInverseUnion>;
|
|
112339
|
+
};
|
|
112340
|
+
export type GraphStoreV2SimplifiedAtlassianUserRespondsToJiraWorkItemInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
112341
|
+
export type GraphStoreV2SimplifiedAtlassianUserRespondsToJiraWorkItemUnion = JiraIssue;
|
|
111543
112342
|
export type GraphStoreV2SimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection = HasPageInfo & {
|
|
111544
112343
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection';
|
|
111545
112344
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserReviewedConfluenceApprovalInverseEdge>>>;
|
|
@@ -118365,7 +119164,7 @@ export type GraphStoreV2SimplifiedInferredDecisionLinksEntityInverseEdge = {
|
|
|
118365
119164
|
node?: Maybe<GraphStoreV2SimplifiedInferredDecisionLinksEntityInverseUnion>;
|
|
118366
119165
|
};
|
|
118367
119166
|
export type GraphStoreV2SimplifiedInferredDecisionLinksEntityInverseUnion = GraphStoreNodeResponse;
|
|
118368
|
-
export type GraphStoreV2SimplifiedInferredDecisionLinksEntityUnion = ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | ExternalVideo | LoomVideo;
|
|
119167
|
+
export type GraphStoreV2SimplifiedInferredDecisionLinksEntityUnion = ConfluencePage | DevOpsDocument | DevOpsPullRequestDetails | ExternalDocument | ExternalPullRequest | ExternalVideo | LoomVideo;
|
|
118369
119168
|
export type GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityConnection = HasPageInfo & {
|
|
118370
119169
|
__typename?: 'GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityConnection';
|
|
118371
119170
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityEdge>>>;
|
|
@@ -118393,7 +119192,7 @@ export type GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityInverseEdge
|
|
|
118393
119192
|
node?: Maybe<GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityInverseUnion>;
|
|
118394
119193
|
};
|
|
118395
119194
|
export type GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityInverseUnion = GraphStoreNodeResponse;
|
|
118396
|
-
export type GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityUnion = ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | ExternalVideo | LoomVideo;
|
|
119195
|
+
export type GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityUnion = ConfluencePage | DevOpsDocument | DevOpsPullRequestDetails | ExternalDocument | ExternalPullRequest | ExternalVideo | LoomVideo;
|
|
118397
119196
|
export type GraphStoreV2SimplifiedInferredProjectHasRelatedEntityConnection = HasPageInfo & {
|
|
118398
119197
|
__typename?: 'GraphStoreV2SimplifiedInferredProjectHasRelatedEntityConnection';
|
|
118399
119198
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredProjectHasRelatedEntityEdge>>>;
|
|
@@ -118450,6 +119249,34 @@ export type GraphStoreV2SimplifiedInferredProjectLinksEntityInverseEdge = {
|
|
|
118450
119249
|
};
|
|
118451
119250
|
export type GraphStoreV2SimplifiedInferredProjectLinksEntityInverseUnion = GraphStoreNodeResponse;
|
|
118452
119251
|
export type GraphStoreV2SimplifiedInferredProjectLinksEntityUnion = ConfluencePage | JiraIssue | JiraProject;
|
|
119252
|
+
export type GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectConnection = HasPageInfo & {
|
|
119253
|
+
__typename?: 'GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectConnection';
|
|
119254
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectEdge>>>;
|
|
119255
|
+
pageInfo: PageInfo;
|
|
119256
|
+
};
|
|
119257
|
+
export type GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectEdge = {
|
|
119258
|
+
__typename?: 'GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectEdge';
|
|
119259
|
+
createdAt: Scalars['DateTime']['output'];
|
|
119260
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
119261
|
+
id: Scalars['ID']['output'];
|
|
119262
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
119263
|
+
node?: Maybe<GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectUnion>;
|
|
119264
|
+
};
|
|
119265
|
+
export type GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectInverseConnection = HasPageInfo & {
|
|
119266
|
+
__typename?: 'GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectInverseConnection';
|
|
119267
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectInverseEdge>>>;
|
|
119268
|
+
pageInfo: PageInfo;
|
|
119269
|
+
};
|
|
119270
|
+
export type GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectInverseEdge = {
|
|
119271
|
+
__typename?: 'GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectInverseEdge';
|
|
119272
|
+
createdAt: Scalars['DateTime']['output'];
|
|
119273
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
119274
|
+
id: Scalars['ID']['output'];
|
|
119275
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
119276
|
+
node?: Maybe<GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectInverseUnion>;
|
|
119277
|
+
};
|
|
119278
|
+
export type GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectInverseUnion = GraphStoreNodeResponse;
|
|
119279
|
+
export type GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectUnion = TownsquareProject;
|
|
118453
119280
|
export type GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectConnection = HasPageInfo & {
|
|
118454
119281
|
__typename?: 'GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectConnection';
|
|
118455
119282
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectEdge>>>;
|
|
@@ -120240,6 +121067,34 @@ export type GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentInverseEdge
|
|
|
120240
121067
|
};
|
|
120241
121068
|
export type GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentInverseUnion = JiraIssue;
|
|
120242
121069
|
export type GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
121070
|
+
export type GraphStoreV2SimplifiedJiraWorkItemHasJsmIncidentSeverityConnection = HasPageInfo & {
|
|
121071
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemHasJsmIncidentSeverityConnection';
|
|
121072
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJsmIncidentSeverityEdge>>>;
|
|
121073
|
+
pageInfo: PageInfo;
|
|
121074
|
+
};
|
|
121075
|
+
export type GraphStoreV2SimplifiedJiraWorkItemHasJsmIncidentSeverityEdge = {
|
|
121076
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemHasJsmIncidentSeverityEdge';
|
|
121077
|
+
createdAt: Scalars['DateTime']['output'];
|
|
121078
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
121079
|
+
id: Scalars['ID']['output'];
|
|
121080
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
121081
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJsmIncidentSeverityUnion>;
|
|
121082
|
+
};
|
|
121083
|
+
export type GraphStoreV2SimplifiedJiraWorkItemHasJsmIncidentSeverityInverseConnection = HasPageInfo & {
|
|
121084
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemHasJsmIncidentSeverityInverseConnection';
|
|
121085
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJsmIncidentSeverityInverseEdge>>>;
|
|
121086
|
+
pageInfo: PageInfo;
|
|
121087
|
+
};
|
|
121088
|
+
export type GraphStoreV2SimplifiedJiraWorkItemHasJsmIncidentSeverityInverseEdge = {
|
|
121089
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemHasJsmIncidentSeverityInverseEdge';
|
|
121090
|
+
createdAt: Scalars['DateTime']['output'];
|
|
121091
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
121092
|
+
id: Scalars['ID']['output'];
|
|
121093
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
121094
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJsmIncidentSeverityInverseUnion>;
|
|
121095
|
+
};
|
|
121096
|
+
export type GraphStoreV2SimplifiedJiraWorkItemHasJsmIncidentSeverityInverseUnion = JiraIssue;
|
|
121097
|
+
export type GraphStoreV2SimplifiedJiraWorkItemHasJsmIncidentSeverityUnion = GraphStoreNodeResponse;
|
|
120243
121098
|
export type GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityConnection = HasPageInfo & HasTotal & {
|
|
120244
121099
|
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityConnection';
|
|
120245
121100
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityEdge>>>;
|
|
@@ -120272,6 +121127,34 @@ export type GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityInvers
|
|
|
120272
121127
|
};
|
|
120273
121128
|
export type GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityInverseUnion = JiraIssue | JiraProject;
|
|
120274
121129
|
export type GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityUnion = AvpDashboard | AgentStudioAssistant | AgentStudioServiceAgent | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSlide | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalLead | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalServicenowBusinessApp | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | GraphStoreNodeResponse | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryAsk | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationMembership | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
121130
|
+
export type GraphStoreV2SimplifiedJiraWorkItemImpactsCompassComponentConnection = HasPageInfo & {
|
|
121131
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemImpactsCompassComponentConnection';
|
|
121132
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemImpactsCompassComponentEdge>>>;
|
|
121133
|
+
pageInfo: PageInfo;
|
|
121134
|
+
};
|
|
121135
|
+
export type GraphStoreV2SimplifiedJiraWorkItemImpactsCompassComponentEdge = {
|
|
121136
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemImpactsCompassComponentEdge';
|
|
121137
|
+
createdAt: Scalars['DateTime']['output'];
|
|
121138
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
121139
|
+
id: Scalars['ID']['output'];
|
|
121140
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
121141
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraWorkItemImpactsCompassComponentUnion>;
|
|
121142
|
+
};
|
|
121143
|
+
export type GraphStoreV2SimplifiedJiraWorkItemImpactsCompassComponentInverseConnection = HasPageInfo & {
|
|
121144
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemImpactsCompassComponentInverseConnection';
|
|
121145
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemImpactsCompassComponentInverseEdge>>>;
|
|
121146
|
+
pageInfo: PageInfo;
|
|
121147
|
+
};
|
|
121148
|
+
export type GraphStoreV2SimplifiedJiraWorkItemImpactsCompassComponentInverseEdge = {
|
|
121149
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemImpactsCompassComponentInverseEdge';
|
|
121150
|
+
createdAt: Scalars['DateTime']['output'];
|
|
121151
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
121152
|
+
id: Scalars['ID']['output'];
|
|
121153
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
121154
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraWorkItemImpactsCompassComponentInverseUnion>;
|
|
121155
|
+
};
|
|
121156
|
+
export type GraphStoreV2SimplifiedJiraWorkItemImpactsCompassComponentInverseUnion = DevOpsOperationsIncidentDetails | JiraIssue;
|
|
121157
|
+
export type GraphStoreV2SimplifiedJiraWorkItemImpactsCompassComponentUnion = CompassComponent | DevOpsOperationsComponentDetails;
|
|
120275
121158
|
export type GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectConnection = HasPageInfo & {
|
|
120276
121159
|
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectConnection';
|
|
120277
121160
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectEdge>>>;
|
|
@@ -121650,6 +122533,16 @@ export type GravityCreateDraftInput = {
|
|
|
121650
122533
|
type: Scalars['String']['input'];
|
|
121651
122534
|
upsertActions?: InputMaybe<Array<GravityUpsertActionInput>>;
|
|
121652
122535
|
};
|
|
122536
|
+
export type GravityCreateSectionInput = {
|
|
122537
|
+
containerId: Scalars['ID']['input'];
|
|
122538
|
+
name: Scalars['String']['input'];
|
|
122539
|
+
};
|
|
122540
|
+
export type GravityCreateSectionPayload = Payload & {
|
|
122541
|
+
__typename?: 'GravityCreateSectionPayload';
|
|
122542
|
+
errors?: Maybe<Array<MutationError>>;
|
|
122543
|
+
section?: Maybe<GravitySection>;
|
|
122544
|
+
success: Scalars['Boolean']['output'];
|
|
122545
|
+
};
|
|
121653
122546
|
export type GravityCreateViewFromInlinedTemplateInput = {
|
|
121654
122547
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
121655
122548
|
projectId: Scalars['ID']['input'];
|
|
@@ -121694,6 +122587,11 @@ export type GravityDeleteReactionPayload = Payload & {
|
|
|
121694
122587
|
errors?: Maybe<Array<MutationError>>;
|
|
121695
122588
|
success: Scalars['Boolean']['output'];
|
|
121696
122589
|
};
|
|
122590
|
+
export type GravityDeleteSectionPayload = Payload & {
|
|
122591
|
+
__typename?: 'GravityDeleteSectionPayload';
|
|
122592
|
+
errors?: Maybe<Array<MutationError>>;
|
|
122593
|
+
success: Scalars['Boolean']['output'];
|
|
122594
|
+
};
|
|
121697
122595
|
export type GravityDeliveryItemMatch = {
|
|
121698
122596
|
__typename?: 'GravityDeliveryItemMatch';
|
|
121699
122597
|
confidence: Scalars['Float']['output'];
|
|
@@ -121710,6 +122608,7 @@ export type GravityDeliverySettings = {
|
|
|
121710
122608
|
__typename?: 'GravityDeliverySettings';
|
|
121711
122609
|
projectId: Scalars['ID']['output'];
|
|
121712
122610
|
tableLayoutConfig: Array<GravityTableLayoutConfig>;
|
|
122611
|
+
tableSort?: Maybe<GravityDeliveryTableSort>;
|
|
121713
122612
|
visibleFields: Array<Scalars['String']['output']>;
|
|
121714
122613
|
};
|
|
121715
122614
|
export type GravityDeliverySettingsResult = GravityDeliverySettingsSuccess | QueryError;
|
|
@@ -121717,6 +122616,15 @@ export type GravityDeliverySettingsSuccess = {
|
|
|
121717
122616
|
__typename?: 'GravityDeliverySettingsSuccess';
|
|
121718
122617
|
settings: GravityDeliverySettings;
|
|
121719
122618
|
};
|
|
122619
|
+
export type GravityDeliveryTableSort = {
|
|
122620
|
+
__typename?: 'GravityDeliveryTableSort';
|
|
122621
|
+
field: Scalars['String']['output'];
|
|
122622
|
+
order: GravitySortOrder;
|
|
122623
|
+
};
|
|
122624
|
+
export type GravityDeliveryTableSortInput = {
|
|
122625
|
+
field: Scalars['String']['input'];
|
|
122626
|
+
order: GravitySortOrder;
|
|
122627
|
+
};
|
|
121720
122628
|
export type GravityDetailedReactionResult = GravityDetailedReactionSuccess | QueryError;
|
|
121721
122629
|
export type GravityDetailedReactionSuccess = {
|
|
121722
122630
|
__typename?: 'GravityDetailedReactionSuccess';
|
|
@@ -121866,34 +122774,6 @@ export type GravityGetReactionsInput = {
|
|
|
121866
122774
|
entity: GravityReactionEntityType;
|
|
121867
122775
|
entityIds: Array<Scalars['ID']['input']>;
|
|
121868
122776
|
};
|
|
121869
|
-
export type GravityImportIdeasInput = {
|
|
121870
|
-
csvContent?: InputMaybe<Scalars['String']['input']>;
|
|
121871
|
-
imageContent?: InputMaybe<Scalars['String']['input']>;
|
|
121872
|
-
imageMimeType?: InputMaybe<Scalars['String']['input']>;
|
|
121873
|
-
pdfContent?: InputMaybe<Scalars['String']['input']>;
|
|
121874
|
-
projectId?: InputMaybe<Scalars['String']['input']>;
|
|
121875
|
-
sourceLabel?: InputMaybe<Scalars['String']['input']>;
|
|
121876
|
-
sourceType: GravityImportSourceType;
|
|
121877
|
-
textContent?: InputMaybe<Scalars['String']['input']>;
|
|
121878
|
-
};
|
|
121879
|
-
export type GravityImportIdeasMetadata = {
|
|
121880
|
-
__typename?: 'GravityImportIdeasMetadata';
|
|
121881
|
-
aiProcessingTimeMs: Scalars['Int']['output'];
|
|
121882
|
-
itemsProcessed: Scalars['Int']['output'];
|
|
121883
|
-
sourceType: GravityImportSourceType;
|
|
121884
|
-
};
|
|
121885
|
-
export type GravityImportIdeasResult = GravityImportIdeasSuccess | QueryError;
|
|
121886
|
-
export type GravityImportIdeasSuccess = {
|
|
121887
|
-
__typename?: 'GravityImportIdeasSuccess';
|
|
121888
|
-
metadata: GravityImportIdeasMetadata;
|
|
121889
|
-
suggestedIdeas: Array<GravitySuggestedIdea>;
|
|
121890
|
-
};
|
|
121891
|
-
export declare enum GravityImportSourceType {
|
|
121892
|
-
Csv = "CSV",
|
|
121893
|
-
Image = "IMAGE",
|
|
121894
|
-
Pdf = "PDF",
|
|
121895
|
-
Text = "TEXT"
|
|
121896
|
-
}
|
|
121897
122777
|
export type GravityMatchDeliveryInput = {
|
|
121898
122778
|
deliveryIssueIdsOrKeys: Array<Scalars['ID']['input']>;
|
|
121899
122779
|
discoveryIssueIdsOrKeys: Array<Scalars['ID']['input']>;
|
|
@@ -121964,6 +122844,11 @@ export type GravityReviseDraftInput = {
|
|
|
121964
122844
|
resolveCommentIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
121965
122845
|
upsertActions?: InputMaybe<Array<GravityUpsertActionInput>>;
|
|
121966
122846
|
};
|
|
122847
|
+
export type GravitySection = {
|
|
122848
|
+
__typename?: 'GravitySection';
|
|
122849
|
+
id: Scalars['ID']['output'];
|
|
122850
|
+
name: Scalars['String']['output'];
|
|
122851
|
+
};
|
|
121967
122852
|
export type GravitySetActionStatusInput = {
|
|
121968
122853
|
actionId: Scalars['String']['input'];
|
|
121969
122854
|
status: GravityActionStatus;
|
|
@@ -121980,12 +122865,6 @@ export type GravityStartAltaSessionInput = {
|
|
|
121980
122865
|
agent: Scalars['String']['input'];
|
|
121981
122866
|
prompt: Scalars['String']['input'];
|
|
121982
122867
|
};
|
|
121983
|
-
export type GravitySuggestedIdea = {
|
|
121984
|
-
__typename?: 'GravitySuggestedIdea';
|
|
121985
|
-
description: Scalars['String']['output'];
|
|
121986
|
-
sourceReference: Scalars['String']['output'];
|
|
121987
|
-
title: Scalars['String']['output'];
|
|
121988
|
-
};
|
|
121989
122868
|
export type GravityTableLayoutConfig = {
|
|
121990
122869
|
__typename?: 'GravityTableLayoutConfig';
|
|
121991
122870
|
field: Scalars['String']['output'];
|
|
@@ -122005,12 +122884,26 @@ export type GravityUpdateDeliverySettingsSuccess = {
|
|
|
122005
122884
|
__typename?: 'GravityUpdateDeliverySettingsSuccess';
|
|
122006
122885
|
settings: GravityDeliverySettings;
|
|
122007
122886
|
};
|
|
122887
|
+
export type GravityUpdateDeliveryTableSortInput = {
|
|
122888
|
+
projectId: Scalars['ID']['input'];
|
|
122889
|
+
tableSort?: InputMaybe<GravityDeliveryTableSortInput>;
|
|
122890
|
+
};
|
|
122008
122891
|
export type GravityUpdateDraftContentInput = {
|
|
122009
122892
|
content: Scalars['String']['input'];
|
|
122010
122893
|
draftId: Scalars['String']['input'];
|
|
122011
122894
|
expectedRevision: Scalars['Int']['input'];
|
|
122012
122895
|
origin?: InputMaybe<GravityDraftOrigin>;
|
|
122013
122896
|
};
|
|
122897
|
+
export type GravityUpdateSectionInput = {
|
|
122898
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
122899
|
+
sectionId: Scalars['ID']['input'];
|
|
122900
|
+
};
|
|
122901
|
+
export type GravityUpdateSectionPayload = Payload & {
|
|
122902
|
+
__typename?: 'GravityUpdateSectionPayload';
|
|
122903
|
+
errors?: Maybe<Array<MutationError>>;
|
|
122904
|
+
section?: Maybe<GravitySection>;
|
|
122905
|
+
success: Scalars['Boolean']['output'];
|
|
122906
|
+
};
|
|
122014
122907
|
export type GravityUpsertActionInput = {
|
|
122015
122908
|
draftId?: InputMaybe<Scalars['String']['input']>;
|
|
122016
122909
|
id?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -127821,13 +128714,17 @@ export type JiraAgentSession = {
|
|
|
127821
128714
|
__typename?: 'JiraAgentSession';
|
|
127822
128715
|
agent?: Maybe<User>;
|
|
127823
128716
|
agentAccountId?: Maybe<Scalars['String']['output']>;
|
|
128717
|
+
agentAri?: Maybe<Scalars['ID']['output']>;
|
|
127824
128718
|
author?: Maybe<User>;
|
|
127825
128719
|
authorAccountId?: Maybe<Scalars['String']['output']>;
|
|
128720
|
+
convoAiAgentId?: Maybe<Scalars['String']['output']>;
|
|
127826
128721
|
endTime?: Maybe<Scalars['DateTime']['output']>;
|
|
127827
128722
|
invocationType?: Maybe<JiraAgentSessionInvocationType>;
|
|
127828
128723
|
isRovo?: Maybe<Scalars['Boolean']['output']>;
|
|
128724
|
+
jcaSessionAri?: Maybe<Scalars['ID']['output']>;
|
|
127829
128725
|
lastStateChangeAt?: Maybe<Scalars['DateTime']['output']>;
|
|
127830
128726
|
lastStateChangedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
128727
|
+
sessionAssociation?: Maybe<AgentSessionAssociation>;
|
|
127831
128728
|
sessionId?: Maybe<Scalars['String']['output']>;
|
|
127832
128729
|
startTime?: Maybe<Scalars['DateTime']['output']>;
|
|
127833
128730
|
state?: Maybe<JiraAgentSessionState>;
|
|
@@ -127861,6 +128758,7 @@ export declare enum JiraAgentSessionInvocationType {
|
|
|
127861
128758
|
IssueManualTrigger = "ISSUE_MANUAL_TRIGGER",
|
|
127862
128759
|
IssueWorkflowAssignment = "ISSUE_WORKFLOW_ASSIGNMENT",
|
|
127863
128760
|
LocalAgentSession = "LOCAL_AGENT_SESSION",
|
|
128761
|
+
LoomVideoToJiraSuggestions = "LOOM_VIDEO_TO_JIRA_SUGGESTIONS",
|
|
127864
128762
|
Unknown = "UNKNOWN"
|
|
127865
128763
|
}
|
|
127866
128764
|
export declare enum JiraAgentSessionPreExecutionStep {
|
|
@@ -129185,6 +130083,7 @@ export type JiraBacklog = {
|
|
|
129185
130083
|
export type JiraBacklogAgentSetupBanner = {
|
|
129186
130084
|
__typename?: 'JiraBacklogAgentSetupBanner';
|
|
129187
130085
|
agentAri?: Maybe<Scalars['ID']['output']>;
|
|
130086
|
+
isEligible?: Maybe<Scalars['Boolean']['output']>;
|
|
129188
130087
|
spaceAri?: Maybe<Scalars['ID']['output']>;
|
|
129189
130088
|
};
|
|
129190
130089
|
export type JiraBacklogApplicationProperty = {
|
|
@@ -130175,7 +131074,9 @@ export type JiraBoardViewCanMoveIssuesBetweenSwimlanesArgs = {
|
|
|
130175
131074
|
export type JiraBoardViewCardOptionsArgs = {
|
|
130176
131075
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
130177
131076
|
enabledOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
131077
|
+
filter?: InputMaybe<JiraBoardViewCardOptionFilter>;
|
|
130178
131078
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131079
|
+
searchText?: InputMaybe<Scalars['String']['input']>;
|
|
130179
131080
|
};
|
|
130180
131081
|
export type JiraBoardViewColumnsArgs = {
|
|
130181
131082
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -130222,6 +131123,14 @@ export type JiraBoardViewUnmappedStatusesArgs = {
|
|
|
130222
131123
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
130223
131124
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
130224
131125
|
};
|
|
131126
|
+
export type JiraBoardViewAgentCount = {
|
|
131127
|
+
__typename?: 'JiraBoardViewAgentCount';
|
|
131128
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
131129
|
+
};
|
|
131130
|
+
export type JiraBoardViewAgentCountAboveLimit = {
|
|
131131
|
+
__typename?: 'JiraBoardViewAgentCountAboveLimit';
|
|
131132
|
+
limit?: Maybe<Scalars['Int']['output']>;
|
|
131133
|
+
};
|
|
130225
131134
|
export type JiraBoardViewAssigneeColumn = JiraBoardViewColumn & Node & {
|
|
130226
131135
|
__typename?: 'JiraBoardViewAssigneeColumn';
|
|
130227
131136
|
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -130233,6 +131142,7 @@ export type JiraBoardViewCardOption = {
|
|
|
130233
131142
|
canToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
130234
131143
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
130235
131144
|
id: Scalars['ID']['output'];
|
|
131145
|
+
isRecommended?: Maybe<Scalars['Boolean']['output']>;
|
|
130236
131146
|
};
|
|
130237
131147
|
export type JiraBoardViewCardOptionConnection = {
|
|
130238
131148
|
__typename?: 'JiraBoardViewCardOptionConnection';
|
|
@@ -130245,6 +131155,11 @@ export type JiraBoardViewCardOptionEdge = {
|
|
|
130245
131155
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
130246
131156
|
node?: Maybe<JiraBoardViewCardOption>;
|
|
130247
131157
|
};
|
|
131158
|
+
export declare enum JiraBoardViewCardOptionFilter {
|
|
131159
|
+
All = "ALL",
|
|
131160
|
+
Disabled = "DISABLED",
|
|
131161
|
+
Enabled = "ENABLED"
|
|
131162
|
+
}
|
|
130248
131163
|
export type JiraBoardViewCategoryColumn = JiraBoardViewColumn & Node & {
|
|
130249
131164
|
__typename?: 'JiraBoardViewCategoryColumn';
|
|
130250
131165
|
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -130380,6 +131295,7 @@ export type JiraBoardViewFieldCardOption = JiraBoardViewCardOption & {
|
|
|
130380
131295
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
130381
131296
|
field?: Maybe<JiraField>;
|
|
130382
131297
|
id: Scalars['ID']['output'];
|
|
131298
|
+
isRecommended?: Maybe<Scalars['Boolean']['output']>;
|
|
130383
131299
|
};
|
|
130384
131300
|
export type JiraBoardViewFieldSwimlane = JiraBoardViewCellContainer & JiraBoardViewSwimlane & Node & {
|
|
130385
131301
|
__typename?: 'JiraBoardViewFieldSwimlane';
|
|
@@ -130542,6 +131458,7 @@ export type JiraBoardViewStatusColumn = JiraBoardViewColumn & Node & {
|
|
|
130542
131458
|
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
130543
131459
|
canInlineRename?: Maybe<Scalars['Boolean']['output']>;
|
|
130544
131460
|
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
131461
|
+
endUserAgents?: Maybe<JiraEndUserAgentConnection>;
|
|
130545
131462
|
id: Scalars['ID']['output'];
|
|
130546
131463
|
mappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
|
|
130547
131464
|
mappedWorkflows?: Maybe<JiraBoardViewWorkflowConnection>;
|
|
@@ -130550,11 +131467,18 @@ export type JiraBoardViewStatusColumn = JiraBoardViewColumn & Node & {
|
|
|
130550
131467
|
name?: Maybe<Scalars['String']['output']>;
|
|
130551
131468
|
simpleTransitions?: Maybe<JiraTransitionConnection>;
|
|
130552
131469
|
statuses?: Maybe<Array<Maybe<JiraStatus>>>;
|
|
131470
|
+
totalAgentCount?: Maybe<JiraBoardViewTotalAgentCount>;
|
|
130553
131471
|
totalIssueCount?: Maybe<Scalars['Int']['output']>;
|
|
130554
131472
|
totalTransitionCount?: Maybe<Scalars['Int']['output']>;
|
|
130555
131473
|
transitionAgents?: Maybe<Array<JiraTransitionAgent>>;
|
|
130556
131474
|
workflows?: Maybe<JiraTransitionConnection>;
|
|
130557
131475
|
};
|
|
131476
|
+
export type JiraBoardViewStatusColumnEndUserAgentsArgs = {
|
|
131477
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
131478
|
+
agentAccountId?: InputMaybe<Scalars['String']['input']>;
|
|
131479
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131480
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
131481
|
+
};
|
|
130558
131482
|
export type JiraBoardViewStatusColumnMappedStatusesArgs = {
|
|
130559
131483
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
130560
131484
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -130567,6 +131491,9 @@ export type JiraBoardViewStatusColumnSimpleTransitionsArgs = {
|
|
|
130567
131491
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
130568
131492
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
130569
131493
|
};
|
|
131494
|
+
export type JiraBoardViewStatusColumnTotalAgentCountArgs = {
|
|
131495
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
131496
|
+
};
|
|
130570
131497
|
export type JiraBoardViewStatusColumnTotalIssueCountArgs = {
|
|
130571
131498
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
130572
131499
|
};
|
|
@@ -130639,9 +131566,11 @@ export type JiraBoardViewSyntheticFieldCardOption = JiraBoardViewCardOption & {
|
|
|
130639
131566
|
canToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
130640
131567
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
130641
131568
|
id: Scalars['ID']['output'];
|
|
131569
|
+
isRecommended?: Maybe<Scalars['Boolean']['output']>;
|
|
130642
131570
|
name?: Maybe<Scalars['String']['output']>;
|
|
130643
131571
|
type?: Maybe<JiraSyntheticFieldCardOptionType>;
|
|
130644
131572
|
};
|
|
131573
|
+
export type JiraBoardViewTotalAgentCount = JiraBoardViewAgentCount | JiraBoardViewAgentCountAboveLimit;
|
|
130645
131574
|
export type JiraBoardViewWorkflow = {
|
|
130646
131575
|
__typename?: 'JiraBoardViewWorkflow';
|
|
130647
131576
|
canEdit?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -130845,6 +131774,21 @@ export type JiraBulkMoveClassificationInput = {
|
|
|
130845
131774
|
sourceClassificationIds: Array<Scalars['ID']['input']>;
|
|
130846
131775
|
targetClassificationId: Scalars['ID']['input'];
|
|
130847
131776
|
};
|
|
131777
|
+
export type JiraBulkMoveDestinationProjectSearch = {
|
|
131778
|
+
searchByText?: InputMaybe<Scalars['String']['input']>;
|
|
131779
|
+
};
|
|
131780
|
+
export type JiraBulkMoveDetails = {
|
|
131781
|
+
__typename?: 'JiraBulkMoveDetails';
|
|
131782
|
+
destinationProjects?: Maybe<JiraProjectConnection>;
|
|
131783
|
+
sourceProjects: Array<JiraBulkMoveSourceProject>;
|
|
131784
|
+
};
|
|
131785
|
+
export type JiraBulkMoveDetailsDestinationProjectsArgs = {
|
|
131786
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
131787
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
131788
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131789
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
131790
|
+
search?: InputMaybe<JiraBulkMoveDestinationProjectSearch>;
|
|
131791
|
+
};
|
|
130848
131792
|
export type JiraBulkMoveInput = {
|
|
130849
131793
|
inferClassificationDefaults: Scalars['Boolean']['input'];
|
|
130850
131794
|
inferFieldDefaults: Scalars['Boolean']['input'];
|
|
@@ -130859,6 +131803,11 @@ export type JiraBulkMoveInput = {
|
|
|
130859
131803
|
targetProjectId: Scalars['ID']['input'];
|
|
130860
131804
|
targetStatuses?: InputMaybe<Array<JiraBulkMoveStatusInput>>;
|
|
130861
131805
|
};
|
|
131806
|
+
export type JiraBulkMoveIssueTypeCount = {
|
|
131807
|
+
__typename?: 'JiraBulkMoveIssueTypeCount';
|
|
131808
|
+
count: Scalars['Int']['output'];
|
|
131809
|
+
issueType?: Maybe<JiraIssueType>;
|
|
131810
|
+
};
|
|
130862
131811
|
export type JiraBulkMoveMandatoryFieldInput = {
|
|
130863
131812
|
fieldId: Scalars['ID']['input'];
|
|
130864
131813
|
value: JiraBulkMoveMandatoryFieldValueInput;
|
|
@@ -130873,6 +131822,11 @@ export declare enum JiraBulkMoveMandatoryFieldValueType {
|
|
|
130873
131822
|
Adf = "ADF",
|
|
130874
131823
|
Raw = "RAW"
|
|
130875
131824
|
}
|
|
131825
|
+
export type JiraBulkMoveSourceProject = {
|
|
131826
|
+
__typename?: 'JiraBulkMoveSourceProject';
|
|
131827
|
+
issueTypes: Array<JiraBulkMoveIssueTypeCount>;
|
|
131828
|
+
project?: Maybe<JiraProject>;
|
|
131829
|
+
};
|
|
130876
131830
|
export type JiraBulkMoveStatusInput = {
|
|
130877
131831
|
sourceStatusIds: Array<Scalars['ID']['input']>;
|
|
130878
131832
|
targetStatusId: Scalars['ID']['input'];
|
|
@@ -134561,6 +135515,55 @@ export type JiraEnablePlanFeaturePayloadGraphQl = Payload & {
|
|
|
134561
135515
|
plan?: Maybe<JiraPlan>;
|
|
134562
135516
|
success: Scalars['Boolean']['output'];
|
|
134563
135517
|
};
|
|
135518
|
+
export type JiraEndUserAgent = {
|
|
135519
|
+
__typename?: 'JiraEndUserAgent';
|
|
135520
|
+
agent?: Maybe<User>;
|
|
135521
|
+
configurations?: Maybe<JiraEndUserAgentConfigurationConnection>;
|
|
135522
|
+
};
|
|
135523
|
+
export type JiraEndUserAgentConfigurationsArgs = {
|
|
135524
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
135525
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
135526
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
135527
|
+
};
|
|
135528
|
+
export type JiraEndUserAgentConfiguration = {
|
|
135529
|
+
__typename?: 'JiraEndUserAgentConfiguration';
|
|
135530
|
+
agent?: Maybe<User>;
|
|
135531
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
135532
|
+
id: Scalars['ID']['output'];
|
|
135533
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
135534
|
+
owner?: Maybe<User>;
|
|
135535
|
+
projects?: Maybe<JiraProjectConnection>;
|
|
135536
|
+
prompt?: Maybe<Scalars['String']['output']>;
|
|
135537
|
+
statuses?: Maybe<JiraStatusConnection>;
|
|
135538
|
+
};
|
|
135539
|
+
export type JiraEndUserAgentConfigurationProjectsArgs = {
|
|
135540
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
135541
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
135542
|
+
};
|
|
135543
|
+
export type JiraEndUserAgentConfigurationStatusesArgs = {
|
|
135544
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
135545
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
135546
|
+
};
|
|
135547
|
+
export type JiraEndUserAgentConfigurationConnection = {
|
|
135548
|
+
__typename?: 'JiraEndUserAgentConfigurationConnection';
|
|
135549
|
+
edges?: Maybe<Array<Maybe<JiraEndUserAgentConfigurationEdge>>>;
|
|
135550
|
+
pageInfo: PageInfo;
|
|
135551
|
+
};
|
|
135552
|
+
export type JiraEndUserAgentConfigurationEdge = {
|
|
135553
|
+
__typename?: 'JiraEndUserAgentConfigurationEdge';
|
|
135554
|
+
cursor: Scalars['String']['output'];
|
|
135555
|
+
node?: Maybe<JiraEndUserAgentConfiguration>;
|
|
135556
|
+
};
|
|
135557
|
+
export type JiraEndUserAgentConnection = {
|
|
135558
|
+
__typename?: 'JiraEndUserAgentConnection';
|
|
135559
|
+
edges?: Maybe<Array<Maybe<JiraEndUserAgentEdge>>>;
|
|
135560
|
+
pageInfo: PageInfo;
|
|
135561
|
+
};
|
|
135562
|
+
export type JiraEndUserAgentEdge = {
|
|
135563
|
+
__typename?: 'JiraEndUserAgentEdge';
|
|
135564
|
+
cursor: Scalars['String']['output'];
|
|
135565
|
+
node?: Maybe<JiraEndUserAgent>;
|
|
135566
|
+
};
|
|
134564
135567
|
export type JiraEntitlementFieldInput = {
|
|
134565
135568
|
entitlement: JiraEntitlementInput;
|
|
134566
135569
|
fieldId: Scalars['ID']['input'];
|
|
@@ -134787,6 +135790,7 @@ export type JiraFavouriteValue = Node & {
|
|
|
134787
135790
|
export type JiraFetchBulkOperationDetailsResponse = {
|
|
134788
135791
|
__typename?: 'JiraFetchBulkOperationDetailsResponse';
|
|
134789
135792
|
bulkEditFields?: Maybe<JiraBulkEditFieldsConnection>;
|
|
135793
|
+
bulkMoveDetails?: Maybe<JiraBulkMoveDetails>;
|
|
134790
135794
|
bulkTransitions?: Maybe<JiraBulkTransitionConnection>;
|
|
134791
135795
|
canBulkInvokeAgentSessions?: Maybe<Scalars['Boolean']['output']>;
|
|
134792
135796
|
mayDisableNotifications?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -140644,6 +141648,14 @@ export type JiraJourneyWorkdayIntegrationTriggerConfigurationInput = {
|
|
|
140644
141648
|
ruleId?: InputMaybe<Scalars['ID']['input']>;
|
|
140645
141649
|
type?: InputMaybe<JiraJourneyTriggerType>;
|
|
140646
141650
|
};
|
|
141651
|
+
export type JiraJqlAgentInvocationTypeFieldValue = JiraJqlFieldValue & {
|
|
141652
|
+
__typename?: 'JiraJqlAgentInvocationTypeFieldValue';
|
|
141653
|
+
displayName: Scalars['String']['output'];
|
|
141654
|
+
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
141655
|
+
invocationType: JiraAgentSessionInvocationType;
|
|
141656
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
141657
|
+
jqlTerm: Scalars['String']['output'];
|
|
141658
|
+
};
|
|
140647
141659
|
export type JiraJqlAgentStateCategoryFieldValue = JiraJqlFieldValue & {
|
|
140648
141660
|
__typename?: 'JiraJqlAgentStateCategoryFieldValue';
|
|
140649
141661
|
displayName: Scalars['String']['output'];
|
|
@@ -147002,6 +148014,7 @@ export type JiraQuery = {
|
|
|
147002
148014
|
systemFilters?: Maybe<JiraSystemFilterConnection>;
|
|
147003
148015
|
timelineToggleableFieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
147004
148016
|
uiModifications?: Maybe<Array<JiraAppUiModifications>>;
|
|
148017
|
+
unanchoredAgentSessionsByScope?: Maybe<AgentSessionConnection>;
|
|
147005
148018
|
userHomePage?: Maybe<JiraHomePage>;
|
|
147006
148019
|
userNavigationConfiguration?: Maybe<JiraUserNavigationConfiguration>;
|
|
147007
148020
|
userPreferences?: Maybe<JiraUserPreferences>;
|
|
@@ -147189,6 +148202,7 @@ export type JiraQueryCfoAnalyticsArgs = {
|
|
|
147189
148202
|
metrics: Array<JiraCfoMetricInput>;
|
|
147190
148203
|
sortInput?: InputMaybe<Array<InputMaybe<JiraCfoSortInput>>>;
|
|
147191
148204
|
startDate: Scalars['DateTime']['input'];
|
|
148205
|
+
timezoneOffset?: InputMaybe<Scalars['String']['input']>;
|
|
147192
148206
|
};
|
|
147193
148207
|
export type JiraQueryCfoConfigsArgs = {
|
|
147194
148208
|
cloudId: Scalars['ID']['input'];
|
|
@@ -147199,6 +148213,7 @@ export type JiraQueryCfoInsightsArgs = {
|
|
|
147199
148213
|
endDate: Scalars['DateTime']['input'];
|
|
147200
148214
|
insightOn?: InputMaybe<Array<InputMaybe<JiraCfoDimensionInput>>>;
|
|
147201
148215
|
startDate: Scalars['DateTime']['input'];
|
|
148216
|
+
timezoneOffset?: InputMaybe<Scalars['String']['input']>;
|
|
147202
148217
|
};
|
|
147203
148218
|
export type JiraQueryCfoRecommendationGroupsArgs = {
|
|
147204
148219
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -147713,6 +148728,7 @@ export type JiraQueryJiraCalendarArgs = {
|
|
|
147713
148728
|
};
|
|
147714
148729
|
export type JiraQueryJiraCanBulkInvokeAgentSessionsForJqlArgs = {
|
|
147715
148730
|
cloudId: Scalars['ID']['input'];
|
|
148731
|
+
excludedIssueIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
147716
148732
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
147717
148733
|
issueSearchInput: JiraIssueSearchInput;
|
|
147718
148734
|
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
@@ -148383,6 +149399,11 @@ export type JiraQueryTimelineToggleableFieldSetsArgs = {
|
|
|
148383
149399
|
export type JiraQueryUiModificationsArgs = {
|
|
148384
149400
|
context: JiraUiModificationsContextInput;
|
|
148385
149401
|
};
|
|
149402
|
+
export type JiraQueryUnanchoredAgentSessionsByScopeArgs = {
|
|
149403
|
+
cloudId: Scalars['ID']['input'];
|
|
149404
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
149405
|
+
scope: JiraUnanchoredAgentSessionsScopeInput;
|
|
149406
|
+
};
|
|
148386
149407
|
export type JiraQueryUserHomePageArgs = {
|
|
148387
149408
|
cloudId: Scalars['ID']['input'];
|
|
148388
149409
|
};
|
|
@@ -148523,6 +149544,7 @@ export type JiraRecentItemsFilter = {
|
|
|
148523
149544
|
export declare enum JiraRecommendationCategory {
|
|
148524
149545
|
Component = "COMPONENT",
|
|
148525
149546
|
CustomField = "CUSTOM_FIELD",
|
|
149547
|
+
DuplicateCustomField = "DUPLICATE_CUSTOM_FIELD",
|
|
148526
149548
|
IssueArchival = "ISSUE_ARCHIVAL",
|
|
148527
149549
|
PermissionGrantScheme = "PERMISSION_GRANT_SCHEME",
|
|
148528
149550
|
PriorityScheme = "PRIORITY_SCHEME",
|
|
@@ -153908,6 +154930,11 @@ export type JiraSuggestedIssueInput = {
|
|
|
153908
154930
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
153909
154931
|
summary?: InputMaybe<Scalars['String']['input']>;
|
|
153910
154932
|
};
|
|
154933
|
+
export type JiraSummaryAgentSetupTile = {
|
|
154934
|
+
__typename?: 'JiraSummaryAgentSetupTile';
|
|
154935
|
+
agentAri?: Maybe<Scalars['ID']['output']>;
|
|
154936
|
+
isEligible?: Maybe<Scalars['Boolean']['output']>;
|
|
154937
|
+
};
|
|
153911
154938
|
export type JiraSupportsUpdatedDependentFields = {
|
|
153912
154939
|
field?: Maybe<JiraIssueField>;
|
|
153913
154940
|
updatedDependentFields?: Maybe<JiraIssueFieldConnection>;
|
|
@@ -154618,6 +155645,9 @@ export declare enum JiraUiModificationsViewType {
|
|
|
154618
155645
|
IssueViewAgentView = "IssueViewAgentView",
|
|
154619
155646
|
JsmRequestCreate = "JSMRequestCreate"
|
|
154620
155647
|
}
|
|
155648
|
+
export type JiraUnanchoredAgentSessionsScopeInput = {
|
|
155649
|
+
boardId?: InputMaybe<Scalars['ID']['input']>;
|
|
155650
|
+
};
|
|
154621
155651
|
export type JiraUnlinkIssuesFromIncidentMutationInput = {
|
|
154622
155652
|
incidentId: Scalars['ID']['input'];
|
|
154623
155653
|
issueIds: Array<Scalars['ID']['input']>;
|
|
@@ -157162,7 +158192,7 @@ export type JpdBoardViewConfig = {
|
|
|
157162
158192
|
__typename?: 'JpdBoardViewConfig';
|
|
157163
158193
|
cardSize?: Maybe<JpdViewCardSize>;
|
|
157164
158194
|
colorConfig?: Maybe<JpdViewColorConfigSimple>;
|
|
157165
|
-
columns?: Maybe<
|
|
158195
|
+
columns?: Maybe<JpdViewColumnsConfig>;
|
|
157166
158196
|
connectionsFilters?: Maybe<JpdViewFilters>;
|
|
157167
158197
|
connectionsLayoutType?: Maybe<JpdViewConnectionsLayoutType>;
|
|
157168
158198
|
enabledAutoSave?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -157178,7 +158208,7 @@ export type JpdBoardViewConfig = {
|
|
|
157178
158208
|
export type JpdBoardViewConfigInput = {
|
|
157179
158209
|
cardSize?: InputMaybe<JpdViewCardSize>;
|
|
157180
158210
|
colorConfig?: InputMaybe<JpdViewColorConfigSimpleInput>;
|
|
157181
|
-
columns?: InputMaybe<
|
|
158211
|
+
columns?: InputMaybe<JpdViewColumnsConfigInput>;
|
|
157182
158212
|
connectionsFilters?: InputMaybe<JpdViewFiltersInput>;
|
|
157183
158213
|
connectionsLayoutType?: InputMaybe<JpdViewConnectionsLayoutType>;
|
|
157184
158214
|
enabledAutoSave?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -157645,6 +158675,15 @@ export declare enum JpdViewColorStyle {
|
|
|
157645
158675
|
Background = "BACKGROUND",
|
|
157646
158676
|
Highlight = "HIGHLIGHT"
|
|
157647
158677
|
}
|
|
158678
|
+
export type JpdViewColumnsConfig = {
|
|
158679
|
+
__typename?: 'JpdViewColumnsConfig';
|
|
158680
|
+
group: JpdViewLayoutGroup;
|
|
158681
|
+
hideEmpty?: Maybe<Scalars['Boolean']['output']>;
|
|
158682
|
+
};
|
|
158683
|
+
export type JpdViewColumnsConfigInput = {
|
|
158684
|
+
group: JpdViewLayoutGroupInput;
|
|
158685
|
+
hideEmpty?: InputMaybe<Scalars['Boolean']['input']>;
|
|
158686
|
+
};
|
|
157648
158687
|
export type JpdViewCommentEvent = {
|
|
157649
158688
|
__typename?: 'JpdViewCommentEvent';
|
|
157650
158689
|
actionMadeAt: Scalars['String']['output'];
|
|
@@ -157737,16 +158776,23 @@ export declare enum JpdViewIssueLayoutTypeWithSummary {
|
|
|
157737
158776
|
}
|
|
157738
158777
|
export type JpdViewLayoutConfig = {
|
|
157739
158778
|
__typename?: 'JpdViewLayoutConfig';
|
|
158779
|
+
groups: Array<JpdViewLayoutGroup>;
|
|
158780
|
+
hideEmpty?: Maybe<Scalars['Boolean']['output']>;
|
|
158781
|
+
};
|
|
158782
|
+
export type JpdViewLayoutConfigInput = {
|
|
158783
|
+
groups: Array<JpdViewLayoutGroupInput>;
|
|
158784
|
+
hideEmpty?: InputMaybe<Scalars['Boolean']['input']>;
|
|
158785
|
+
};
|
|
158786
|
+
export type JpdViewLayoutGroup = {
|
|
158787
|
+
__typename?: 'JpdViewLayoutGroup';
|
|
157740
158788
|
connectionsFilters?: Maybe<JpdViewFilters>;
|
|
157741
158789
|
field?: Maybe<Scalars['String']['output']>;
|
|
157742
|
-
hideEmpty?: Maybe<Scalars['Boolean']['output']>;
|
|
157743
158790
|
showMatchingConnections?: Maybe<Scalars['Boolean']['output']>;
|
|
157744
158791
|
valuesAndOrder?: Maybe<Array<Scalars['String']['output']>>;
|
|
157745
158792
|
};
|
|
157746
|
-
export type
|
|
158793
|
+
export type JpdViewLayoutGroupInput = {
|
|
157747
158794
|
connectionsFilters?: InputMaybe<JpdViewFiltersInput>;
|
|
157748
158795
|
field: Scalars['String']['input'];
|
|
157749
|
-
hideEmpty?: InputMaybe<Scalars['Boolean']['input']>;
|
|
157750
158796
|
showMatchingConnections?: InputMaybe<Scalars['Boolean']['input']>;
|
|
157751
158797
|
valuesAndOrder?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
157752
158798
|
};
|
|
@@ -161412,6 +162458,20 @@ export type KitsuneCreateSnippetPayload = Payload & {
|
|
|
161412
162458
|
snippet?: Maybe<KitsuneSnippet>;
|
|
161413
162459
|
success: Scalars['Boolean']['output'];
|
|
161414
162460
|
};
|
|
162461
|
+
export type KitsuneCreateSnippetsInput = {
|
|
162462
|
+
insightAri: Scalars['ID']['input'];
|
|
162463
|
+
snippets: Array<KitsuneCreateSnippetsItemInput>;
|
|
162464
|
+
};
|
|
162465
|
+
export type KitsuneCreateSnippetsItemInput = {
|
|
162466
|
+
content: Array<Scalars['String']['input']>;
|
|
162467
|
+
feedbackAri: Scalars['ID']['input'];
|
|
162468
|
+
};
|
|
162469
|
+
export type KitsuneCreateSnippetsPayload = Payload & {
|
|
162470
|
+
__typename?: 'KitsuneCreateSnippetsPayload';
|
|
162471
|
+
errors?: Maybe<Array<MutationError>>;
|
|
162472
|
+
job?: Maybe<KitsuneJob>;
|
|
162473
|
+
success: Scalars['Boolean']['output'];
|
|
162474
|
+
};
|
|
161415
162475
|
export type KitsuneCreateSpaceInput = {
|
|
161416
162476
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
161417
162477
|
name: Scalars['String']['input'];
|
|
@@ -161831,6 +162891,7 @@ export declare enum KitsuneJobStatus {
|
|
|
161831
162891
|
}
|
|
161832
162892
|
export declare enum KitsuneJobType {
|
|
161833
162893
|
BackfillAutoTagging = "BACKFILL_AUTO_TAGGING",
|
|
162894
|
+
CreateSnippets = "CREATE_SNIPPETS",
|
|
161834
162895
|
DeleteFeedback = "DELETE_FEEDBACK",
|
|
161835
162896
|
DeleteSpace = "DELETE_SPACE",
|
|
161836
162897
|
ExportFeedback = "EXPORT_FEEDBACK",
|
|
@@ -162267,6 +163328,7 @@ export type KitsuneSpace = Node & {
|
|
|
162267
163328
|
__typename?: 'KitsuneSpace';
|
|
162268
163329
|
accessLevel: KitsuneSpaceAccessLevel;
|
|
162269
163330
|
accessPrincipals: KitsuneSpaceAccessPrincipalConnection;
|
|
163331
|
+
autopilotEnabled: Scalars['Boolean']['output'];
|
|
162270
163332
|
description?: Maybe<Scalars['String']['output']>;
|
|
162271
163333
|
feedbacks: KitsuneFeedbackConnection;
|
|
162272
163334
|
fields: KitsuneFieldConnection;
|
|
@@ -162481,6 +163543,7 @@ export type KitsuneUpdateSnippetPayload = Payload & {
|
|
|
162481
163543
|
};
|
|
162482
163544
|
export type KitsuneUpdateSpaceInput = {
|
|
162483
163545
|
accessLevel?: InputMaybe<KitsuneSpaceAccessLevel>;
|
|
163546
|
+
autopilotEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
162484
163547
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
162485
163548
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
162486
163549
|
};
|
|
@@ -165451,8 +166514,15 @@ export type MarkCommentsAsReadPayload = {
|
|
|
165451
166514
|
};
|
|
165452
166515
|
export type MarketplaceAgentCapabilities = {
|
|
165453
166516
|
__typename?: 'MarketplaceAgentCapabilities';
|
|
166517
|
+
examplePrompts?: Maybe<Array<Scalars['String']['output']>>;
|
|
166518
|
+
skills?: Maybe<Array<MarketplaceAgentSkill>>;
|
|
165454
166519
|
tools?: Maybe<Array<MarketplaceAgentTool>>;
|
|
165455
166520
|
};
|
|
166521
|
+
export type MarketplaceAgentSkill = {
|
|
166522
|
+
__typename?: 'MarketplaceAgentSkill';
|
|
166523
|
+
description: Scalars['String']['output'];
|
|
166524
|
+
name: Scalars['String']['output'];
|
|
166525
|
+
};
|
|
165456
166526
|
export type MarketplaceAgentTool = {
|
|
165457
166527
|
__typename?: 'MarketplaceAgentTool';
|
|
165458
166528
|
accessType: MarketplaceAgentToolAccessType;
|
|
@@ -165469,6 +166539,7 @@ export type MarketplaceApp = {
|
|
|
165469
166539
|
appKey: Scalars['String']['output'];
|
|
165470
166540
|
categories: Array<MarketplaceAppCategory>;
|
|
165471
166541
|
createdAt: Scalars['DateTime']['output'];
|
|
166542
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
165472
166543
|
distribution?: Maybe<MarketplaceAppDistribution>;
|
|
165473
166544
|
entityStatus: MarketplaceEntityStatus;
|
|
165474
166545
|
forumsUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -172321,7 +173392,9 @@ export type MercuryCreateDateCustomFieldDefinitionInput = {
|
|
|
172321
173392
|
};
|
|
172322
173393
|
export type MercuryCreateDraftPlanInput = {
|
|
172323
173394
|
fiscalYearStart: Scalars['String']['input'];
|
|
173395
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
172324
173396
|
organizationId: Scalars['ID']['input'];
|
|
173397
|
+
sourcePlanId?: InputMaybe<Scalars['ID']['input']>;
|
|
172325
173398
|
};
|
|
172326
173399
|
export type MercuryCreateDraftPlanPayload = Payload & {
|
|
172327
173400
|
__typename?: 'MercuryCreateDraftPlanPayload';
|
|
@@ -175763,6 +176836,8 @@ export type MercuryMutationApi = {
|
|
|
175763
176836
|
updateFocusAreaTargetDate?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
175764
176837
|
updateFocusAreaTypeFieldConfigurations?: Maybe<MercuryUpdateFieldConfigurationsPayload>;
|
|
175765
176838
|
updatePortfolioName?: Maybe<MercuryUpdatePortfolioPayload>;
|
|
176839
|
+
updatePortfolioPublishingState?: Maybe<MercuryUpdatePortfolioPublishingStatePayload>;
|
|
176840
|
+
updatePortfolioSettings?: Maybe<MercuryUpdatePortfolioSettingsPayload>;
|
|
175766
176841
|
updateUserNotificationSettings?: Maybe<MercuryUpdateUserNotificationSettingsPayload>;
|
|
175767
176842
|
validateFocusAreaArchival?: Maybe<MercuryArchiveFocusAreaValidationPayload>;
|
|
175768
176843
|
validateFocusAreasForRanking?: Maybe<MercuryValidateFocusAreasForRankingPayload>;
|
|
@@ -175956,6 +177031,12 @@ export type MercuryMutationApiUpdateFocusAreaTypeFieldConfigurationsArgs = {
|
|
|
175956
177031
|
export type MercuryMutationApiUpdatePortfolioNameArgs = {
|
|
175957
177032
|
input: MercuryUpdatePortfolioNameInput;
|
|
175958
177033
|
};
|
|
177034
|
+
export type MercuryMutationApiUpdatePortfolioPublishingStateArgs = {
|
|
177035
|
+
input: MercuryUpdatePortfolioPublishingStateInput;
|
|
177036
|
+
};
|
|
177037
|
+
export type MercuryMutationApiUpdatePortfolioSettingsArgs = {
|
|
177038
|
+
input: MercuryUpdatePortfolioSettingsInput;
|
|
177039
|
+
};
|
|
175959
177040
|
export type MercuryMutationApiUpdateUserNotificationSettingsArgs = {
|
|
175960
177041
|
input: MercuryUpdateUserNotificationSettingsInput;
|
|
175961
177042
|
};
|
|
@@ -177273,6 +178354,7 @@ export type MercuryPlan = Node & {
|
|
|
177273
178354
|
id: Scalars['ID']['output'];
|
|
177274
178355
|
isSystemManaged: Scalars['Boolean']['output'];
|
|
177275
178356
|
memberCountAllocationTotals: Array<MercuryPlanMemberCountAllocationComputedByPlan>;
|
|
178357
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
177276
178358
|
organizationId: Scalars['ID']['output'];
|
|
177277
178359
|
organizationPlanAuthority?: Maybe<MercuryPlanOrganizationAuthority>;
|
|
177278
178360
|
startDate: Scalars['Date']['output'];
|
|
@@ -177440,6 +178522,8 @@ export type MercuryPortfolio = {
|
|
|
177440
178522
|
linkedFocusAreaSummary?: Maybe<MercuryPortfolioFocusAreaSummary>;
|
|
177441
178523
|
name: Scalars['String']['output'];
|
|
177442
178524
|
owner?: Maybe<User>;
|
|
178525
|
+
publishingState?: Maybe<MercuryPortfolioPublishingState>;
|
|
178526
|
+
settings?: Maybe<MercuryPortfolioSettings>;
|
|
177443
178527
|
starred?: Maybe<Scalars['Boolean']['output']>;
|
|
177444
178528
|
updatedBy?: Maybe<User>;
|
|
177445
178529
|
updatedDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -177493,6 +178577,24 @@ export type MercuryPortfolioHumanResourceAllocations = {
|
|
|
177493
178577
|
totalAsPercentageOfBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
177494
178578
|
totalPositions?: Maybe<Scalars['BigDecimal']['output']>;
|
|
177495
178579
|
};
|
|
178580
|
+
export declare enum MercuryPortfolioPublishingState {
|
|
178581
|
+
Archived = "ARCHIVED",
|
|
178582
|
+
Draft = "DRAFT",
|
|
178583
|
+
Published = "PUBLISHED"
|
|
178584
|
+
}
|
|
178585
|
+
export type MercuryPortfolioSettings = {
|
|
178586
|
+
__typename?: 'MercuryPortfolioSettings';
|
|
178587
|
+
filter?: Maybe<Scalars['String']['output']>;
|
|
178588
|
+
sort?: Maybe<Scalars['String']['output']>;
|
|
178589
|
+
visualizationSettings?: Maybe<Scalars['String']['output']>;
|
|
178590
|
+
visualizationType?: Maybe<Scalars['String']['output']>;
|
|
178591
|
+
};
|
|
178592
|
+
export type MercuryPortfolioSettingsInput = {
|
|
178593
|
+
filter?: InputMaybe<Scalars['String']['input']>;
|
|
178594
|
+
sort?: InputMaybe<Scalars['String']['input']>;
|
|
178595
|
+
visualizationSettings?: InputMaybe<Scalars['String']['input']>;
|
|
178596
|
+
visualizationType?: InputMaybe<Scalars['String']['input']>;
|
|
178597
|
+
};
|
|
177496
178598
|
export type MercuryPortfolioSort = {
|
|
177497
178599
|
field: MercuryPortfolioSortField;
|
|
177498
178600
|
order: SortOrder;
|
|
@@ -180678,6 +181780,26 @@ export type MercuryUpdatePortfolioPayload = Payload & {
|
|
|
180678
181780
|
success: Scalars['Boolean']['output'];
|
|
180679
181781
|
updatedPortfolio?: Maybe<MercuryPortfolio>;
|
|
180680
181782
|
};
|
|
181783
|
+
export type MercuryUpdatePortfolioPublishingStateInput = {
|
|
181784
|
+
id: Scalars['ID']['input'];
|
|
181785
|
+
publishingState: MercuryPortfolioPublishingState;
|
|
181786
|
+
};
|
|
181787
|
+
export type MercuryUpdatePortfolioPublishingStatePayload = Payload & {
|
|
181788
|
+
__typename?: 'MercuryUpdatePortfolioPublishingStatePayload';
|
|
181789
|
+
errors?: Maybe<Array<MutationError>>;
|
|
181790
|
+
success: Scalars['Boolean']['output'];
|
|
181791
|
+
updatedPortfolio?: Maybe<MercuryPortfolio>;
|
|
181792
|
+
};
|
|
181793
|
+
export type MercuryUpdatePortfolioSettingsInput = {
|
|
181794
|
+
id: Scalars['ID']['input'];
|
|
181795
|
+
settings: MercuryPortfolioSettingsInput;
|
|
181796
|
+
};
|
|
181797
|
+
export type MercuryUpdatePortfolioSettingsPayload = Payload & {
|
|
181798
|
+
__typename?: 'MercuryUpdatePortfolioSettingsPayload';
|
|
181799
|
+
errors?: Maybe<Array<MutationError>>;
|
|
181800
|
+
success: Scalars['Boolean']['output'];
|
|
181801
|
+
updatedPortfolio?: Maybe<MercuryPortfolio>;
|
|
181802
|
+
};
|
|
180681
181803
|
export type MercuryUpdateRateCardChangeInput = {
|
|
180682
181804
|
cloudId: Scalars['ID']['input'];
|
|
180683
181805
|
effectiveStartDate?: InputMaybe<Scalars['Date']['input']>;
|
|
@@ -181446,6 +182568,7 @@ export type Mutation = {
|
|
|
181446
182568
|
admin_createAuditLogBackgroundQuery?: Maybe<AdminAuditLogBackgroundQueryPayload>;
|
|
181447
182569
|
admin_createAuditLogBackgroundQueryV2?: Maybe<AdminAuditLogBackgroundQueryPayload>;
|
|
181448
182570
|
admin_createInvitePolicy?: Maybe<AdminCreateInvitePolicyResponsePayload>;
|
|
182571
|
+
admin_createOAuthClient?: Maybe<AdminOAuthClientSecretPayload>;
|
|
181449
182572
|
admin_createOutboundAuthService?: Maybe<AdminCreateOutboundAuthServicePayload>;
|
|
181450
182573
|
admin_deactivateUser?: Maybe<AdminDeactivateResponsePayload>;
|
|
181451
182574
|
admin_deleteAccessUrl?: Maybe<AdminAccessUrlDeletionResponsePayload>;
|
|
@@ -181457,7 +182580,9 @@ export type Mutation = {
|
|
|
181457
182580
|
admin_registerNewDataSourceId?: Maybe<AdminRegisterNewDataSourceIdPayload>;
|
|
181458
182581
|
admin_releaseImpersonationUser?: Maybe<AdminReleaseImpersonationResponsePayload>;
|
|
181459
182582
|
admin_removeUser?: Maybe<AdminRemoveUserResponsePayload>;
|
|
182583
|
+
admin_revokeOAuthClient?: Maybe<AdminRevokeOAuthClientPayload>;
|
|
181460
182584
|
admin_revokeRole?: Maybe<AdminRevokeRoleResponsePayload>;
|
|
182585
|
+
admin_rotateOAuthClientSecret?: Maybe<AdminOAuthClientSecretPayload>;
|
|
181461
182586
|
admin_scimRuleCreate?: Maybe<AdminScimRuleMutationPayload>;
|
|
181462
182587
|
admin_scimRuleDelete?: Maybe<AdminScimRuleMutationPayload>;
|
|
181463
182588
|
admin_scimRuleUpdate?: Maybe<AdminScimRuleMutationPayload>;
|
|
@@ -181469,6 +182594,7 @@ export type Mutation = {
|
|
|
181469
182594
|
admin_updateAiPolicy?: Maybe<AdminUpdateAiPolicyResponsePayload>;
|
|
181470
182595
|
admin_updateAuditLogBackgroundQuery?: Maybe<AdminAuditLogBackgroundQueryPayload>;
|
|
181471
182596
|
admin_updateAuditLogBackgroundQueryV2?: Maybe<AdminAuditLogBackgroundQueryPayload>;
|
|
182597
|
+
admin_updateEnforceBoundarySetting?: Maybe<AdminUpdateEnforceBoundarySettingPayload>;
|
|
181472
182598
|
admin_updateInvitePolicy?: Maybe<AdminUpdateInvitePolicyResponsePayload>;
|
|
181473
182599
|
agentAI_panelRefresh?: Maybe<AgentAiPanelRefreshResult>;
|
|
181474
182600
|
agentStudio_addGroupsToCreatePermission?: Maybe<AgentStudioAddGroupsToCreatePermissionPayload>;
|
|
@@ -181538,6 +182664,7 @@ export type Mutation = {
|
|
|
181538
182664
|
agentWorkspace_editShift?: Maybe<AgentWorkspaceEditShiftPayload>;
|
|
181539
182665
|
agentWorkspace_endBreak?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
181540
182666
|
agentWorkspace_restoreSkill?: Maybe<AgentWorkspaceRestoreSkillPayload>;
|
|
182667
|
+
agentWorkspace_saveRoutingSetup?: Maybe<AgentWorkspaceSaveRoutingSetupPayload>;
|
|
181541
182668
|
agentWorkspace_setAvailabilityStatus?: Maybe<AgentWorkspaceAvailabilityStatusPayload>;
|
|
181542
182669
|
agentWorkspace_setCapacityConfiguration?: Maybe<AgentWorkspaceSetCapacityConfigurationPayload>;
|
|
181543
182670
|
agentWorkspace_setDefaultCapacity?: Maybe<AgentWorkspaceSetDefaultCapacityPayload>;
|
|
@@ -181591,6 +182718,7 @@ export type Mutation = {
|
|
|
181591
182718
|
artifact_authorContent?: Maybe<ArtifactAuthorContentPayload>;
|
|
181592
182719
|
artifact_createArtifact?: Maybe<ArtifactCreatePayload>;
|
|
181593
182720
|
artifact_createContent?: Maybe<ArtifactCreateContentPayload>;
|
|
182721
|
+
artifact_updateArtifact?: Maybe<ArtifactUpdatePayload>;
|
|
181594
182722
|
assetsDM_addDataDictionary?: Maybe<AssetsDmAddDataDictionaryResponse>;
|
|
181595
182723
|
assetsDM_addDefaultAttributeMapping?: Maybe<AssetsDmAddDefaultAttributeMappingResponse>;
|
|
181596
182724
|
assetsDM_associateObjectTag?: Maybe<AssetsDmObjectTagAssociateResponse>;
|
|
@@ -182099,6 +183227,7 @@ export type Mutation = {
|
|
|
182099
183227
|
csm_updateProduct?: Maybe<CustomerServiceProductUpdatePayload>;
|
|
182100
183228
|
csm_updateStatusMapping?: Maybe<CustomerServiceStatusMappingUpdatePayload>;
|
|
182101
183229
|
csm_updateTemplateForm?: Maybe<CustomerServiceTemplateFormUpdatePayload>;
|
|
183230
|
+
csm_updateWorkItemSupportSite?: Maybe<CustomerServiceUpdateWorkItemSupportSitePayload>;
|
|
182102
183231
|
csm_upsertBranding?: Maybe<CustomerServiceBrandingUpsertPayload>;
|
|
182103
183232
|
csm_upsertEmailChannelConfiguration?: Maybe<CustomerServiceEmailChannelConfigUpsertPayload>;
|
|
182104
183233
|
csm_upsertHelpCenterMetadata?: Maybe<CustomerServiceHelpCenterMetadataUpsertPayload>;
|
|
@@ -182289,6 +183418,8 @@ export type Mutation = {
|
|
|
182289
183418
|
goals_updateAppPermissionPolicies?: Maybe<TownsquareUpdateGoalsAppPermissionPoliciesPayload>;
|
|
182290
183419
|
goals_updateSlackSubscription?: Maybe<TownsquareGoalsUpdateSlackSubscriptionPayload>;
|
|
182291
183420
|
grantContentAccess?: Maybe<GrantContentAccessPayload>;
|
|
183421
|
+
graphInference_ensureWeeklyReviewPack?: Maybe<GraphInferenceReviewPackSummary>;
|
|
183422
|
+
graphInference_generateReviewPack?: Maybe<GraphInferenceReviewPackSummary>;
|
|
182292
183423
|
graphInference_inferenceAppAdd?: Maybe<GraphInferenceInferenceAppMutationPayload>;
|
|
182293
183424
|
graphInference_inferenceAppAddV2?: Maybe<GraphInferenceInferenceAppMutationPayloadV2>;
|
|
182294
183425
|
graphInference_inferenceAppAddV3?: Maybe<GraphInferenceInferenceAppMutationPayloadV3>;
|
|
@@ -182301,6 +183432,8 @@ export type Mutation = {
|
|
|
182301
183432
|
graphInference_inferenceEval?: Maybe<GraphInferenceInferenceEvalResponse>;
|
|
182302
183433
|
graphInference_inferenceEvalStart?: Maybe<GraphInferenceInferenceEvalStartResponse>;
|
|
182303
183434
|
graphInference_inferencePreview?: Maybe<GraphInferenceInferencePreviewResponse>;
|
|
183435
|
+
graphInference_inlineEvalStart?: Maybe<GraphInferenceInlineEvalStartResponse>;
|
|
183436
|
+
graphInference_submitReview?: Maybe<GraphInferenceReviewPackSummary>;
|
|
182304
183437
|
graphIntegration_actionAdminManagementUpdateActionConfiguration?: Maybe<GraphIntegrationActionAdminManagementUpdateActionConfigurationPayload>;
|
|
182305
183438
|
graphIntegration_addTwgCapabilityContainer?: Maybe<GraphIntegrationAddTwgCapabilityContainerPayload>;
|
|
182306
183439
|
graphIntegration_createDataConnectorConnection?: Maybe<GraphIntegrationCreateConnectionPayload>;
|
|
@@ -182355,6 +183488,7 @@ export type Mutation = {
|
|
|
182355
183488
|
graphStoreV2_createJiraVersionLinksExternalFeatureFlag?: Maybe<GraphStoreV2CreateJiraVersionLinksExternalFeatureFlagPayload>;
|
|
182356
183489
|
graphStoreV2_createJiraWorkItemDismissedKnowledgeBaseEntity?: Maybe<GraphStoreV2CreateJiraWorkItemDismissedKnowledgeBaseEntityPayload>;
|
|
182357
183490
|
graphStoreV2_createJiraWorkItemHasLinkedKnowledgeBaseEntity?: Maybe<GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityPayload>;
|
|
183491
|
+
graphStoreV2_createJiraWorkItemImpactsCompassComponent?: Maybe<GraphStoreV2CreateJiraWorkItemImpactsCompassComponentPayload>;
|
|
182358
183492
|
graphStoreV2_createJiraWorkItemLinksConfluenceWhiteboard?: Maybe<GraphStoreV2CreateJiraWorkItemLinksConfluenceWhiteboardPayload>;
|
|
182359
183493
|
graphStoreV2_createJiraWorkItemLinksExternalVulnerability?: Maybe<GraphStoreV2CreateJiraWorkItemLinksExternalVulnerabilityPayload>;
|
|
182360
183494
|
graphStoreV2_createJiraWorkItemLinksSupportEscalationEntity?: Maybe<GraphStoreV2CreateJiraWorkItemLinksSupportEscalationEntityPayload>;
|
|
@@ -182390,6 +183524,7 @@ export type Mutation = {
|
|
|
182390
183524
|
graphStoreV2_deleteJiraVersionLinksExternalFeatureFlag?: Maybe<GraphStoreV2DeleteJiraVersionLinksExternalFeatureFlagPayload>;
|
|
182391
183525
|
graphStoreV2_deleteJiraWorkItemDismissedKnowledgeBaseEntity?: Maybe<GraphStoreV2DeleteJiraWorkItemDismissedKnowledgeBaseEntityPayload>;
|
|
182392
183526
|
graphStoreV2_deleteJiraWorkItemHasLinkedKnowledgeBaseEntity?: Maybe<GraphStoreV2DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityPayload>;
|
|
183527
|
+
graphStoreV2_deleteJiraWorkItemImpactsCompassComponent?: Maybe<GraphStoreV2DeleteJiraWorkItemImpactsCompassComponentPayload>;
|
|
182393
183528
|
graphStoreV2_deleteJiraWorkItemLinksConfluenceWhiteboard?: Maybe<GraphStoreV2DeleteJiraWorkItemLinksConfluenceWhiteboardPayload>;
|
|
182394
183529
|
graphStoreV2_deleteJiraWorkItemLinksExternalVulnerability?: Maybe<GraphStoreV2DeleteJiraWorkItemLinksExternalVulnerabilityPayload>;
|
|
182395
183530
|
graphStoreV2_deleteJiraWorkItemLinksSupportEscalationEntity?: Maybe<GraphStoreV2DeleteJiraWorkItemLinksSupportEscalationEntityPayload>;
|
|
@@ -182486,11 +183621,13 @@ export type Mutation = {
|
|
|
182486
183621
|
gravity_applyDraft?: Maybe<GravityDraftPayload>;
|
|
182487
183622
|
gravity_cloneView?: Maybe<JpdView>;
|
|
182488
183623
|
gravity_createDraft?: Maybe<GravityDraftPayload>;
|
|
183624
|
+
gravity_createSection?: Maybe<GravityCreateSectionPayload>;
|
|
182489
183625
|
gravity_createView?: Maybe<JpdView>;
|
|
182490
183626
|
gravity_createViewFromInlinedTemplate?: Maybe<GravityCreateViewFromTemplatePayload>;
|
|
182491
183627
|
gravity_createViewFromTemplate: GravityCreateViewFromTemplatePayload;
|
|
182492
183628
|
gravity_createViewFromUserPrompt?: Maybe<GravityCreateViewFromUserPromptPayload>;
|
|
182493
183629
|
gravity_deleteReaction?: Maybe<GravityDeleteReactionPayload>;
|
|
183630
|
+
gravity_deleteSection?: Maybe<GravityDeleteSectionPayload>;
|
|
182494
183631
|
gravity_deleteView?: Maybe<JpdViewDeleted>;
|
|
182495
183632
|
gravity_discardDraft?: Maybe<GravityDraftPayload>;
|
|
182496
183633
|
gravity_generateViewTemplateFromUserPrompt?: Maybe<GravityGenerateViewTemplateFromUserPromptPayload>;
|
|
@@ -182500,7 +183637,9 @@ export type Mutation = {
|
|
|
182500
183637
|
gravity_setViewArrangement?: Maybe<GravityViewArrangementPayload>;
|
|
182501
183638
|
gravity_startAltaSession?: Maybe<GravityAltaSessionPayload>;
|
|
182502
183639
|
gravity_updateDeliverySettings?: Maybe<GravityUpdateDeliverySettingsPayload>;
|
|
183640
|
+
gravity_updateDeliveryTableSort?: Maybe<GravityUpdateDeliverySettingsPayload>;
|
|
182503
183641
|
gravity_updateDraftContent?: Maybe<GravityDraftPayload>;
|
|
183642
|
+
gravity_updateSection?: Maybe<GravityUpdateSectionPayload>;
|
|
182504
183643
|
gravity_updateView?: Maybe<JpdView>;
|
|
182505
183644
|
gravity_upsertAction?: Maybe<GravityActionPayload>;
|
|
182506
183645
|
growthUnifiedProfile_createEntitlementProfile?: Maybe<GrowthUnifiedProfileCreateEntitlementProfileResponse>;
|
|
@@ -182751,6 +183890,7 @@ export type Mutation = {
|
|
|
182751
183890
|
kitsune_createSectionV2?: Maybe<KitsuneSectionPayload>;
|
|
182752
183891
|
kitsune_createSnippet?: Maybe<KitsuneSnippet>;
|
|
182753
183892
|
kitsune_createSnippetV2?: Maybe<KitsuneCreateSnippetPayload>;
|
|
183893
|
+
kitsune_createSnippets?: Maybe<KitsuneCreateSnippetsPayload>;
|
|
182754
183894
|
kitsune_createSpace?: Maybe<KitsuneSpace>;
|
|
182755
183895
|
kitsune_createSpaceV2?: Maybe<KitsuneCreateSpacePayload>;
|
|
182756
183896
|
kitsune_createView?: Maybe<KitsuneView>;
|
|
@@ -182983,6 +184123,7 @@ export type Mutation = {
|
|
|
182983
184123
|
projects_edit?: Maybe<TownsquareProjectsEditPayload>;
|
|
182984
184124
|
projects_editComment?: Maybe<TownsquareProjectsEditCommentPayload>;
|
|
182985
184125
|
projects_editDecision?: Maybe<TownsquareProjectsEditDecisionPayload>;
|
|
184126
|
+
projects_editDraftUpdate?: Maybe<TownsquareProjectsEditDraftUpdatePayload>;
|
|
182986
184127
|
projects_editDropdownCustomField?: Maybe<TownsquareProjectsEditDropdownCustomFieldPayload>;
|
|
182987
184128
|
projects_editLearning?: Maybe<TownsquareProjectsEditLearningPayload>;
|
|
182988
184129
|
projects_editLink?: Maybe<TownsquareProjectsEditLinkPayload>;
|
|
@@ -183401,6 +184542,9 @@ export type MutationAdmin_CreateInvitePolicyArgs = {
|
|
|
183401
184542
|
createInvitePolicyInput?: InputMaybe<AdminCreateInvitePolicyInput>;
|
|
183402
184543
|
orgId: Scalars['ID']['input'];
|
|
183403
184544
|
};
|
|
184545
|
+
export type MutationAdmin_CreateOAuthClientArgs = {
|
|
184546
|
+
input: AdminCreateOAuthClientInput;
|
|
184547
|
+
};
|
|
183404
184548
|
export type MutationAdmin_CreateOutboundAuthServiceArgs = {
|
|
183405
184549
|
connectorSyncType?: InputMaybe<Scalars['String']['input']>;
|
|
183406
184550
|
datasourceId: Scalars['ID']['input'];
|
|
@@ -183445,11 +184589,17 @@ export type MutationAdmin_RemoveUserArgs = {
|
|
|
183445
184589
|
directoryId: Scalars['String']['input'];
|
|
183446
184590
|
orgId: Scalars['String']['input'];
|
|
183447
184591
|
};
|
|
184592
|
+
export type MutationAdmin_RevokeOAuthClientArgs = {
|
|
184593
|
+
input: AdminRevokeOAuthClientInput;
|
|
184594
|
+
};
|
|
183448
184595
|
export type MutationAdmin_RevokeRoleArgs = {
|
|
183449
184596
|
directoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
183450
184597
|
orgId: Scalars['ID']['input'];
|
|
183451
184598
|
revokeRoleInput?: InputMaybe<AdminRevokeRoleInput>;
|
|
183452
184599
|
};
|
|
184600
|
+
export type MutationAdmin_RotateOAuthClientSecretArgs = {
|
|
184601
|
+
input: AdminRotateOAuthClientSecretInput;
|
|
184602
|
+
};
|
|
183453
184603
|
export type MutationAdmin_ScimRuleCreateArgs = {
|
|
183454
184604
|
input: AdminScimRuleCreateInput;
|
|
183455
184605
|
orgId: Scalars['ID']['input'];
|
|
@@ -183495,6 +184645,9 @@ export type MutationAdmin_UpdateAuditLogBackgroundQueryArgs = {
|
|
|
183495
184645
|
export type MutationAdmin_UpdateAuditLogBackgroundQueryV2Args = {
|
|
183496
184646
|
input: AdminAuditLogUpdateBackgroundQueryInput;
|
|
183497
184647
|
};
|
|
184648
|
+
export type MutationAdmin_UpdateEnforceBoundarySettingArgs = {
|
|
184649
|
+
input: AdminUpdateEnforceBoundarySettingInput;
|
|
184650
|
+
};
|
|
183498
184651
|
export type MutationAdmin_UpdateInvitePolicyArgs = {
|
|
183499
184652
|
orgId: Scalars['ID']['input'];
|
|
183500
184653
|
policyId: Scalars['ID']['input'];
|
|
@@ -183772,6 +184925,9 @@ export type MutationAgentWorkspace_EndBreakArgs = {
|
|
|
183772
184925
|
export type MutationAgentWorkspace_RestoreSkillArgs = {
|
|
183773
184926
|
input: AgentWorkspaceRestoreSkillInput;
|
|
183774
184927
|
};
|
|
184928
|
+
export type MutationAgentWorkspace_SaveRoutingSetupArgs = {
|
|
184929
|
+
input: AgentWorkspaceSaveRoutingSetupInput;
|
|
184930
|
+
};
|
|
183775
184931
|
export type MutationAgentWorkspace_SetAvailabilityStatusArgs = {
|
|
183776
184932
|
input: AgentWorkspaceAvailabilityStatusInput;
|
|
183777
184933
|
};
|
|
@@ -183929,6 +185085,9 @@ export type MutationArtifact_CreateArtifactArgs = {
|
|
|
183929
185085
|
export type MutationArtifact_CreateContentArgs = {
|
|
183930
185086
|
input: ArtifactCreateContentInput;
|
|
183931
185087
|
};
|
|
185088
|
+
export type MutationArtifact_UpdateArtifactArgs = {
|
|
185089
|
+
input: ArtifactUpdateInput;
|
|
185090
|
+
};
|
|
183932
185091
|
export type MutationAssetsDm_AddDataDictionaryArgs = {
|
|
183933
185092
|
cloudId: Scalars['ID']['input'];
|
|
183934
185093
|
payload: AssetsDmAddDataDictionaryInput;
|
|
@@ -185891,6 +187050,11 @@ export type MutationCsm_UpdateTemplateFormArgs = {
|
|
|
185891
187050
|
input: CustomerServiceTemplateFormUpdateInput;
|
|
185892
187051
|
templateFormId: Scalars['ID']['input'];
|
|
185893
187052
|
};
|
|
187053
|
+
export type MutationCsm_UpdateWorkItemSupportSiteArgs = {
|
|
187054
|
+
cloudId: Scalars['ID']['input'];
|
|
187055
|
+
helpCenterId?: InputMaybe<Scalars['ID']['input']>;
|
|
187056
|
+
workItemKey: Scalars['String']['input'];
|
|
187057
|
+
};
|
|
185894
187058
|
export type MutationCsm_UpsertBrandingArgs = {
|
|
185895
187059
|
cloudId: Scalars['ID']['input'];
|
|
185896
187060
|
helpCenterId: Scalars['ID']['input'];
|
|
@@ -186488,6 +187652,9 @@ export type MutationGoals_UpdateSlackSubscriptionArgs = {
|
|
|
186488
187652
|
export type MutationGrantContentAccessArgs = {
|
|
186489
187653
|
grantContentAccessInput: GrantContentAccessInput;
|
|
186490
187654
|
};
|
|
187655
|
+
export type MutationGraphInference_GenerateReviewPackArgs = {
|
|
187656
|
+
input: GraphInferenceGenerateReviewPackInput;
|
|
187657
|
+
};
|
|
186491
187658
|
export type MutationGraphInference_InferenceAppAddArgs = {
|
|
186492
187659
|
input: GraphInferenceInferenceAppAddInput;
|
|
186493
187660
|
};
|
|
@@ -186524,6 +187691,12 @@ export type MutationGraphInference_InferenceEvalStartArgs = {
|
|
|
186524
187691
|
export type MutationGraphInference_InferencePreviewArgs = {
|
|
186525
187692
|
input: GraphInferenceInferencePreviewInput;
|
|
186526
187693
|
};
|
|
187694
|
+
export type MutationGraphInference_InlineEvalStartArgs = {
|
|
187695
|
+
input: GraphInferenceInlineEvalStartInput;
|
|
187696
|
+
};
|
|
187697
|
+
export type MutationGraphInference_SubmitReviewArgs = {
|
|
187698
|
+
input: GraphInferenceSubmitReviewInput;
|
|
187699
|
+
};
|
|
186527
187700
|
export type MutationGraphIntegration_ActionAdminManagementUpdateActionConfigurationArgs = {
|
|
186528
187701
|
input: GraphIntegrationActionAdminManagementUpdateActionConfigurationInput;
|
|
186529
187702
|
};
|
|
@@ -186681,6 +187854,9 @@ export type MutationGraphStoreV2_CreateJiraWorkItemDismissedKnowledgeBaseEntityA
|
|
|
186681
187854
|
export type MutationGraphStoreV2_CreateJiraWorkItemHasLinkedKnowledgeBaseEntityArgs = {
|
|
186682
187855
|
input?: InputMaybe<GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityInput>;
|
|
186683
187856
|
};
|
|
187857
|
+
export type MutationGraphStoreV2_CreateJiraWorkItemImpactsCompassComponentArgs = {
|
|
187858
|
+
input?: InputMaybe<GraphStoreV2CreateJiraWorkItemImpactsCompassComponentInput>;
|
|
187859
|
+
};
|
|
186684
187860
|
export type MutationGraphStoreV2_CreateJiraWorkItemLinksConfluenceWhiteboardArgs = {
|
|
186685
187861
|
input?: InputMaybe<GraphStoreV2CreateJiraWorkItemLinksConfluenceWhiteboardInput>;
|
|
186686
187862
|
};
|
|
@@ -186786,6 +187962,9 @@ export type MutationGraphStoreV2_DeleteJiraWorkItemDismissedKnowledgeBaseEntityA
|
|
|
186786
187962
|
export type MutationGraphStoreV2_DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityArgs = {
|
|
186787
187963
|
input?: InputMaybe<GraphStoreV2DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityInput>;
|
|
186788
187964
|
};
|
|
187965
|
+
export type MutationGraphStoreV2_DeleteJiraWorkItemImpactsCompassComponentArgs = {
|
|
187966
|
+
input?: InputMaybe<GraphStoreV2DeleteJiraWorkItemImpactsCompassComponentInput>;
|
|
187967
|
+
};
|
|
186789
187968
|
export type MutationGraphStoreV2_DeleteJiraWorkItemLinksConfluenceWhiteboardArgs = {
|
|
186790
187969
|
input?: InputMaybe<GraphStoreV2DeleteJiraWorkItemLinksConfluenceWhiteboardInput>;
|
|
186791
187970
|
};
|
|
@@ -187080,6 +188259,10 @@ export type MutationGravity_CreateDraftArgs = {
|
|
|
187080
188259
|
cloudId: Scalars['ID']['input'];
|
|
187081
188260
|
input: GravityCreateDraftInput;
|
|
187082
188261
|
};
|
|
188262
|
+
export type MutationGravity_CreateSectionArgs = {
|
|
188263
|
+
cloudId: Scalars['ID']['input'];
|
|
188264
|
+
input: GravityCreateSectionInput;
|
|
188265
|
+
};
|
|
187083
188266
|
export type MutationGravity_CreateViewArgs = {
|
|
187084
188267
|
cloudId: Scalars['ID']['input'];
|
|
187085
188268
|
input: JpdCreateViewInput;
|
|
@@ -187100,6 +188283,10 @@ export type MutationGravity_DeleteReactionArgs = {
|
|
|
187100
188283
|
cloudId: Scalars['ID']['input'];
|
|
187101
188284
|
input: GravityDeleteReactionInput;
|
|
187102
188285
|
};
|
|
188286
|
+
export type MutationGravity_DeleteSectionArgs = {
|
|
188287
|
+
cloudId: Scalars['ID']['input'];
|
|
188288
|
+
sectionId: Scalars['ID']['input'];
|
|
188289
|
+
};
|
|
187103
188290
|
export type MutationGravity_DeleteViewArgs = {
|
|
187104
188291
|
cloudId: Scalars['ID']['input'];
|
|
187105
188292
|
viewId: Scalars['ID']['input'];
|
|
@@ -187136,10 +188323,18 @@ export type MutationGravity_UpdateDeliverySettingsArgs = {
|
|
|
187136
188323
|
cloudId: Scalars['ID']['input'];
|
|
187137
188324
|
input: GravityUpdateDeliverySettingsInput;
|
|
187138
188325
|
};
|
|
188326
|
+
export type MutationGravity_UpdateDeliveryTableSortArgs = {
|
|
188327
|
+
cloudId: Scalars['ID']['input'];
|
|
188328
|
+
input: GravityUpdateDeliveryTableSortInput;
|
|
188329
|
+
};
|
|
187139
188330
|
export type MutationGravity_UpdateDraftContentArgs = {
|
|
187140
188331
|
cloudId: Scalars['ID']['input'];
|
|
187141
188332
|
input: GravityUpdateDraftContentInput;
|
|
187142
188333
|
};
|
|
188334
|
+
export type MutationGravity_UpdateSectionArgs = {
|
|
188335
|
+
cloudId: Scalars['ID']['input'];
|
|
188336
|
+
input: GravityUpdateSectionInput;
|
|
188337
|
+
};
|
|
187143
188338
|
export type MutationGravity_UpdateViewArgs = {
|
|
187144
188339
|
cloudId: Scalars['ID']['input'];
|
|
187145
188340
|
input: JpdUpdateViewInput;
|
|
@@ -187999,6 +189194,9 @@ export type MutationKitsune_CreateSnippetArgs = {
|
|
|
187999
189194
|
export type MutationKitsune_CreateSnippetV2Args = {
|
|
188000
189195
|
input: KitsuneCreateSnippetInput;
|
|
188001
189196
|
};
|
|
189197
|
+
export type MutationKitsune_CreateSnippetsArgs = {
|
|
189198
|
+
input: KitsuneCreateSnippetsInput;
|
|
189199
|
+
};
|
|
188002
189200
|
export type MutationKitsune_CreateSpaceArgs = {
|
|
188003
189201
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
188004
189202
|
name: Scalars['String']['input'];
|
|
@@ -188737,6 +189935,9 @@ export type MutationProjects_EditCommentArgs = {
|
|
|
188737
189935
|
export type MutationProjects_EditDecisionArgs = {
|
|
188738
189936
|
input: TownsquareProjectsEditDecisionInput;
|
|
188739
189937
|
};
|
|
189938
|
+
export type MutationProjects_EditDraftUpdateArgs = {
|
|
189939
|
+
input: TownsquareProjectsEditDraftUpdateInput;
|
|
189940
|
+
};
|
|
188740
189941
|
export type MutationProjects_EditDropdownCustomFieldArgs = {
|
|
188741
189942
|
input: TownsquareProjectsEditDropdownCustomFieldInput;
|
|
188742
189943
|
};
|
|
@@ -193743,6 +194944,8 @@ export type Query = {
|
|
|
193743
194944
|
admin_identityProviderDirectorySamlConfiguration?: Maybe<AdminSamlConfiguration>;
|
|
193744
194945
|
admin_invitePolicies?: Maybe<AdminInvitePolicyConnection>;
|
|
193745
194946
|
admin_licenseUsage?: Maybe<AdminLicenseDataConnection>;
|
|
194947
|
+
admin_oauthClients?: Maybe<AdminOAuthClientConnection>;
|
|
194948
|
+
admin_oauthScopes?: Maybe<AdminOAuthScopeConnection>;
|
|
193746
194949
|
admin_org?: Maybe<AdminOrganization>;
|
|
193747
194950
|
admin_orgDetails?: Maybe<AdminOrgDetails>;
|
|
193748
194951
|
admin_orgPolicies?: Maybe<AdminOrgPolicyConnection>;
|
|
@@ -194497,6 +195700,7 @@ export type Query = {
|
|
|
194497
195700
|
csm_templateFormById?: Maybe<CustomerServiceTemplateFormQueryResult>;
|
|
194498
195701
|
csm_templateForms?: Maybe<CustomerServiceTemplateFormConnection>;
|
|
194499
195702
|
csm_workItemAiSummary?: Maybe<CustomerServiceWorkItemAiSummaryQueryResult>;
|
|
195703
|
+
csm_workItemSupportSite?: Maybe<CustomerServiceWorkItemSupportSiteQueryResult>;
|
|
194500
195704
|
currentConfluenceUser?: Maybe<CurrentConfluenceUser>;
|
|
194501
195705
|
customer360_customer?: Maybe<Customer360Customer>;
|
|
194502
195706
|
customer360_customersById?: Maybe<Array<Maybe<Customer360Customer>>>;
|
|
@@ -194701,7 +195905,11 @@ export type Query = {
|
|
|
194701
195905
|
graphInference_inferenceQualityMetrics?: Maybe<GraphInferenceInferenceQualityMetricsResponse>;
|
|
194702
195906
|
graphInference_inferredProjectMe?: Maybe<GraphInferenceInferredProjectMeResponse>;
|
|
194703
195907
|
graphInference_inferredProjectSummaries?: Maybe<GraphInferenceInferredProjectSummariesResponse>;
|
|
195908
|
+
graphInference_inlineEvalContract?: Maybe<GraphInferenceInlineEvalContractResponse>;
|
|
195909
|
+
graphInference_inlineEvalRun?: Maybe<GraphInferenceInlineEvalRunResponse>;
|
|
194704
195910
|
graphInference_insights?: Maybe<GraphInferenceInsightsResponse>;
|
|
195911
|
+
graphInference_reviewPack?: Maybe<GraphInferenceReviewPackDetail>;
|
|
195912
|
+
graphInference_reviewPacks?: Maybe<Array<GraphInferenceReviewPackSummary>>;
|
|
194705
195913
|
graphIntegration_availableTwgCapabilityContainers?: Maybe<Array<Maybe<GraphIntegrationTwgCapabilityContainerMeta>>>;
|
|
194706
195914
|
graphIntegration_cloneCandidateSkill?: Maybe<GraphIntegrationSkill>;
|
|
194707
195915
|
graphIntegration_componentDirectoryDimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
|
|
@@ -194961,6 +196169,8 @@ export type Query = {
|
|
|
194961
196169
|
graphStoreV2_atlassianUserReportedJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReportedJiraWorkItemInverseConnection>;
|
|
194962
196170
|
graphStoreV2_atlassianUserReportedJsmIncident?: Maybe<GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentConnection>;
|
|
194963
196171
|
graphStoreV2_atlassianUserReportedJsmIncidentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentInverseConnection>;
|
|
196172
|
+
graphStoreV2_atlassianUserRespondsToJiraWorkItem?: Maybe<GraphStoreV2SimplifiedAtlassianUserRespondsToJiraWorkItemConnection>;
|
|
196173
|
+
graphStoreV2_atlassianUserRespondsToJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserRespondsToJiraWorkItemInverseConnection>;
|
|
194964
196174
|
graphStoreV2_atlassianUserReviewedConfluenceApprovalInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection>;
|
|
194965
196175
|
graphStoreV2_atlassianUserSnapshottedConfluencePage?: Maybe<GraphStoreV2SimplifiedAtlassianUserSnapshottedConfluencePageConnection>;
|
|
194966
196176
|
graphStoreV2_atlassianUserSnapshottedConfluencePageInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserSnapshottedConfluencePageInverseConnection>;
|
|
@@ -195453,6 +196663,8 @@ export type Query = {
|
|
|
195453
196663
|
graphStoreV2_inferredProjectHasRelatedEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectHasRelatedEntityInverseConnection>;
|
|
195454
196664
|
graphStoreV2_inferredProjectLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityConnection>;
|
|
195455
196665
|
graphStoreV2_inferredProjectLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityInverseConnection>;
|
|
196666
|
+
graphStoreV2_inferredProjectPromotedToAtlassianProject?: Maybe<GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectConnection>;
|
|
196667
|
+
graphStoreV2_inferredProjectPromotedToAtlassianProjectInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectInverseConnection>;
|
|
195456
196668
|
graphStoreV2_inferredTeamCollaboratesOnInferredProject?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectConnection>;
|
|
195457
196669
|
graphStoreV2_inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
|
|
195458
196670
|
graphStoreV2_inferredTeamLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredTeamLinksEntityConnection>;
|
|
@@ -195569,8 +196781,12 @@ export type Query = {
|
|
|
195569
196781
|
graphStoreV2_jiraWorkItemHasJiraPriorityInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJiraPriorityInverseConnection>;
|
|
195570
196782
|
graphStoreV2_jiraWorkItemHasJiraWorkItemComment?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentConnection>;
|
|
195571
196783
|
graphStoreV2_jiraWorkItemHasJiraWorkItemCommentInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentInverseConnection>;
|
|
196784
|
+
graphStoreV2_jiraWorkItemHasJsmIncidentSeverity?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJsmIncidentSeverityConnection>;
|
|
196785
|
+
graphStoreV2_jiraWorkItemHasJsmIncidentSeverityInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJsmIncidentSeverityInverseConnection>;
|
|
195572
196786
|
graphStoreV2_jiraWorkItemHasLinkedKnowledgeBaseEntity?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityConnection>;
|
|
195573
196787
|
graphStoreV2_jiraWorkItemHasLinkedKnowledgeBaseEntityInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityInverseConnection>;
|
|
196788
|
+
graphStoreV2_jiraWorkItemImpactsCompassComponent?: Maybe<GraphStoreV2SimplifiedJiraWorkItemImpactsCompassComponentConnection>;
|
|
196789
|
+
graphStoreV2_jiraWorkItemImpactsCompassComponentInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemImpactsCompassComponentInverseConnection>;
|
|
195574
196790
|
graphStoreV2_jiraWorkItemLinksAssetsObject?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectConnection>;
|
|
195575
196791
|
graphStoreV2_jiraWorkItemLinksAssetsObjectInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectInverseConnection>;
|
|
195576
196792
|
graphStoreV2_jiraWorkItemLinksConfluenceWhiteboard?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksConfluenceWhiteboardConnection>;
|
|
@@ -195796,6 +197012,8 @@ export type Query = {
|
|
|
195796
197012
|
graphStore_atlassianUserOwnsExternalTestStatusInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInverseConnection>;
|
|
195797
197013
|
graphStore_atlassianUserOwnsInferredProject?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectConnection>;
|
|
195798
197014
|
graphStore_atlassianUserOwnsInferredProjectInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseConnection>;
|
|
197015
|
+
graphStore_atlassianUserRespondsToJiraWorkItem?: Maybe<GraphStoreSimplifiedAtlassianUserRespondsToJiraWorkItemConnection>;
|
|
197016
|
+
graphStore_atlassianUserRespondsToJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedAtlassianUserRespondsToJiraWorkItemInverseConnection>;
|
|
195799
197017
|
graphStore_atlassianUserReviewedConfluenceApprovalInverse?: Maybe<GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection>;
|
|
195800
197018
|
graphStore_atlassianUserTriggeredAtlassianAgentSessionInverse?: Maybe<GraphStoreSimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseConnection>;
|
|
195801
197019
|
graphStore_atlassianUserUpdatedExternalCampaign?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCampaignConnection>;
|
|
@@ -196109,6 +197327,8 @@ export type Query = {
|
|
|
196109
197327
|
graphStore_inferredProjectHasRelatedEntityInverse?: Maybe<GraphStoreSimplifiedInferredProjectHasRelatedEntityInverseConnection>;
|
|
196110
197328
|
graphStore_inferredProjectLinksEntity?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityConnection>;
|
|
196111
197329
|
graphStore_inferredProjectLinksEntityInverse?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityInverseConnection>;
|
|
197330
|
+
graphStore_inferredProjectPromotedToAtlassianProject?: Maybe<GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectConnection>;
|
|
197331
|
+
graphStore_inferredProjectPromotedToAtlassianProjectInverse?: Maybe<GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectInverseConnection>;
|
|
196112
197332
|
graphStore_inferredTeamCollaboratesOnInferredProject?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectConnection>;
|
|
196113
197333
|
graphStore_inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
|
|
196114
197334
|
graphStore_inferredTeamLinksEntity?: Maybe<GraphStoreSimplifiedInferredTeamLinksEntityConnection>;
|
|
@@ -196223,6 +197443,8 @@ export type Query = {
|
|
|
196223
197443
|
graphStore_jiraSpaceHasLinkedKnowledgeBaseEntityInverse?: Maybe<GraphStoreSimplifiedJiraSpaceHasLinkedKnowledgeBaseEntityInverseConnection>;
|
|
196224
197444
|
graphStore_jiraWorkItemCommentHasChildComment?: Maybe<GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentConnection>;
|
|
196225
197445
|
graphStore_jiraWorkItemCommentHasChildCommentInverse?: Maybe<GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentInverseConnection>;
|
|
197446
|
+
graphStore_jiraWorkItemHasJsmIncidentSeverity?: Maybe<GraphStoreSimplifiedJiraWorkItemHasJsmIncidentSeverityConnection>;
|
|
197447
|
+
graphStore_jiraWorkItemHasJsmIncidentSeverityInverse?: Maybe<GraphStoreSimplifiedJiraWorkItemHasJsmIncidentSeverityInverseConnection>;
|
|
196226
197448
|
graphStore_jiraWorkItemLinksAssetObject?: Maybe<GraphStoreSimplifiedJiraWorkItemLinksAssetObjectConnection>;
|
|
196227
197449
|
graphStore_jiraWorkItemLinksAssetObjectInverse?: Maybe<GraphStoreSimplifiedJiraWorkItemLinksAssetObjectInverseConnection>;
|
|
196228
197450
|
graphStore_jsmProjectAssociatedService?: Maybe<GraphStoreSimplifiedJsmProjectAssociatedServiceConnection>;
|
|
@@ -196908,7 +198130,6 @@ export type Query = {
|
|
|
196908
198130
|
gravity_draft?: Maybe<GravityDraft>;
|
|
196909
198131
|
gravity_drafts?: Maybe<Array<GravityDraft>>;
|
|
196910
198132
|
gravity_exportViewAsTemplate?: Maybe<GravityExportViewAsTemplateResult>;
|
|
196911
|
-
gravity_importIdeas: GravityImportIdeasResult;
|
|
196912
198133
|
gravity_matchDelivery?: Maybe<GravityDeliveryMatchingResult>;
|
|
196913
198134
|
gravity_onViewArrangementChanged?: Maybe<GravityViewArrangementChangedEvent>;
|
|
196914
198135
|
gravity_reactions?: Maybe<GravityReactionsResult>;
|
|
@@ -197040,6 +198261,7 @@ export type Query = {
|
|
|
197040
198261
|
jira_subtaskCreationFields?: Maybe<JiraIssueCreateFieldsResult>;
|
|
197041
198262
|
jira_subtaskCreationLayout?: Maybe<JiraIssueCreateLayoutResult>;
|
|
197042
198263
|
jira_subtaskCreationLayoutWithML?: Maybe<JiraIssueCreateLayoutResult>;
|
|
198264
|
+
jira_summaryAgentSetupTile?: Maybe<JiraSummaryAgentSetupTile>;
|
|
197043
198265
|
jira_userSegRedirectAdvice?: Maybe<JiraUserSegRedirectAdvice>;
|
|
197044
198266
|
jira_versionsForProjectByKey?: Maybe<JiraVersionConnection>;
|
|
197045
198267
|
jira_view?: Maybe<JiraViewResult>;
|
|
@@ -197131,6 +198353,7 @@ export type Query = {
|
|
|
197131
198353
|
kitsune_snippets?: Maybe<Array<Maybe<KitsuneSnippet>>>;
|
|
197132
198354
|
kitsune_spaces?: Maybe<Array<Maybe<KitsuneSpace>>>;
|
|
197133
198355
|
kitsune_spacesForWorkspace?: Maybe<KitsuneSpaceConnection>;
|
|
198356
|
+
kitsune_starredSpacesForWorkspace?: Maybe<KitsuneSpaceConnection>;
|
|
197134
198357
|
kitsune_suggestInsights?: Maybe<Array<KitsuneInsightSuggestion>>;
|
|
197135
198358
|
kitsune_views?: Maybe<Array<Maybe<KitsuneView>>>;
|
|
197136
198359
|
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
@@ -197588,6 +198811,8 @@ export type Query = {
|
|
|
197588
198811
|
supportInquiry_channelsIdentityHash?: Maybe<Scalars['String']['output']>;
|
|
197589
198812
|
supportInquiry_channelsIdentityHashByClientName?: Maybe<Scalars['String']['output']>;
|
|
197590
198813
|
supportInquiry_userContext?: Maybe<SupportInquiryUserContext>;
|
|
198814
|
+
surveys_categories?: Maybe<SurveysCategoriesResult>;
|
|
198815
|
+
surveys_survey?: Maybe<SurveysDetailsResult>;
|
|
197591
198816
|
surveys_surveysByProject?: Maybe<SurveysListResult>;
|
|
197592
198817
|
tags_getAssignedLabels?: Maybe<Array<TagsAssignedLabel>>;
|
|
197593
198818
|
tags_getLabelAssignments?: Maybe<Array<TagsLabelAssignment>>;
|
|
@@ -197609,6 +198834,7 @@ export type Query = {
|
|
|
197609
198834
|
teamworkGraph_userDirectReports?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
197610
198835
|
teamworkGraph_userManager?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
197611
198836
|
teamworkGraph_userReportChain?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
198837
|
+
teamworkGraph_userReportChainV2?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
197612
198838
|
teamworkGraph_userTaggedIn?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
197613
198839
|
teamworkGraph_userTeams?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
197614
198840
|
teamworkGraph_userTopRecentMentioners?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
@@ -197787,9 +199013,9 @@ export type QueryAdmin_AuditLogUsersArgs = {
|
|
|
197787
199013
|
};
|
|
197788
199014
|
export type QueryAdmin_BreachingConnectionsForUnitArgs = {
|
|
197789
199015
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
199016
|
+
filter?: InputMaybe<AdminBreachingConnectionFilter>;
|
|
197790
199017
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
197791
199018
|
orgId: Scalars['ID']['input'];
|
|
197792
|
-
status?: InputMaybe<AdminBreachingConnectionStatus>;
|
|
197793
199019
|
unitId: Scalars['ID']['input'];
|
|
197794
199020
|
};
|
|
197795
199021
|
export type QueryAdmin_CheckLicensesCapacityArgs = {
|
|
@@ -197901,6 +199127,20 @@ export type QueryAdmin_LicenseUsageArgs = {
|
|
|
197901
199127
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
197902
199128
|
orgId: Scalars['ID']['input'];
|
|
197903
199129
|
};
|
|
199130
|
+
export type QueryAdmin_OauthClientsArgs = {
|
|
199131
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
199132
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
199133
|
+
filter?: InputMaybe<AdminOAuthClientFilter>;
|
|
199134
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
199135
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
199136
|
+
orgId: Scalars['ID']['input'];
|
|
199137
|
+
sortBy?: InputMaybe<AdminOAuthClientSortInput>;
|
|
199138
|
+
};
|
|
199139
|
+
export type QueryAdmin_OauthScopesArgs = {
|
|
199140
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
199141
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
199142
|
+
orgId: Scalars['ID']['input'];
|
|
199143
|
+
};
|
|
197904
199144
|
export type QueryAdmin_OrgArgs = {
|
|
197905
199145
|
id: Scalars['ID']['input'];
|
|
197906
199146
|
};
|
|
@@ -201609,6 +202849,10 @@ export type QueryCsm_TemplateFormsArgs = {
|
|
|
201609
202849
|
export type QueryCsm_WorkItemAiSummaryArgs = {
|
|
201610
202850
|
workItemId: Scalars['ID']['input'];
|
|
201611
202851
|
};
|
|
202852
|
+
export type QueryCsm_WorkItemSupportSiteArgs = {
|
|
202853
|
+
cloudId: Scalars['ID']['input'];
|
|
202854
|
+
workItemKey: Scalars['String']['input'];
|
|
202855
|
+
};
|
|
201612
202856
|
export type QueryCustomer360_CustomerArgs = {
|
|
201613
202857
|
domain: Scalars['String']['input'];
|
|
201614
202858
|
};
|
|
@@ -202445,9 +203689,21 @@ export type QueryGraphInference_InferredProjectSummariesArgs = {
|
|
|
202445
203689
|
firstEntities?: InputMaybe<Scalars['Int']['input']>;
|
|
202446
203690
|
updatedAfter?: InputMaybe<Scalars['DateTime']['input']>;
|
|
202447
203691
|
};
|
|
203692
|
+
export type QueryGraphInference_InlineEvalContractArgs = {
|
|
203693
|
+
input: GraphInferenceInlineEvalContractInput;
|
|
203694
|
+
};
|
|
203695
|
+
export type QueryGraphInference_InlineEvalRunArgs = {
|
|
203696
|
+
runId: Scalars['ID']['input'];
|
|
203697
|
+
};
|
|
202448
203698
|
export type QueryGraphInference_InsightsArgs = {
|
|
202449
203699
|
input: GraphInferenceTargetInsightsInput;
|
|
202450
203700
|
};
|
|
203701
|
+
export type QueryGraphInference_ReviewPackArgs = {
|
|
203702
|
+
id: Scalars['ID']['input'];
|
|
203703
|
+
};
|
|
203704
|
+
export type QueryGraphInference_ReviewPacksArgs = {
|
|
203705
|
+
first?: Scalars['Int']['input'];
|
|
203706
|
+
};
|
|
202451
203707
|
export type QueryGraphIntegration_AvailableTwgCapabilityContainersArgs = {
|
|
202452
203708
|
contextAri: Scalars['ID']['input'];
|
|
202453
203709
|
includeEnabledToolCount?: Scalars['Boolean']['input'];
|
|
@@ -202467,6 +203723,7 @@ export type QueryGraphIntegration_ComponentDirectoryItemsArgs = {
|
|
|
202467
203723
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
202468
203724
|
authTypes?: InputMaybe<Array<GraphIntegrationDirectoryAuthType>>;
|
|
202469
203725
|
cloudId: Scalars['ID']['input'];
|
|
203726
|
+
contextAri?: InputMaybe<Scalars['ID']['input']>;
|
|
202470
203727
|
dimensionIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
202471
203728
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
202472
203729
|
relevantFor?: InputMaybe<Array<GraphIntegrationDirectoryItemType>>;
|
|
@@ -204181,6 +205438,20 @@ export type QueryGraphStoreV2_AtlassianUserReportedJsmIncidentInverseArgs = {
|
|
|
204181
205438
|
id: Scalars['ID']['input'];
|
|
204182
205439
|
sort?: InputMaybe<GraphStoreV2AtlassianUserReportedJsmIncidentSortInput>;
|
|
204183
205440
|
};
|
|
205441
|
+
export type QueryGraphStoreV2_AtlassianUserRespondsToJiraWorkItemArgs = {
|
|
205442
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
205443
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
205444
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
205445
|
+
id: Scalars['ID']['input'];
|
|
205446
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserRespondsToJiraWorkItemSortInput>;
|
|
205447
|
+
};
|
|
205448
|
+
export type QueryGraphStoreV2_AtlassianUserRespondsToJiraWorkItemInverseArgs = {
|
|
205449
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
205450
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
205451
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
205452
|
+
id: Scalars['ID']['input'];
|
|
205453
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserRespondsToJiraWorkItemSortInput>;
|
|
205454
|
+
};
|
|
204184
205455
|
export type QueryGraphStoreV2_AtlassianUserReviewedConfluenceApprovalInverseArgs = {
|
|
204185
205456
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
204186
205457
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -207632,6 +208903,20 @@ export type QueryGraphStoreV2_InferredProjectLinksEntityInverseArgs = {
|
|
|
207632
208903
|
id: Scalars['ID']['input'];
|
|
207633
208904
|
sort?: InputMaybe<GraphStoreV2InferredProjectLinksEntitySortInput>;
|
|
207634
208905
|
};
|
|
208906
|
+
export type QueryGraphStoreV2_InferredProjectPromotedToAtlassianProjectArgs = {
|
|
208907
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
208908
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
208909
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
208910
|
+
id: Scalars['ID']['input'];
|
|
208911
|
+
sort?: InputMaybe<GraphStoreV2InferredProjectPromotedToAtlassianProjectSortInput>;
|
|
208912
|
+
};
|
|
208913
|
+
export type QueryGraphStoreV2_InferredProjectPromotedToAtlassianProjectInverseArgs = {
|
|
208914
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
208915
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
208916
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
208917
|
+
id: Scalars['ID']['input'];
|
|
208918
|
+
sort?: InputMaybe<GraphStoreV2InferredProjectPromotedToAtlassianProjectSortInput>;
|
|
208919
|
+
};
|
|
207635
208920
|
export type QueryGraphStoreV2_InferredTeamCollaboratesOnInferredProjectArgs = {
|
|
207636
208921
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
207637
208922
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -208476,6 +209761,20 @@ export type QueryGraphStoreV2_JiraWorkItemHasJiraWorkItemCommentInverseArgs = {
|
|
|
208476
209761
|
id: Scalars['ID']['input'];
|
|
208477
209762
|
sort?: InputMaybe<GraphStoreV2JiraWorkItemHasJiraWorkItemCommentSortInput>;
|
|
208478
209763
|
};
|
|
209764
|
+
export type QueryGraphStoreV2_JiraWorkItemHasJsmIncidentSeverityArgs = {
|
|
209765
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
209766
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
209767
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
209768
|
+
id: Scalars['ID']['input'];
|
|
209769
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemHasJsmIncidentSeveritySortInput>;
|
|
209770
|
+
};
|
|
209771
|
+
export type QueryGraphStoreV2_JiraWorkItemHasJsmIncidentSeverityInverseArgs = {
|
|
209772
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
209773
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
209774
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
209775
|
+
id: Scalars['ID']['input'];
|
|
209776
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemHasJsmIncidentSeveritySortInput>;
|
|
209777
|
+
};
|
|
208479
209778
|
export type QueryGraphStoreV2_JiraWorkItemHasLinkedKnowledgeBaseEntityArgs = {
|
|
208480
209779
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
208481
209780
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -208490,6 +209789,20 @@ export type QueryGraphStoreV2_JiraWorkItemHasLinkedKnowledgeBaseEntityInverseArg
|
|
|
208490
209789
|
id: Scalars['ID']['input'];
|
|
208491
209790
|
sort?: InputMaybe<GraphStoreV2JiraWorkItemHasLinkedKnowledgeBaseEntitySortInput>;
|
|
208492
209791
|
};
|
|
209792
|
+
export type QueryGraphStoreV2_JiraWorkItemImpactsCompassComponentArgs = {
|
|
209793
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
209794
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
209795
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
209796
|
+
id: Scalars['ID']['input'];
|
|
209797
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemImpactsCompassComponentSortInput>;
|
|
209798
|
+
};
|
|
209799
|
+
export type QueryGraphStoreV2_JiraWorkItemImpactsCompassComponentInverseArgs = {
|
|
209800
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
209801
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
209802
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
209803
|
+
id: Scalars['ID']['input'];
|
|
209804
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemImpactsCompassComponentSortInput>;
|
|
209805
|
+
};
|
|
208493
209806
|
export type QueryGraphStoreV2_JiraWorkItemLinksAssetsObjectArgs = {
|
|
208494
209807
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
208495
209808
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -210190,6 +211503,22 @@ export type QueryGraphStore_AtlassianUserOwnsInferredProjectInverseArgs = {
|
|
|
210190
211503
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
210191
211504
|
sort?: InputMaybe<GraphStoreAtlassianUserOwnsInferredProjectSortInput>;
|
|
210192
211505
|
};
|
|
211506
|
+
export type QueryGraphStore_AtlassianUserRespondsToJiraWorkItemArgs = {
|
|
211507
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
211508
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
211509
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
211510
|
+
id: Scalars['ID']['input'];
|
|
211511
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
211512
|
+
sort?: InputMaybe<GraphStoreAtlassianUserRespondsToJiraWorkItemSortInput>;
|
|
211513
|
+
};
|
|
211514
|
+
export type QueryGraphStore_AtlassianUserRespondsToJiraWorkItemInverseArgs = {
|
|
211515
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
211516
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
211517
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
211518
|
+
id: Scalars['ID']['input'];
|
|
211519
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
211520
|
+
sort?: InputMaybe<GraphStoreAtlassianUserRespondsToJiraWorkItemSortInput>;
|
|
211521
|
+
};
|
|
210193
211522
|
export type QueryGraphStore_AtlassianUserReviewedConfluenceApprovalInverseArgs = {
|
|
210194
211523
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
210195
211524
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -212620,6 +213949,22 @@ export type QueryGraphStore_InferredProjectLinksEntityInverseArgs = {
|
|
|
212620
213949
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
212621
213950
|
sort?: InputMaybe<GraphStoreInferredProjectLinksEntitySortInput>;
|
|
212622
213951
|
};
|
|
213952
|
+
export type QueryGraphStore_InferredProjectPromotedToAtlassianProjectArgs = {
|
|
213953
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
213954
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
213955
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
213956
|
+
id: Scalars['ID']['input'];
|
|
213957
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
213958
|
+
sort?: InputMaybe<GraphStoreInferredProjectPromotedToAtlassianProjectSortInput>;
|
|
213959
|
+
};
|
|
213960
|
+
export type QueryGraphStore_InferredProjectPromotedToAtlassianProjectInverseArgs = {
|
|
213961
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
213962
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
213963
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
213964
|
+
id: Scalars['ID']['input'];
|
|
213965
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
213966
|
+
sort?: InputMaybe<GraphStoreInferredProjectPromotedToAtlassianProjectSortInput>;
|
|
213967
|
+
};
|
|
212623
213968
|
export type QueryGraphStore_InferredTeamCollaboratesOnInferredProjectArgs = {
|
|
212624
213969
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
212625
213970
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -213476,6 +214821,22 @@ export type QueryGraphStore_JiraWorkItemCommentHasChildCommentInverseArgs = {
|
|
|
213476
214821
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
213477
214822
|
sort?: InputMaybe<GraphStoreJiraWorkItemCommentHasChildCommentSortInput>;
|
|
213478
214823
|
};
|
|
214824
|
+
export type QueryGraphStore_JiraWorkItemHasJsmIncidentSeverityArgs = {
|
|
214825
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
214826
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
214827
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
214828
|
+
id: Scalars['ID']['input'];
|
|
214829
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
214830
|
+
sort?: InputMaybe<GraphStoreJiraWorkItemHasJsmIncidentSeveritySortInput>;
|
|
214831
|
+
};
|
|
214832
|
+
export type QueryGraphStore_JiraWorkItemHasJsmIncidentSeverityInverseArgs = {
|
|
214833
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
214834
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
214835
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
214836
|
+
id: Scalars['ID']['input'];
|
|
214837
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
214838
|
+
sort?: InputMaybe<GraphStoreJiraWorkItemHasJsmIncidentSeveritySortInput>;
|
|
214839
|
+
};
|
|
213479
214840
|
export type QueryGraphStore_JiraWorkItemLinksAssetObjectArgs = {
|
|
213480
214841
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
213481
214842
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -218764,10 +220125,6 @@ export type QueryGravity_ExportViewAsTemplateArgs = {
|
|
|
218764
220125
|
projectId: Scalars['ID']['input'];
|
|
218765
220126
|
viewId: Scalars['ID']['input'];
|
|
218766
220127
|
};
|
|
218767
|
-
export type QueryGravity_ImportIdeasArgs = {
|
|
218768
|
-
cloudId: Scalars['ID']['input'];
|
|
218769
|
-
input: GravityImportIdeasInput;
|
|
218770
|
-
};
|
|
218771
220128
|
export type QueryGravity_MatchDeliveryArgs = {
|
|
218772
220129
|
cloudId: Scalars['ID']['input'];
|
|
218773
220130
|
input: GravityMatchDeliveryInput;
|
|
@@ -219320,6 +220677,10 @@ export type QueryJira_SubtaskCreationLayoutWithMlArgs = {
|
|
|
219320
220677
|
parentId: JiraParentIdInput;
|
|
219321
220678
|
project?: InputMaybe<JiraProjectInput>;
|
|
219322
220679
|
};
|
|
220680
|
+
export type QueryJira_SummaryAgentSetupTileArgs = {
|
|
220681
|
+
cloudId: Scalars['ID']['input'];
|
|
220682
|
+
spaceKey: Scalars['String']['input'];
|
|
220683
|
+
};
|
|
219323
220684
|
export type QueryJira_UserSegRedirectAdviceArgs = {
|
|
219324
220685
|
accountId: Scalars['ID']['input'];
|
|
219325
220686
|
cloudId: Scalars['ID']['input'];
|
|
@@ -219733,6 +221094,11 @@ export type QueryKitsune_SpacesForWorkspaceArgs = {
|
|
|
219733
221094
|
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
219734
221095
|
workspaceAri: Scalars['ID']['input'];
|
|
219735
221096
|
};
|
|
221097
|
+
export type QueryKitsune_StarredSpacesForWorkspaceArgs = {
|
|
221098
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
221099
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
221100
|
+
workspaceAri: Scalars['ID']['input'];
|
|
221101
|
+
};
|
|
219736
221102
|
export type QueryKitsune_SuggestInsightsArgs = {
|
|
219737
221103
|
embeddingType?: InputMaybe<Scalars['String']['input']>;
|
|
219738
221104
|
input?: InputMaybe<KitsuneSearchInsightsInput>;
|
|
@@ -221517,6 +222883,14 @@ export type QuerySuggestedSpacesArgs = {
|
|
|
221517
222883
|
export type QuerySupportInquiry_ChannelsIdentityHashByClientNameArgs = {
|
|
221518
222884
|
request?: InputMaybe<SupportInquiryChannelPlatformIdentityHashRequest>;
|
|
221519
222885
|
};
|
|
222886
|
+
export type QuerySurveys_CategoriesArgs = {
|
|
222887
|
+
jiraProjectARI: Scalars['ID']['input'];
|
|
222888
|
+
usedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
222889
|
+
};
|
|
222890
|
+
export type QuerySurveys_SurveyArgs = {
|
|
222891
|
+
jiraProjectARI: Scalars['ID']['input'];
|
|
222892
|
+
surveyId: Scalars['ID']['input'];
|
|
222893
|
+
};
|
|
221520
222894
|
export type QuerySurveys_SurveysByProjectArgs = {
|
|
221521
222895
|
jiraProjectARI: Scalars['ID']['input'];
|
|
221522
222896
|
};
|
|
@@ -221607,6 +222981,9 @@ export type QueryTeamworkGraph_UserManagerArgs = {
|
|
|
221607
222981
|
export type QueryTeamworkGraph_UserReportChainArgs = {
|
|
221608
222982
|
userId: Scalars['ID']['input'];
|
|
221609
222983
|
};
|
|
222984
|
+
export type QueryTeamworkGraph_UserReportChainV2Args = {
|
|
222985
|
+
userId: Scalars['ID']['input'];
|
|
222986
|
+
};
|
|
221610
222987
|
export type QueryTeamworkGraph_UserTaggedInArgs = {
|
|
221611
222988
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
221612
222989
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -222673,6 +224050,7 @@ export type RadarSkillAssignmentMetadata = {
|
|
|
222673
224050
|
classificationType?: Maybe<RadarSkillClassificationType>;
|
|
222674
224051
|
reasoning?: Maybe<Scalars['String']['output']>;
|
|
222675
224052
|
skillId: Scalars['ID']['output'];
|
|
224053
|
+
sources?: Maybe<Array<RadarSkillSource>>;
|
|
222676
224054
|
verificationStatus?: Maybe<RadarSkillVerificationStatus>;
|
|
222677
224055
|
verifiedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
222678
224056
|
verifiedByAaid?: Maybe<Scalars['ID']['output']>;
|
|
@@ -222699,6 +224077,12 @@ export type RadarSkillMappingStatusUpdateInput = {
|
|
|
222699
224077
|
status: RadarSkillVerificationStatus;
|
|
222700
224078
|
workerSkill: Scalars['ID']['input'];
|
|
222701
224079
|
};
|
|
224080
|
+
export type RadarSkillSource = {
|
|
224081
|
+
__typename?: 'RadarSkillSource';
|
|
224082
|
+
source?: Maybe<RadarSkillSourceObject>;
|
|
224083
|
+
sourceId: Scalars['ID']['output'];
|
|
224084
|
+
};
|
|
224085
|
+
export type RadarSkillSourceObject = ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceWhiteboard | ExternalComment | ExternalCommit | ExternalPullRequest | JiraIssue | TownsquareProject;
|
|
222702
224086
|
export declare enum RadarSkillVerificationStatus {
|
|
222703
224087
|
Declined = "DECLINED",
|
|
222704
224088
|
Unverified = "UNVERIFIED",
|
|
@@ -222980,6 +224364,7 @@ export type RadarWorkerSkill = Node & {
|
|
|
222980
224364
|
id: Scalars['ID']['output'];
|
|
222981
224365
|
skill?: Maybe<RadarSkill>;
|
|
222982
224366
|
skillId: Scalars['ID']['output'];
|
|
224367
|
+
sources?: Maybe<Array<RadarSkillSource>>;
|
|
222983
224368
|
verificationStatus: RadarSkillVerificationStatus;
|
|
222984
224369
|
verifiedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
222985
224370
|
workerId: Scalars['ID']['output'];
|
|
@@ -224242,6 +225627,7 @@ export type RoleAssignmentPrincipalInput = {
|
|
|
224242
225627
|
};
|
|
224243
225628
|
export declare enum RoleAssignmentPrincipalType {
|
|
224244
225629
|
AccessClass = "ACCESS_CLASS",
|
|
225630
|
+
Agent = "AGENT",
|
|
224245
225631
|
App = "APP",
|
|
224246
225632
|
Group = "GROUP",
|
|
224247
225633
|
User = "USER"
|
|
@@ -233999,6 +235385,11 @@ export declare enum SurveysAccess {
|
|
|
233999
235385
|
ViewEditRestricted = "VIEW_EDIT_RESTRICTED",
|
|
234000
235386
|
ViewOpenEditRestricted = "VIEW_OPEN_EDIT_RESTRICTED"
|
|
234001
235387
|
}
|
|
235388
|
+
export type SurveysCategoriesResponse = {
|
|
235389
|
+
__typename?: 'SurveysCategoriesResponse';
|
|
235390
|
+
categories: Array<Scalars['String']['output']>;
|
|
235391
|
+
};
|
|
235392
|
+
export type SurveysCategoriesResult = SurveysCategoriesResponse | SurveysQueryError;
|
|
234002
235393
|
export type SurveysDetailsResponse = {
|
|
234003
235394
|
__typename?: 'SurveysDetailsResponse';
|
|
234004
235395
|
captureEmail: Scalars['Boolean']['output'];
|
|
@@ -234024,6 +235415,7 @@ export type SurveysDetailsResponse = {
|
|
|
234024
235415
|
uniqueResponses: Scalars['Boolean']['output'];
|
|
234025
235416
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
234026
235417
|
};
|
|
235418
|
+
export type SurveysDetailsResult = SurveysDetailsResponse | SurveysQueryError;
|
|
234027
235419
|
export declare enum SurveysEffectivePermissionLevel {
|
|
234028
235420
|
Edit = "EDIT",
|
|
234029
235421
|
None = "NONE",
|
|
@@ -235956,7 +237348,7 @@ export declare enum TownsquareAccessControlCapability {
|
|
|
235956
237348
|
Administer = "ADMINISTER",
|
|
235957
237349
|
Create = "CREATE"
|
|
235958
237350
|
}
|
|
235959
|
-
export type TownsquareAccessPrincipal = AppUser | AtlassianAccountUser | CustomerUser;
|
|
237351
|
+
export type TownsquareAccessPrincipal = AppUser | AtlassianAccountUser | CustomerUser | TeamV2;
|
|
235960
237352
|
export type TownsquareActivityChange = TownsquareEditorsAddedChange | TownsquareEditorsRemovedChange | TownsquareFollowersAddedChange | TownsquareFollowersRemovedChange | TownsquareGoalArchivedChange | TownsquareGoalCreatedChange | TownsquareGoalDescriptionMeasurementUpdatedChange | TownsquareGoalDescriptionUpdatedChange | TownsquareGoalDescriptionWhyUpdatedChange | TownsquareGoalOwnerUpdatedChange | TownsquareGoalProgressTypeChange | TownsquareGoalRenamedChange | TownsquareGoalRestoredChange | TownsquareMetricTargetCreatedChange | TownsquareMetricTargetDeletedChange | TownsquareMetricTargetPeriodsChange | TownsquareMetricTargetUpdatedChange | TownsquareMetricValueCreatedChange | TownsquareMetricValueDeletedChange | TownsquareMetricValueUpdatedChange | TownsquareStartDateAddedChange | TownsquareStartDateEditedChange | TownsquareTargetDateAddedChange | TownsquareTargetDateEditedChange | TownsquareUpdateDeletedChange;
|
|
235961
237353
|
export type TownsquareActivityItem = {
|
|
235962
237354
|
__typename?: 'TownsquareActivityItem';
|
|
@@ -237070,6 +238462,7 @@ export type TownsquareGoalUpdate = Node & {
|
|
|
237070
238462
|
ari: Scalars['String']['output'];
|
|
237071
238463
|
bundledUpdates?: Maybe<TownsquareGoalBundledUpdateConnection>;
|
|
237072
238464
|
comments?: Maybe<TownsquareCommentConnection>;
|
|
238465
|
+
connectedUpdates?: Maybe<TownsquareConnectedUpdates>;
|
|
237073
238466
|
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
237074
238467
|
creator?: Maybe<User>;
|
|
237075
238468
|
editDate?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -237401,6 +238794,7 @@ export type TownsquareGoalsCreateUpdateInput = {
|
|
|
237401
238794
|
goalId: Scalars['ID']['input'];
|
|
237402
238795
|
highlights?: InputMaybe<Array<InputMaybe<TownsquareUpdateHighlightInput>>>;
|
|
237403
238796
|
isBundledUpdate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
238797
|
+
isConnectedUpdate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
237404
238798
|
metricUpdate?: InputMaybe<Array<InputMaybe<TownsquareMetricUpdateInput>>>;
|
|
237405
238799
|
score?: InputMaybe<Scalars['Int']['input']>;
|
|
237406
238800
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -239352,6 +240746,16 @@ export type TownsquareProjectsEditDecisionPayload = {
|
|
|
239352
240746
|
errors?: Maybe<Array<MutationError>>;
|
|
239353
240747
|
success: Scalars['Boolean']['output'];
|
|
239354
240748
|
};
|
|
240749
|
+
export type TownsquareProjectsEditDraftUpdateInput = {
|
|
240750
|
+
draftId: Scalars['ID']['input'];
|
|
240751
|
+
values?: InputMaybe<TownsquareProjectsCreateUpdateInput>;
|
|
240752
|
+
};
|
|
240753
|
+
export type TownsquareProjectsEditDraftUpdatePayload = {
|
|
240754
|
+
__typename?: 'TownsquareProjectsEditDraftUpdatePayload';
|
|
240755
|
+
draftUpdate?: Maybe<TownsquareProjectDraftUpdate>;
|
|
240756
|
+
errors?: Maybe<Array<MutationError>>;
|
|
240757
|
+
success: Scalars['Boolean']['output'];
|
|
240758
|
+
};
|
|
239355
240759
|
export type TownsquareProjectsEditDropdownCustomFieldInput = {
|
|
239356
240760
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
239357
240761
|
projectId: Scalars['ID']['input'];
|
|
@@ -241903,6 +243307,7 @@ export type TrelloBoardViewer = {
|
|
|
241903
243307
|
email?: Maybe<TrelloBoardViewerEmail>;
|
|
241904
243308
|
lastSeenAt?: Maybe<Scalars['DateTime']['output']>;
|
|
241905
243309
|
showCompactMirrorCards?: Maybe<Scalars['Boolean']['output']>;
|
|
243310
|
+
showRefinementCommandCenter?: Maybe<Scalars['Boolean']['output']>;
|
|
241906
243311
|
sidebar?: Maybe<TrelloBoardViewerSidebar>;
|
|
241907
243312
|
starred: Scalars['Boolean']['output'];
|
|
241908
243313
|
subscribed?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -243171,6 +244576,21 @@ export type TrelloCreatePlannerCalendarEventPayload = Payload & {
|
|
|
243171
244576
|
plannerCalendarUpdated?: Maybe<TrelloPlannerCalendar>;
|
|
243172
244577
|
success: Scalars['Boolean']['output'];
|
|
243173
244578
|
};
|
|
244579
|
+
export type TrelloCreateVoiceCapturedCardsFailedCard = {
|
|
244580
|
+
__typename?: 'TrelloCreateVoiceCapturedCardsFailedCard';
|
|
244581
|
+
errors: Array<MutationError>;
|
|
244582
|
+
objectId: Scalars['ID']['output'];
|
|
244583
|
+
};
|
|
244584
|
+
export type TrelloCreateVoiceCapturedCardsInput = {
|
|
244585
|
+
sessionId: Scalars['ID']['input'];
|
|
244586
|
+
};
|
|
244587
|
+
export type TrelloCreateVoiceCapturedCardsPayload = Payload & {
|
|
244588
|
+
__typename?: 'TrelloCreateVoiceCapturedCardsPayload';
|
|
244589
|
+
cards?: Maybe<Array<TrelloBaseCard>>;
|
|
244590
|
+
errors?: Maybe<Array<MutationError>>;
|
|
244591
|
+
failedCards: Array<TrelloCreateVoiceCapturedCardsFailedCard>;
|
|
244592
|
+
success: Scalars['Boolean']['output'];
|
|
244593
|
+
};
|
|
243174
244594
|
export type TrelloCreateWorkspaceTagInput = {
|
|
243175
244595
|
name: Scalars['String']['input'];
|
|
243176
244596
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -243425,6 +244845,15 @@ export type TrelloDisableCardFrontCompleteTogglePayload = Payload & {
|
|
|
243425
244845
|
errors?: Maybe<Array<MutationError>>;
|
|
243426
244846
|
success: Scalars['Boolean']['output'];
|
|
243427
244847
|
};
|
|
244848
|
+
export type TrelloDismissRefinementCommandCenterInput = {
|
|
244849
|
+
boardId: Scalars['ID']['input'];
|
|
244850
|
+
};
|
|
244851
|
+
export type TrelloDismissRefinementCommandCenterPayload = Payload & {
|
|
244852
|
+
__typename?: 'TrelloDismissRefinementCommandCenterPayload';
|
|
244853
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
244854
|
+
errors?: Maybe<Array<MutationError>>;
|
|
244855
|
+
success: Scalars['Boolean']['output'];
|
|
244856
|
+
};
|
|
243428
244857
|
export type TrelloEcho = {
|
|
243429
244858
|
__typename?: 'TrelloEcho';
|
|
243430
244859
|
contents?: Maybe<Scalars['String']['output']>;
|
|
@@ -244733,6 +246162,7 @@ export type TrelloMutationApi = {
|
|
|
244733
246162
|
createOAuth2Client?: Maybe<TrelloCreateOAuth2ClientPayload>;
|
|
244734
246163
|
createOrUpdatePlannerCalendar?: Maybe<TrelloCreateOrUpdatePlannerCalendarPayload>;
|
|
244735
246164
|
createPlannerCalendarEvent?: Maybe<TrelloCreatePlannerCalendarEventPayload>;
|
|
246165
|
+
createVoiceCapturedCards?: Maybe<TrelloCreateVoiceCapturedCardsPayload>;
|
|
244736
246166
|
createWorkOverviewDashboard?: Maybe<TrelloWorkOverviewDashboardPayload>;
|
|
244737
246167
|
createWorkspaceTag?: Maybe<TrelloCreateWorkspaceTagPayload>;
|
|
244738
246168
|
deleteAiRule?: Maybe<TrelloDeleteAiRulePayload>;
|
|
@@ -244746,6 +246176,7 @@ export type TrelloMutationApi = {
|
|
|
244746
246176
|
deleteWorkspaceTag?: Maybe<TrelloDeleteWorkspaceTagPayload>;
|
|
244747
246177
|
disableBoardSelfJoin?: Maybe<TrelloDisableBoardSelfJoinPayload>;
|
|
244748
246178
|
disableCardFrontCompleteToggle?: Maybe<TrelloDisableCardFrontCompleteTogglePayload>;
|
|
246179
|
+
dismissRefinementCommandCenter?: Maybe<TrelloDismissRefinementCommandCenterPayload>;
|
|
244749
246180
|
editBoardWithAi?: Maybe<TrelloEditBoardWithAiPayload>;
|
|
244750
246181
|
editPlannerCalendarEvent?: Maybe<TrelloEditPlannerCalendarEventPayload>;
|
|
244751
246182
|
enableBoardSelfJoin?: Maybe<TrelloEnableBoardSelfJoinPayload>;
|
|
@@ -244774,6 +246205,7 @@ export type TrelloMutationApi = {
|
|
|
244774
246205
|
proposePlannerEvents?: Maybe<TrelloProposePlannerEventsPayload>;
|
|
244775
246206
|
refreshCardManifest?: Maybe<TrelloRefreshManifestPayload>;
|
|
244776
246207
|
rejectProposedEvents?: Maybe<TrelloRejectProposedEventsPayload>;
|
|
246208
|
+
rejectRecommendation?: Maybe<TrelloRejectRecommendationPayload>;
|
|
244777
246209
|
removeBoardStar?: Maybe<TrelloRemoveBoardStarPayload>;
|
|
244778
246210
|
removeCardFromPlannerCalendarEvent?: Maybe<TrelloRemoveCardFromPlannerCalendarEventPayload>;
|
|
244779
246211
|
removeLabelsFromCard?: Maybe<TrelloRemoveLabelsFromCardPayload>;
|
|
@@ -244981,6 +246413,9 @@ export type TrelloMutationApiCreateOrUpdatePlannerCalendarArgs = {
|
|
|
244981
246413
|
export type TrelloMutationApiCreatePlannerCalendarEventArgs = {
|
|
244982
246414
|
input: TrelloCreatePlannerCalendarEventInput;
|
|
244983
246415
|
};
|
|
246416
|
+
export type TrelloMutationApiCreateVoiceCapturedCardsArgs = {
|
|
246417
|
+
input: TrelloCreateVoiceCapturedCardsInput;
|
|
246418
|
+
};
|
|
244984
246419
|
export type TrelloMutationApiCreateWorkOverviewDashboardArgs = {
|
|
244985
246420
|
input: TrelloWorkOverviewDashboardInput;
|
|
244986
246421
|
};
|
|
@@ -245020,6 +246455,9 @@ export type TrelloMutationApiDisableBoardSelfJoinArgs = {
|
|
|
245020
246455
|
export type TrelloMutationApiDisableCardFrontCompleteToggleArgs = {
|
|
245021
246456
|
input: TrelloDisableCardFrontCompleteToggleInput;
|
|
245022
246457
|
};
|
|
246458
|
+
export type TrelloMutationApiDismissRefinementCommandCenterArgs = {
|
|
246459
|
+
input: TrelloDismissRefinementCommandCenterInput;
|
|
246460
|
+
};
|
|
245023
246461
|
export type TrelloMutationApiEditBoardWithAiArgs = {
|
|
245024
246462
|
input: TrelloEditBoardWithAiInput;
|
|
245025
246463
|
};
|
|
@@ -245101,6 +246539,9 @@ export type TrelloMutationApiRefreshCardManifestArgs = {
|
|
|
245101
246539
|
export type TrelloMutationApiRejectProposedEventsArgs = {
|
|
245102
246540
|
input: TrelloRejectProposedEventsInput;
|
|
245103
246541
|
};
|
|
246542
|
+
export type TrelloMutationApiRejectRecommendationArgs = {
|
|
246543
|
+
input: TrelloRejectRecommendationInput;
|
|
246544
|
+
};
|
|
245104
246545
|
export type TrelloMutationApiRemoveBoardStarArgs = {
|
|
245105
246546
|
input: TrelloRemoveBoardStarInput;
|
|
245106
246547
|
};
|
|
@@ -246294,6 +247735,7 @@ export type TrelloProviderCalendarInterface = {
|
|
|
246294
247735
|
};
|
|
246295
247736
|
export type TrelloQueryApi = {
|
|
246296
247737
|
__typename?: 'TrelloQueryApi';
|
|
247738
|
+
agentSession?: Maybe<TrelloAgentSession>;
|
|
246297
247739
|
aiPromptInterjectionContract?: Maybe<TrelloAiPromptInterjectionContract>;
|
|
246298
247740
|
aiPromptInterjectionOverrides?: Maybe<Array<TrelloAiPromptInterjectionOverride>>;
|
|
246299
247741
|
application?: Maybe<TrelloApplication>;
|
|
@@ -246343,6 +247785,9 @@ export type TrelloQueryApi = {
|
|
|
246343
247785
|
workspace?: Maybe<TrelloWorkspace>;
|
|
246344
247786
|
workspaceMultiboardView?: Maybe<TrelloWorkspaceMultiboard>;
|
|
246345
247787
|
};
|
|
247788
|
+
export type TrelloQueryApiAgentSessionArgs = {
|
|
247789
|
+
id: Scalars['ID']['input'];
|
|
247790
|
+
};
|
|
246346
247791
|
export type TrelloQueryApiApplicationArgs = {
|
|
246347
247792
|
id: Scalars['ID']['input'];
|
|
246348
247793
|
};
|
|
@@ -246565,6 +248010,14 @@ export type TrelloRecommendationOwner = {
|
|
|
246565
248010
|
id: Scalars['ID']['output'];
|
|
246566
248011
|
name?: Maybe<Scalars['String']['output']>;
|
|
246567
248012
|
};
|
|
248013
|
+
export type TrelloRecommendationResponse = {
|
|
248014
|
+
__typename?: 'TrelloRecommendationResponse';
|
|
248015
|
+
accepted: Scalars['Boolean']['output'];
|
|
248016
|
+
cardId: Scalars['ID']['output'];
|
|
248017
|
+
memberId: Scalars['ID']['output'];
|
|
248018
|
+
objectId: Scalars['ID']['output'];
|
|
248019
|
+
recommendedActionId: Scalars['ID']['output'];
|
|
248020
|
+
};
|
|
246568
248021
|
export type TrelloRecommendedAction = {
|
|
246569
248022
|
__typename?: 'TrelloRecommendedAction';
|
|
246570
248023
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -246592,6 +248045,15 @@ export type TrelloRejectProposedEventsPayload = Payload & {
|
|
|
246592
248045
|
proposedEvents?: Maybe<Array<TrelloProposedEventDeleted>>;
|
|
246593
248046
|
success: Scalars['Boolean']['output'];
|
|
246594
248047
|
};
|
|
248048
|
+
export type TrelloRejectRecommendationInput = {
|
|
248049
|
+
recommendationId: Scalars['ID']['input'];
|
|
248050
|
+
};
|
|
248051
|
+
export type TrelloRejectRecommendationPayload = Payload & {
|
|
248052
|
+
__typename?: 'TrelloRejectRecommendationPayload';
|
|
248053
|
+
errors?: Maybe<Array<MutationError>>;
|
|
248054
|
+
recommendationResponse?: Maybe<TrelloRecommendationResponse>;
|
|
248055
|
+
success: Scalars['Boolean']['output'];
|
|
248056
|
+
};
|
|
246595
248057
|
export declare enum TrelloRelativePosition {
|
|
246596
248058
|
Bottom = "BOTTOM",
|
|
246597
248059
|
Top = "TOP"
|
|
@@ -248013,7 +249475,6 @@ export type TrelloWorkspace = Node & {
|
|
|
248013
249475
|
description?: Maybe<Scalars['String']['output']>;
|
|
248014
249476
|
displayBoardCount?: Maybe<Scalars['Int']['output']>;
|
|
248015
249477
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
248016
|
-
eligibleForTrial?: Maybe<Scalars['Boolean']['output']>;
|
|
248017
249478
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
248018
249479
|
entitlement?: Maybe<CcpEntitlement>;
|
|
248019
249480
|
iconEmoji?: Maybe<Scalars['String']['output']>;
|
|
@@ -248032,6 +249493,7 @@ export type TrelloWorkspace = Node & {
|
|
|
248032
249493
|
premiumFeatures?: Maybe<Array<Scalars['String']['output']>>;
|
|
248033
249494
|
products?: Maybe<Array<Scalars['Float']['output']>>;
|
|
248034
249495
|
tags?: Maybe<TrelloTagConnection>;
|
|
249496
|
+
trial?: Maybe<TrelloWorkspaceTrial>;
|
|
248035
249497
|
url?: Maybe<Scalars['URL']['output']>;
|
|
248036
249498
|
website?: Maybe<Scalars['String']['output']>;
|
|
248037
249499
|
};
|
|
@@ -248180,6 +249642,11 @@ export type TrelloWorkspacePrefs = {
|
|
|
248180
249642
|
export declare enum TrelloWorkspaceTier {
|
|
248181
249643
|
Paid = "PAID"
|
|
248182
249644
|
}
|
|
249645
|
+
export type TrelloWorkspaceTrial = {
|
|
249646
|
+
__typename?: 'TrelloWorkspaceTrial';
|
|
249647
|
+
eligible?: Maybe<Scalars['Boolean']['output']>;
|
|
249648
|
+
endDate?: Maybe<Scalars['DateTime']['output']>;
|
|
249649
|
+
};
|
|
248183
249650
|
export type TrelloWorkspaceUpdated = {
|
|
248184
249651
|
__typename?: 'TrelloWorkspaceUpdated';
|
|
248185
249652
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|