@forge/cli-shared 9.5.1-next.5 → 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 +36 -0
- package/out/graphql/graphql-types.d.ts +1501 -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 +13 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +19 -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']>;
|
|
@@ -6719,6 +6821,7 @@ export type AgentStudioAssistantConversation = {
|
|
|
6719
6821
|
__typename?: 'AgentStudioAssistantConversation';
|
|
6720
6822
|
agentVersionNumber?: Maybe<Scalars['Int']['output']>;
|
|
6721
6823
|
hasCoachingContent?: Maybe<Scalars['Boolean']['output']>;
|
|
6824
|
+
hasConfigurationError?: Maybe<Scalars['Boolean']['output']>;
|
|
6722
6825
|
hasGenericAnnotation?: Maybe<Scalars['Boolean']['output']>;
|
|
6723
6826
|
id?: Maybe<Scalars['ID']['output']>;
|
|
6724
6827
|
interactionChannel?: Maybe<Scalars['String']['output']>;
|
|
@@ -6794,6 +6897,9 @@ export type AgentStudioAuthReadinessResult = {
|
|
|
6794
6897
|
thirdPartyApps: Array<AgentStudioThirdPartyApp>;
|
|
6795
6898
|
thirdPartyConnections?: Maybe<Array<AgentStudioThirdPartyConnection>>;
|
|
6796
6899
|
};
|
|
6900
|
+
export type AgentStudioAuthReadinessResultFirstPartyAppsArgs = {
|
|
6901
|
+
includeGrantedApps?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6902
|
+
};
|
|
6797
6903
|
export type AgentStudioAuthoringTeamInput = {
|
|
6798
6904
|
authoringTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
6799
6905
|
};
|
|
@@ -9075,6 +9181,8 @@ export type AgentWorkspaceProjectRoutingHistoryEventsArgs = {
|
|
|
9075
9181
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
9076
9182
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
9077
9183
|
kinds?: InputMaybe<Array<AgentWorkspaceRoutingHistoryEventKind>>;
|
|
9184
|
+
statuses?: InputMaybe<Array<AgentWorkspaceRoutingHistoryStatus>>;
|
|
9185
|
+
triggers?: InputMaybe<Array<AgentWorkspaceConfigurableRoutingTrigger>>;
|
|
9078
9186
|
};
|
|
9079
9187
|
export type AgentWorkspaceProjectSkill = {
|
|
9080
9188
|
__typename?: 'AgentWorkspaceProjectSkill';
|
|
@@ -9248,6 +9356,7 @@ export type AgentWorkspaceRoutingHistoryEvent = {
|
|
|
9248
9356
|
kind: AgentWorkspaceRoutingHistoryEventKind;
|
|
9249
9357
|
message: Scalars['String']['output'];
|
|
9250
9358
|
occurredAt: Scalars['DateTime']['output'];
|
|
9359
|
+
status?: Maybe<AgentWorkspaceRoutingHistoryStatus>;
|
|
9251
9360
|
trigger?: Maybe<Scalars['String']['output']>;
|
|
9252
9361
|
};
|
|
9253
9362
|
export type AgentWorkspaceRoutingHistoryEventConnection = {
|
|
@@ -9272,6 +9381,12 @@ export type AgentWorkspaceRoutingHistoryPageInfo = {
|
|
|
9272
9381
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
9273
9382
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
9274
9383
|
};
|
|
9384
|
+
export declare enum AgentWorkspaceRoutingHistoryStatus {
|
|
9385
|
+
AssignedAndRouted = "ASSIGNED_AND_ROUTED",
|
|
9386
|
+
AssignedTeamMember = "ASSIGNED_TEAM_MEMBER",
|
|
9387
|
+
RoutedTeam = "ROUTED_TEAM",
|
|
9388
|
+
Skipped = "SKIPPED"
|
|
9389
|
+
}
|
|
9275
9390
|
export type AgentWorkspaceRoutingHistoryTeamEntity = AgentWorkspaceRoutingHistoryEntity & {
|
|
9276
9391
|
__typename?: 'AgentWorkspaceRoutingHistoryTeamEntity';
|
|
9277
9392
|
fallbackText: Scalars['String']['output'];
|
|
@@ -9286,6 +9401,18 @@ export type AgentWorkspaceRoutingHistoryUserEntity = AgentWorkspaceRoutingHistor
|
|
|
9286
9401
|
key: Scalars['String']['output'];
|
|
9287
9402
|
user?: Maybe<User>;
|
|
9288
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
|
+
};
|
|
9289
9416
|
export type AgentWorkspaceRoutingTableEntry = {
|
|
9290
9417
|
__typename?: 'AgentWorkspaceRoutingTableEntry';
|
|
9291
9418
|
description: Scalars['String']['output'];
|
|
@@ -9322,6 +9449,21 @@ export declare enum AgentWorkspaceRoutingTableGenerationStatus {
|
|
|
9322
9449
|
InProgress = "IN_PROGRESS",
|
|
9323
9450
|
Timeout = "TIMEOUT"
|
|
9324
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
|
+
};
|
|
9325
9467
|
export type AgentWorkspaceSchedule = {
|
|
9326
9468
|
__typename?: 'AgentWorkspaceSchedule';
|
|
9327
9469
|
agents: Array<AgentWorkspaceAgent>;
|
|
@@ -9806,6 +9948,7 @@ export type AgentWorkspaceSmartRoutingConfig = {
|
|
|
9806
9948
|
serviceFieldName?: Maybe<Scalars['String']['output']>;
|
|
9807
9949
|
serviceFieldType?: Maybe<AgentWorkspaceSmartRoutingServiceFieldType>;
|
|
9808
9950
|
setupVersion: Scalars['Int']['output'];
|
|
9951
|
+
teamAssignmentMode: AgentWorkspaceTeamAssignmentMode;
|
|
9809
9952
|
triggers: Array<AgentWorkspaceConfigurableRoutingTriggerSetting>;
|
|
9810
9953
|
warning?: Maybe<Scalars['String']['output']>;
|
|
9811
9954
|
};
|
|
@@ -10008,6 +10151,11 @@ export type AgentWorkspaceTeam = {
|
|
|
10008
10151
|
teamARI: Scalars['ID']['output'];
|
|
10009
10152
|
teamId?: Maybe<Scalars['ID']['output']>;
|
|
10010
10153
|
};
|
|
10154
|
+
export declare enum AgentWorkspaceTeamAssignmentMode {
|
|
10155
|
+
DefaultTeam = "DEFAULT_TEAM",
|
|
10156
|
+
Manual = "MANUAL",
|
|
10157
|
+
Smart = "SMART"
|
|
10158
|
+
}
|
|
10011
10159
|
export type AgentWorkspaceTeamCapacitiesInput = {
|
|
10012
10160
|
cloudId: Scalars['ID']['input'];
|
|
10013
10161
|
projectKey: Scalars['String']['input'];
|
|
@@ -12850,6 +12998,7 @@ export type ArtifactCreateInput = {
|
|
|
12850
12998
|
access?: InputMaybe<ArtifactAccess>;
|
|
12851
12999
|
contentId: Scalars['ID']['input'];
|
|
12852
13000
|
contextId: Scalars['ID']['input'];
|
|
13001
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
12853
13002
|
name: Scalars['String']['input'];
|
|
12854
13003
|
type: Scalars['String']['input'];
|
|
12855
13004
|
};
|
|
@@ -12891,6 +13040,21 @@ export type ArtifactTokenReference = {
|
|
|
12891
13040
|
family: Scalars['String']['output'];
|
|
12892
13041
|
tokens: Array<ArtifactDesignToken>;
|
|
12893
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
|
+
};
|
|
12894
13058
|
export type ArtifactUploadTarget = {
|
|
12895
13059
|
__typename?: 'ArtifactUploadTarget';
|
|
12896
13060
|
contentId: Scalars['ID']['output'];
|
|
@@ -22823,7 +22987,9 @@ export type CommerceExpCcpEntitlement = {
|
|
|
22823
22987
|
accountModificationForBac?: Maybe<Array<Maybe<CommerceExpEntitlementAccountModificationForBac>>>;
|
|
22824
22988
|
actions?: Maybe<CommerceExpEntitlementActions>;
|
|
22825
22989
|
actions2?: Maybe<CommerceExpEntitlementActionsV2>;
|
|
22990
|
+
actions3?: Maybe<CommerceExpEntitlementActionsV3>;
|
|
22826
22991
|
aggCcpEntitlement?: Maybe<CcpEntitlement>;
|
|
22992
|
+
aggCcpEntitlementIfEntitlementTypeIsApp?: Maybe<CcpEntitlement>;
|
|
22827
22993
|
aggCcpEntitlementIfHostingTypeIsDataCenter?: Maybe<CcpEntitlement>;
|
|
22828
22994
|
allRelatedEntitlementsForBac?: Maybe<Array<Maybe<CommerceExpCcpEntitlement>>>;
|
|
22829
22995
|
allowanceExemptions?: Maybe<CommerceExpUtsAllowanceExemptionList>;
|
|
@@ -22842,6 +23008,7 @@ export type CommerceExpCcpEntitlement = {
|
|
|
22842
23008
|
contract?: Maybe<CommerceExpCommercialContract>;
|
|
22843
23009
|
currentPromotions?: Maybe<Array<Maybe<CommerceExpCcpPromotion>>>;
|
|
22844
23010
|
currentUserPermissions?: Maybe<Array<Maybe<CommerceExpUserPermission>>>;
|
|
23011
|
+
entitlementIdIfEntitlementTypeIsApp?: Maybe<Scalars['ID']['output']>;
|
|
22845
23012
|
entitlementIdIfHostingTypeIsDataCenter?: Maybe<Scalars['ID']['output']>;
|
|
22846
23013
|
forecastBillEstimates?: Maybe<CommerceExpForecastBillEstimates>;
|
|
22847
23014
|
hasConnectedAnnualProductEntitlements?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -23592,6 +23759,7 @@ export type CommerceExpCcpSubscriptionTrial = {
|
|
|
23592
23759
|
endTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
23593
23760
|
isCloudMigrationTrial?: Maybe<Scalars['Boolean']['output']>;
|
|
23594
23761
|
offering?: Maybe<CcpOffering>;
|
|
23762
|
+
offeringAri?: Maybe<Scalars['String']['output']>;
|
|
23595
23763
|
offeringId?: Maybe<Scalars['String']['output']>;
|
|
23596
23764
|
pricingPlan?: Maybe<CommerceExpCcpPricingPlan>;
|
|
23597
23765
|
pricingPlanId?: Maybe<Scalars['String']['output']>;
|
|
@@ -24401,6 +24569,15 @@ export declare enum CommerceExpEntitlementActionExperienceType {
|
|
|
24401
24569
|
NotAvailable = "NOT_AVAILABLE",
|
|
24402
24570
|
SelfServe = "SELF_SERVE"
|
|
24403
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
|
+
}
|
|
24404
24581
|
export type CommerceExpEntitlementActionResult = {
|
|
24405
24582
|
ctaType?: Maybe<CommerceExpEntitlementActionCtaType>;
|
|
24406
24583
|
experienceType?: Maybe<CommerceExpEntitlementActionExperienceType>;
|
|
@@ -24436,6 +24613,23 @@ export type CommerceExpEntitlementActionsV2 = {
|
|
|
24436
24613
|
undoCancellation?: Maybe<CommerceExpGenericEntitlementActionResult>;
|
|
24437
24614
|
viewBillingPartner?: Maybe<CommerceExpGenericEntitlementActionResult>;
|
|
24438
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
|
+
};
|
|
24439
24633
|
export type CommerceExpEntitlementBillingPeriod = {
|
|
24440
24634
|
__typename?: 'CommerceExpEntitlementBillingPeriod';
|
|
24441
24635
|
endTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
@@ -24523,6 +24717,7 @@ export type CommerceExpEntitlementReactivationForBac = {
|
|
|
24523
24717
|
endTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
24524
24718
|
invoiceGroup?: Maybe<CommerceExpCcpInvoiceGroup>;
|
|
24525
24719
|
offering?: Maybe<CcpOffering>;
|
|
24720
|
+
offeringAri?: Maybe<Scalars['String']['output']>;
|
|
24526
24721
|
offeringId?: Maybe<Scalars['ID']['output']>;
|
|
24527
24722
|
pricingPlan?: Maybe<CommerceExpCcpPricingPlan>;
|
|
24528
24723
|
validReactivationOrder?: Maybe<CommerceExpValidOrderResponse>;
|
|
@@ -24692,6 +24887,11 @@ export type CommerceExpGenericEntitlementActionResult = CommerceExpEntitlementAc
|
|
|
24692
24887
|
ctaType?: Maybe<CommerceExpEntitlementActionCtaType>;
|
|
24693
24888
|
experienceType?: Maybe<CommerceExpEntitlementActionExperienceType>;
|
|
24694
24889
|
};
|
|
24890
|
+
export type CommerceExpGenericEntitlementActionResultV3 = {
|
|
24891
|
+
__typename?: 'CommerceExpGenericEntitlementActionResultV3';
|
|
24892
|
+
ctaType?: Maybe<CommerceExpEntitlementActionCtaType>;
|
|
24893
|
+
experienceType?: Maybe<CommerceExpEntitlementActionExperienceTypeV3>;
|
|
24894
|
+
};
|
|
24695
24895
|
export type CommerceExpGenericError = {
|
|
24696
24896
|
__typename?: 'CommerceExpGenericError';
|
|
24697
24897
|
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
@@ -25238,6 +25438,7 @@ export type CommerceExpOrderAmendmentItem = {
|
|
|
25238
25438
|
itemId: Scalars['String']['output'];
|
|
25239
25439
|
nextBillingAnchorTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
25240
25440
|
offering?: Maybe<CcpOffering>;
|
|
25441
|
+
offeringAri?: Maybe<Scalars['String']['output']>;
|
|
25241
25442
|
offeringId: Scalars['ID']['output'];
|
|
25242
25443
|
promotions?: Maybe<Array<Maybe<CommerceExpOmsPromotionDto>>>;
|
|
25243
25444
|
type: CommerceExpOrderType;
|
|
@@ -25338,6 +25539,7 @@ export type CommerceExpOrderCreationItem = {
|
|
|
25338
25539
|
itemId: Scalars['String']['output'];
|
|
25339
25540
|
nextBillingAnchorTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
25340
25541
|
offering?: Maybe<CcpOffering>;
|
|
25542
|
+
offeringAri?: Maybe<Scalars['String']['output']>;
|
|
25341
25543
|
offeringId: Scalars['ID']['output'];
|
|
25342
25544
|
parentEntitlement?: Maybe<CommerceExpCcpEntitlement>;
|
|
25343
25545
|
parentEntitlementId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -26853,6 +27055,7 @@ export type CommerceExpValidOrderSuccess = {
|
|
|
26853
27055
|
rawOrder?: Maybe<Scalars['JSON']['output']>;
|
|
26854
27056
|
recurringEstimate?: Maybe<CommerceExpOrderIntentEstimate>;
|
|
26855
27057
|
shouldAddPaymentBeforeUpgrade?: Maybe<Scalars['Boolean']['output']>;
|
|
27058
|
+
shouldSkipTrialOnUpgrade?: Maybe<Scalars['Boolean']['output']>;
|
|
26856
27059
|
upgradeServCoProductsAction?: Maybe<CommerceExpServCoUpgradeAction>;
|
|
26857
27060
|
validOrderItems?: Maybe<Array<Maybe<CommerceExpValidOrderItem>>>;
|
|
26858
27061
|
};
|
|
@@ -36934,6 +37137,7 @@ export type ConfluencePermissionTransitionPrincipalPageInfo = {
|
|
|
36934
37137
|
};
|
|
36935
37138
|
export declare enum ConfluencePermissionTransitionPrincipalType {
|
|
36936
37139
|
AccessClass = "ACCESS_CLASS",
|
|
37140
|
+
Agent = "AGENT",
|
|
36937
37141
|
Anonymous = "ANONYMOUS",
|
|
36938
37142
|
App = "APP",
|
|
36939
37143
|
Group = "GROUP",
|
|
@@ -41836,7 +42040,7 @@ export type CplsAtlasProjectRecommendation = {
|
|
|
41836
42040
|
atlasProject?: Maybe<TownsquareProject>;
|
|
41837
42041
|
atlasProjectId: Scalars['ID']['output'];
|
|
41838
42042
|
};
|
|
41839
|
-
export type CplsCapacityPlan = {
|
|
42043
|
+
export type CplsCapacityPlan = Node & {
|
|
41840
42044
|
__typename?: 'CplsCapacityPlan';
|
|
41841
42045
|
id: Scalars['ID']['output'];
|
|
41842
42046
|
scopeId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -42164,7 +42368,7 @@ export type CplsCreateSuggestionsPayload = Payload & {
|
|
|
42164
42368
|
errors?: Maybe<Array<MutationError>>;
|
|
42165
42369
|
success: Scalars['Boolean']['output'];
|
|
42166
42370
|
};
|
|
42167
|
-
export type CplsCustomContributionTarget = {
|
|
42371
|
+
export type CplsCustomContributionTarget = Node & {
|
|
42168
42372
|
__typename?: 'CplsCustomContributionTarget';
|
|
42169
42373
|
id: Scalars['ID']['output'];
|
|
42170
42374
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -46093,6 +46297,14 @@ export type CustomerServiceUpdateRequestParticipantInput = {
|
|
|
46093
46297
|
addedParticipants: Array<Scalars['String']['input']>;
|
|
46094
46298
|
deletedParticipants: Array<Scalars['ID']['input']>;
|
|
46095
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
|
+
};
|
|
46096
46308
|
export type CustomerServiceUpdatedCustomerAccount = {
|
|
46097
46309
|
__typename?: 'CustomerServiceUpdatedCustomerAccount';
|
|
46098
46310
|
displayName: Scalars['String']['output'];
|
|
@@ -46121,6 +46333,14 @@ export type CustomerServiceWorkItemAiSummaryResponse = {
|
|
|
46121
46333
|
meta?: Maybe<CustomerServiceWorkItemAiSummaryMeta>;
|
|
46122
46334
|
summary?: Maybe<CustomerServiceWorkItemAiSummary>;
|
|
46123
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;
|
|
46124
46344
|
export type CustomerUser = LocalizationContext & User & {
|
|
46125
46345
|
__typename?: 'CustomerUser';
|
|
46126
46346
|
accountId: Scalars['ID']['output'];
|
|
@@ -47425,6 +47645,7 @@ export type DevAiAutodevNextWorkItemClassification = {
|
|
|
47425
47645
|
codingAgentPromptContext?: Maybe<Scalars['String']['output']>;
|
|
47426
47646
|
enrichedContext?: Maybe<DevAiAutodevNextWorkItemEnrichedContext>;
|
|
47427
47647
|
feedback?: Maybe<Scalars['String']['output']>;
|
|
47648
|
+
openPullRequestAsDraft?: Maybe<Scalars['Boolean']['output']>;
|
|
47428
47649
|
repositories?: Maybe<Array<Scalars['String']['output']>>;
|
|
47429
47650
|
status?: Maybe<Scalars['ID']['output']>;
|
|
47430
47651
|
tShirtSize?: Maybe<Scalars['ID']['output']>;
|
|
@@ -50657,6 +50878,7 @@ export type DlpFalsePositive = {
|
|
|
50657
50878
|
contentHash?: Maybe<Scalars['String']['output']>;
|
|
50658
50879
|
contentType?: Maybe<Scalars['String']['output']>;
|
|
50659
50880
|
detectorId?: Maybe<Scalars['String']['output']>;
|
|
50881
|
+
detectorType?: Maybe<Scalars['String']['output']>;
|
|
50660
50882
|
excludedAt?: Maybe<Scalars['String']['output']>;
|
|
50661
50883
|
excludedBy?: Maybe<Scalars['String']['output']>;
|
|
50662
50884
|
findingId?: Maybe<Scalars['String']['output']>;
|
|
@@ -50666,6 +50888,7 @@ export type DlpFalsePositive = {
|
|
|
50666
50888
|
objectTitle?: Maybe<Scalars['String']['output']>;
|
|
50667
50889
|
parentResourceId?: Maybe<Scalars['String']['output']>;
|
|
50668
50890
|
resourceId?: Maybe<Scalars['String']['output']>;
|
|
50891
|
+
scope?: Maybe<DlpFalsePositiveScope>;
|
|
50669
50892
|
source?: Maybe<Scalars['String']['output']>;
|
|
50670
50893
|
workspaceId?: Maybe<Scalars['String']['output']>;
|
|
50671
50894
|
};
|
|
@@ -50687,15 +50910,21 @@ export type DlpFalsePositiveInput = {
|
|
|
50687
50910
|
contentHash: Scalars['String']['input'];
|
|
50688
50911
|
contentType: Scalars['String']['input'];
|
|
50689
50912
|
detectorId: Scalars['String']['input'];
|
|
50913
|
+
detectorType?: InputMaybe<Scalars['String']['input']>;
|
|
50690
50914
|
findingId: Scalars['String']['input'];
|
|
50691
50915
|
lastDetectedAt?: InputMaybe<Scalars['String']['input']>;
|
|
50692
50916
|
location?: InputMaybe<Scalars['String']['input']>;
|
|
50693
50917
|
objectTitle?: InputMaybe<Scalars['String']['input']>;
|
|
50694
50918
|
parentResourceId: Scalars['String']['input'];
|
|
50695
50919
|
resourceId: Scalars['String']['input'];
|
|
50920
|
+
scope?: InputMaybe<DlpFalsePositiveScope>;
|
|
50696
50921
|
source?: InputMaybe<Scalars['String']['input']>;
|
|
50697
50922
|
workspaceId: Scalars['String']['input'];
|
|
50698
50923
|
};
|
|
50924
|
+
export declare enum DlpFalsePositiveScope {
|
|
50925
|
+
Object = "OBJECT",
|
|
50926
|
+
Org = "ORG"
|
|
50927
|
+
}
|
|
50699
50928
|
export type DlpFalsePositivesListResponse = {
|
|
50700
50929
|
__typename?: 'DlpFalsePositivesListResponse';
|
|
50701
50930
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -52020,6 +52249,7 @@ export type ExternalBranch = Node & {
|
|
|
52020
52249
|
__typename?: 'ExternalBranch';
|
|
52021
52250
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52022
52251
|
branchId?: Maybe<Scalars['String']['output']>;
|
|
52252
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52023
52253
|
container?: Maybe<ExternalEntity>;
|
|
52024
52254
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52025
52255
|
createPullRequestUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -52051,6 +52281,7 @@ export type ExternalBuildInfo = Node & {
|
|
|
52051
52281
|
__typename?: 'ExternalBuildInfo';
|
|
52052
52282
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52053
52283
|
buildNumber?: Maybe<Scalars['Long']['output']>;
|
|
52284
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52054
52285
|
container?: Maybe<ExternalEntity>;
|
|
52055
52286
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52056
52287
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -52384,6 +52615,7 @@ export type ExternalCommit = Node & {
|
|
|
52384
52615
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52385
52616
|
author?: Maybe<ExternalUser>;
|
|
52386
52617
|
commitId?: Maybe<Scalars['String']['output']>;
|
|
52618
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52387
52619
|
container?: Maybe<ExternalEntity>;
|
|
52388
52620
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52389
52621
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -52799,6 +53031,7 @@ export type ExternalDealOpportunityAmount = {
|
|
|
52799
53031
|
export type ExternalDeployment = Node & {
|
|
52800
53032
|
__typename?: 'ExternalDeployment';
|
|
52801
53033
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53034
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52802
53035
|
container?: Maybe<ExternalEntity>;
|
|
52803
53036
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52804
53037
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -52836,6 +53069,7 @@ export declare enum ExternalDeploymentState {
|
|
|
52836
53069
|
export type ExternalDesign = Node & {
|
|
52837
53070
|
__typename?: 'ExternalDesign';
|
|
52838
53071
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53072
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52839
53073
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
52840
53074
|
createdBy?: Maybe<ExternalUser>;
|
|
52841
53075
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -53077,6 +53311,7 @@ export type ExternalExportLink = {
|
|
|
53077
53311
|
export type ExternalFeatureFlag = Node & {
|
|
53078
53312
|
__typename?: 'ExternalFeatureFlag';
|
|
53079
53313
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53314
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53080
53315
|
details?: Maybe<Array<Maybe<ExternalFeatureFlagDetail>>>;
|
|
53081
53316
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
53082
53317
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
@@ -53394,6 +53629,7 @@ export type ExternalPullRequest = Node & {
|
|
|
53394
53629
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53395
53630
|
author?: Maybe<ExternalUser>;
|
|
53396
53631
|
commentCount?: Maybe<Scalars['Int']['output']>;
|
|
53632
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53397
53633
|
container?: Maybe<ExternalEntity>;
|
|
53398
53634
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53399
53635
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -53455,6 +53691,7 @@ export type ExternalRemoteLink = Node & {
|
|
|
53455
53691
|
attributeMap?: Maybe<Array<Maybe<ExternalRemoteLinkAttributeTuple>>>;
|
|
53456
53692
|
author?: Maybe<ExternalUser>;
|
|
53457
53693
|
category?: Maybe<Scalars['String']['output']>;
|
|
53694
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53458
53695
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
53459
53696
|
createdBy?: Maybe<ExternalUser>;
|
|
53460
53697
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -53487,6 +53724,7 @@ export type ExternalRepository = Node & {
|
|
|
53487
53724
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53488
53725
|
avatarDescription?: Maybe<Scalars['String']['output']>;
|
|
53489
53726
|
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
53727
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53490
53728
|
createdBy?: Maybe<ExternalUser>;
|
|
53491
53729
|
description?: Maybe<Scalars['String']['output']>;
|
|
53492
53730
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -53940,6 +54178,7 @@ export type ExternalVulnerability = Node & {
|
|
|
53940
54178
|
__typename?: 'ExternalVulnerability';
|
|
53941
54179
|
additionalInfo?: Maybe<ExternalVulnerabilityAdditionalInfo>;
|
|
53942
54180
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
54181
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53943
54182
|
description?: Maybe<Scalars['String']['output']>;
|
|
53944
54183
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
53945
54184
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
@@ -57055,6 +57294,9 @@ export declare enum GraphInferenceFailureReason {
|
|
|
57055
57294
|
Unavailable = "UNAVAILABLE",
|
|
57056
57295
|
Unknown = "UNKNOWN"
|
|
57057
57296
|
}
|
|
57297
|
+
export type GraphInferenceGenerateReviewPackInput = {
|
|
57298
|
+
requestId: Scalars['String']['input'];
|
|
57299
|
+
};
|
|
57058
57300
|
export type GraphInferenceGetJiraEntityContextInput = {
|
|
57059
57301
|
agentAri?: InputMaybe<Scalars['String']['input']>;
|
|
57060
57302
|
contextTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -57325,6 +57567,7 @@ export type GraphInferenceInferenceAppV3 = {
|
|
|
57325
57567
|
source: Scalars['String']['output'];
|
|
57326
57568
|
};
|
|
57327
57569
|
export type GraphInferenceInferenceEvalInput = {
|
|
57570
|
+
activationId?: InputMaybe<Scalars['String']['input']>;
|
|
57328
57571
|
appId: Scalars['String']['input'];
|
|
57329
57572
|
historyFixture?: InputMaybe<Scalars['JSON']['input']>;
|
|
57330
57573
|
promptTemplate?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -57523,6 +57766,74 @@ export type GraphInferenceInferredProjectViewer = {
|
|
|
57523
57766
|
__typename?: 'GraphInferenceInferredProjectViewer';
|
|
57524
57767
|
accountId: Scalars['String']['output'];
|
|
57525
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
|
+
};
|
|
57526
57837
|
export type GraphInferenceInsight = {
|
|
57527
57838
|
associatedEntities: Array<GraphInferenceInsightEntity>;
|
|
57528
57839
|
confidenceScore?: Maybe<Scalars['Float']['output']>;
|
|
@@ -57681,6 +57992,122 @@ export type GraphInferenceRelatedReposRoot = {
|
|
|
57681
57992
|
__typename?: 'GraphInferenceRelatedReposRoot';
|
|
57682
57993
|
ari: Scalars['String']['output'];
|
|
57683
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
|
+
}
|
|
57684
58111
|
export type GraphInferenceSimilarJiraItemCandidate = {
|
|
57685
58112
|
__typename?: 'GraphInferenceSimilarJiraItemCandidate';
|
|
57686
58113
|
ari: Scalars['String']['output'];
|
|
@@ -57702,6 +58129,15 @@ export type GraphInferenceSimilarJiraItemsRoot = {
|
|
|
57702
58129
|
__typename?: 'GraphInferenceSimilarJiraItemsRoot';
|
|
57703
58130
|
ari: Scalars['String']['output'];
|
|
57704
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
|
+
};
|
|
57705
58141
|
export type GraphInferenceTargetInsightsInput = {
|
|
57706
58142
|
dateRange?: InputMaybe<GraphInferenceInsightDateRangeInput>;
|
|
57707
58143
|
insightTypes?: InputMaybe<Array<GraphInferenceInsightType>>;
|
|
@@ -58136,6 +58572,7 @@ export type GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateEdge = {
|
|
|
58136
58572
|
export type GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateNode = {
|
|
58137
58573
|
__typename?: 'GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateNode';
|
|
58138
58574
|
authType: GraphIntegrationMcpAdminManagementMcpServerAuthType;
|
|
58575
|
+
customOauthProperties: Array<GraphIntegrationMcpAdminManagementCustomOauthProperties>;
|
|
58139
58576
|
description?: Maybe<Scalars['String']['output']>;
|
|
58140
58577
|
displayName: Scalars['String']['output'];
|
|
58141
58578
|
documentationUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -58153,6 +58590,34 @@ export type GraphIntegrationMcpAdminManagementCustomOauthConfigInput = {
|
|
|
58153
58590
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
58154
58591
|
values?: InputMaybe<Array<GraphIntegrationMcpAdminManagementExtraInputEntry>>;
|
|
58155
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
|
+
};
|
|
58156
58621
|
export type GraphIntegrationMcpAdminManagementExtraInputEntry = {
|
|
58157
58622
|
key: Scalars['String']['input'];
|
|
58158
58623
|
value: Scalars['String']['input'];
|
|
@@ -58325,6 +58790,7 @@ export type GraphIntegrationMcpAdminManagementSurfaceMcpServerTemplateEdge = {
|
|
|
58325
58790
|
export type GraphIntegrationMcpAdminManagementSurfaceMcpServerTemplateNode = {
|
|
58326
58791
|
__typename?: 'GraphIntegrationMcpAdminManagementSurfaceMcpServerTemplateNode';
|
|
58327
58792
|
authType: GraphIntegrationMcpAdminManagementMcpServerAuthType;
|
|
58793
|
+
customOauthProperties: Array<GraphIntegrationMcpAdminManagementCustomOauthProperties>;
|
|
58328
58794
|
description?: Maybe<Scalars['String']['output']>;
|
|
58329
58795
|
displayName: Scalars['String']['output'];
|
|
58330
58796
|
displayTools: Array<GraphIntegrationMcpAdminManagementSurfaceMcpServerToolNode>;
|
|
@@ -61752,6 +62218,8 @@ export type GraphStore = {
|
|
|
61752
62218
|
atlassianUserOwnsExternalTestStatusInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInverseConnection>;
|
|
61753
62219
|
atlassianUserOwnsInferredProject?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectConnection>;
|
|
61754
62220
|
atlassianUserOwnsInferredProjectInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseConnection>;
|
|
62221
|
+
atlassianUserRespondsToJiraWorkItem?: Maybe<GraphStoreSimplifiedAtlassianUserRespondsToJiraWorkItemConnection>;
|
|
62222
|
+
atlassianUserRespondsToJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedAtlassianUserRespondsToJiraWorkItemInverseConnection>;
|
|
61755
62223
|
atlassianUserReviewedConfluenceApprovalInverse?: Maybe<GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection>;
|
|
61756
62224
|
atlassianUserTriggeredAtlassianAgentSessionInverse?: Maybe<GraphStoreSimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseConnection>;
|
|
61757
62225
|
atlassianUserUpdatedExternalCampaign?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCampaignConnection>;
|
|
@@ -62065,6 +62533,8 @@ export type GraphStore = {
|
|
|
62065
62533
|
inferredProjectHasRelatedEntityInverse?: Maybe<GraphStoreSimplifiedInferredProjectHasRelatedEntityInverseConnection>;
|
|
62066
62534
|
inferredProjectLinksEntity?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityConnection>;
|
|
62067
62535
|
inferredProjectLinksEntityInverse?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityInverseConnection>;
|
|
62536
|
+
inferredProjectPromotedToAtlassianProject?: Maybe<GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectConnection>;
|
|
62537
|
+
inferredProjectPromotedToAtlassianProjectInverse?: Maybe<GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectInverseConnection>;
|
|
62068
62538
|
inferredTeamCollaboratesOnInferredProject?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectConnection>;
|
|
62069
62539
|
inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
|
|
62070
62540
|
inferredTeamLinksEntity?: Maybe<GraphStoreSimplifiedInferredTeamLinksEntityConnection>;
|
|
@@ -62179,6 +62649,8 @@ export type GraphStore = {
|
|
|
62179
62649
|
jiraSpaceHasLinkedKnowledgeBaseEntityInverse?: Maybe<GraphStoreSimplifiedJiraSpaceHasLinkedKnowledgeBaseEntityInverseConnection>;
|
|
62180
62650
|
jiraWorkItemCommentHasChildComment?: Maybe<GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentConnection>;
|
|
62181
62651
|
jiraWorkItemCommentHasChildCommentInverse?: Maybe<GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentInverseConnection>;
|
|
62652
|
+
jiraWorkItemHasJsmIncidentSeverity?: Maybe<GraphStoreSimplifiedJiraWorkItemHasJsmIncidentSeverityConnection>;
|
|
62653
|
+
jiraWorkItemHasJsmIncidentSeverityInverse?: Maybe<GraphStoreSimplifiedJiraWorkItemHasJsmIncidentSeverityInverseConnection>;
|
|
62182
62654
|
jiraWorkItemLinksAssetObject?: Maybe<GraphStoreSimplifiedJiraWorkItemLinksAssetObjectConnection>;
|
|
62183
62655
|
jiraWorkItemLinksAssetObjectInverse?: Maybe<GraphStoreSimplifiedJiraWorkItemLinksAssetObjectInverseConnection>;
|
|
62184
62656
|
jsmProjectAssociatedService?: Maybe<GraphStoreSimplifiedJsmProjectAssociatedServiceConnection>;
|
|
@@ -64008,6 +64480,22 @@ export type GraphStoreAtlassianUserOwnsInferredProjectInverseArgs = {
|
|
|
64008
64480
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
64009
64481
|
sort?: InputMaybe<GraphStoreAtlassianUserOwnsInferredProjectSortInput>;
|
|
64010
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
|
+
};
|
|
64011
64499
|
export type GraphStoreAtlassianUserReviewedConfluenceApprovalInverseArgs = {
|
|
64012
64500
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
64013
64501
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -66438,6 +66926,22 @@ export type GraphStoreInferredProjectLinksEntityInverseArgs = {
|
|
|
66438
66926
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
66439
66927
|
sort?: InputMaybe<GraphStoreInferredProjectLinksEntitySortInput>;
|
|
66440
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
|
+
};
|
|
66441
66945
|
export type GraphStoreInferredTeamCollaboratesOnInferredProjectArgs = {
|
|
66442
66946
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
66443
66947
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -67294,6 +67798,22 @@ export type GraphStoreJiraWorkItemCommentHasChildCommentInverseArgs = {
|
|
|
67294
67798
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
67295
67799
|
sort?: InputMaybe<GraphStoreJiraWorkItemCommentHasChildCommentSortInput>;
|
|
67296
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
|
+
};
|
|
67297
67817
|
export type GraphStoreJiraWorkItemLinksAssetObjectArgs = {
|
|
67298
67818
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
67299
67819
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -72876,6 +73396,9 @@ export type GraphStoreAtlassianUserOwnsExternalTestStatusSortInput = {
|
|
|
72876
73396
|
export type GraphStoreAtlassianUserOwnsInferredProjectSortInput = {
|
|
72877
73397
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72878
73398
|
};
|
|
73399
|
+
export type GraphStoreAtlassianUserRespondsToJiraWorkItemSortInput = {
|
|
73400
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
73401
|
+
};
|
|
72879
73402
|
export type GraphStoreAtlassianUserReviewedConfluenceApprovalSortInput = {
|
|
72880
73403
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72881
73404
|
};
|
|
@@ -80395,6 +80918,9 @@ export type GraphStoreInferredProjectNodeMetadata = {
|
|
|
80395
80918
|
summary?: Maybe<Scalars['String']['output']>;
|
|
80396
80919
|
title?: Maybe<Scalars['String']['output']>;
|
|
80397
80920
|
};
|
|
80921
|
+
export type GraphStoreInferredProjectPromotedToAtlassianProjectSortInput = {
|
|
80922
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80923
|
+
};
|
|
80398
80924
|
export declare enum GraphStoreInferredRiskNodeInferredRiskLevelOutput {
|
|
80399
80925
|
Critical = "CRITICAL",
|
|
80400
80926
|
High = "HIGH",
|
|
@@ -80762,6 +81288,9 @@ export type GraphStoreJiraSpaceHasLinkedKnowledgeBaseEntitySortInput = {
|
|
|
80762
81288
|
export type GraphStoreJiraWorkItemCommentHasChildCommentSortInput = {
|
|
80763
81289
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80764
81290
|
};
|
|
81291
|
+
export type GraphStoreJiraWorkItemHasJsmIncidentSeveritySortInput = {
|
|
81292
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
81293
|
+
};
|
|
80765
81294
|
export type GraphStoreJiraWorkItemLinksAssetObjectSortInput = {
|
|
80766
81295
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80767
81296
|
};
|
|
@@ -83713,6 +84242,34 @@ export type GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseEdge = {
|
|
|
83713
84242
|
};
|
|
83714
84243
|
export type GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
83715
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;
|
|
83716
84273
|
export type GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection = HasPageInfo & {
|
|
83717
84274
|
__typename?: 'GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection';
|
|
83718
84275
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseEdge>>>;
|
|
@@ -87286,7 +87843,7 @@ export type GraphStoreSimplifiedInferredDecisionSourceLineageEntityInverseEdge =
|
|
|
87286
87843
|
node?: Maybe<GraphStoreSimplifiedInferredDecisionSourceLineageEntityInverseUnion>;
|
|
87287
87844
|
};
|
|
87288
87845
|
export type GraphStoreSimplifiedInferredDecisionSourceLineageEntityInverseUnion = GraphStoreNodeResponse;
|
|
87289
|
-
export type GraphStoreSimplifiedInferredDecisionSourceLineageEntityUnion = ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | ExternalVideo | LoomVideo;
|
|
87846
|
+
export type GraphStoreSimplifiedInferredDecisionSourceLineageEntityUnion = ConfluencePage | DevOpsDocument | DevOpsPullRequestDetails | ExternalDocument | ExternalPullRequest | ExternalVideo | LoomVideo;
|
|
87290
87847
|
export type GraphStoreSimplifiedInferredProjectHasRelatedEntityConnection = HasPageInfo & {
|
|
87291
87848
|
__typename?: 'GraphStoreSimplifiedInferredProjectHasRelatedEntityConnection';
|
|
87292
87849
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredProjectHasRelatedEntityEdge>>>;
|
|
@@ -87343,6 +87900,34 @@ export type GraphStoreSimplifiedInferredProjectLinksEntityInverseEdge = {
|
|
|
87343
87900
|
};
|
|
87344
87901
|
export type GraphStoreSimplifiedInferredProjectLinksEntityInverseUnion = GraphStoreNodeResponse;
|
|
87345
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;
|
|
87346
87931
|
export type GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectConnection = HasPageInfo & {
|
|
87347
87932
|
__typename?: 'GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectConnection';
|
|
87348
87933
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectEdge>>>;
|
|
@@ -88453,6 +89038,34 @@ export type GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentInverseEdge =
|
|
|
88453
89038
|
};
|
|
88454
89039
|
export type GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentInverseUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
88455
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;
|
|
88456
89069
|
export type GraphStoreSimplifiedJiraWorkItemLinksAssetObjectConnection = HasPageInfo & {
|
|
88457
89070
|
__typename?: 'GraphStoreSimplifiedJiraWorkItemLinksAssetObjectConnection';
|
|
88458
89071
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraWorkItemLinksAssetObjectEdge>>>;
|
|
@@ -97158,6 +97771,8 @@ export type GraphStoreV2 = {
|
|
|
97158
97771
|
atlassianUserReportedJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReportedJiraWorkItemInverseConnection>;
|
|
97159
97772
|
atlassianUserReportedJsmIncident?: Maybe<GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentConnection>;
|
|
97160
97773
|
atlassianUserReportedJsmIncidentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentInverseConnection>;
|
|
97774
|
+
atlassianUserRespondsToJiraWorkItem?: Maybe<GraphStoreV2SimplifiedAtlassianUserRespondsToJiraWorkItemConnection>;
|
|
97775
|
+
atlassianUserRespondsToJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserRespondsToJiraWorkItemInverseConnection>;
|
|
97161
97776
|
atlassianUserReviewedConfluenceApprovalInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection>;
|
|
97162
97777
|
atlassianUserSnapshottedConfluencePage?: Maybe<GraphStoreV2SimplifiedAtlassianUserSnapshottedConfluencePageConnection>;
|
|
97163
97778
|
atlassianUserSnapshottedConfluencePageInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserSnapshottedConfluencePageInverseConnection>;
|
|
@@ -97650,6 +98265,8 @@ export type GraphStoreV2 = {
|
|
|
97650
98265
|
inferredProjectHasRelatedEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectHasRelatedEntityInverseConnection>;
|
|
97651
98266
|
inferredProjectLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityConnection>;
|
|
97652
98267
|
inferredProjectLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityInverseConnection>;
|
|
98268
|
+
inferredProjectPromotedToAtlassianProject?: Maybe<GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectConnection>;
|
|
98269
|
+
inferredProjectPromotedToAtlassianProjectInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectInverseConnection>;
|
|
97653
98270
|
inferredTeamCollaboratesOnInferredProject?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectConnection>;
|
|
97654
98271
|
inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
|
|
97655
98272
|
inferredTeamLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredTeamLinksEntityConnection>;
|
|
@@ -97766,8 +98383,12 @@ export type GraphStoreV2 = {
|
|
|
97766
98383
|
jiraWorkItemHasJiraPriorityInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJiraPriorityInverseConnection>;
|
|
97767
98384
|
jiraWorkItemHasJiraWorkItemComment?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentConnection>;
|
|
97768
98385
|
jiraWorkItemHasJiraWorkItemCommentInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentInverseConnection>;
|
|
98386
|
+
jiraWorkItemHasJsmIncidentSeverity?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJsmIncidentSeverityConnection>;
|
|
98387
|
+
jiraWorkItemHasJsmIncidentSeverityInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJsmIncidentSeverityInverseConnection>;
|
|
97769
98388
|
jiraWorkItemHasLinkedKnowledgeBaseEntity?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityConnection>;
|
|
97770
98389
|
jiraWorkItemHasLinkedKnowledgeBaseEntityInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityInverseConnection>;
|
|
98390
|
+
jiraWorkItemImpactsCompassComponent?: Maybe<GraphStoreV2SimplifiedJiraWorkItemImpactsCompassComponentConnection>;
|
|
98391
|
+
jiraWorkItemImpactsCompassComponentInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemImpactsCompassComponentInverseConnection>;
|
|
97771
98392
|
jiraWorkItemLinksAssetsObject?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectConnection>;
|
|
97772
98393
|
jiraWorkItemLinksAssetsObjectInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectInverseConnection>;
|
|
97773
98394
|
jiraWorkItemLinksConfluenceWhiteboard?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksConfluenceWhiteboardConnection>;
|
|
@@ -99430,6 +100051,20 @@ export type GraphStoreV2AtlassianUserReportedJsmIncidentInverseArgs = {
|
|
|
99430
100051
|
id: Scalars['ID']['input'];
|
|
99431
100052
|
sort?: InputMaybe<GraphStoreV2AtlassianUserReportedJsmIncidentSortInput>;
|
|
99432
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
|
+
};
|
|
99433
100068
|
export type GraphStoreV2AtlassianUserReviewedConfluenceApprovalInverseArgs = {
|
|
99434
100069
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
99435
100070
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -102881,6 +103516,20 @@ export type GraphStoreV2InferredProjectLinksEntityInverseArgs = {
|
|
|
102881
103516
|
id: Scalars['ID']['input'];
|
|
102882
103517
|
sort?: InputMaybe<GraphStoreV2InferredProjectLinksEntitySortInput>;
|
|
102883
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
|
+
};
|
|
102884
103533
|
export type GraphStoreV2InferredTeamCollaboratesOnInferredProjectArgs = {
|
|
102885
103534
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
102886
103535
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -103725,6 +104374,20 @@ export type GraphStoreV2JiraWorkItemHasJiraWorkItemCommentInverseArgs = {
|
|
|
103725
104374
|
id: Scalars['ID']['input'];
|
|
103726
104375
|
sort?: InputMaybe<GraphStoreV2JiraWorkItemHasJiraWorkItemCommentSortInput>;
|
|
103727
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
|
+
};
|
|
103728
104391
|
export type GraphStoreV2JiraWorkItemHasLinkedKnowledgeBaseEntityArgs = {
|
|
103729
104392
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
103730
104393
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -103739,6 +104402,20 @@ export type GraphStoreV2JiraWorkItemHasLinkedKnowledgeBaseEntityInverseArgs = {
|
|
|
103739
104402
|
id: Scalars['ID']['input'];
|
|
103740
104403
|
sort?: InputMaybe<GraphStoreV2JiraWorkItemHasLinkedKnowledgeBaseEntitySortInput>;
|
|
103741
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
|
+
};
|
|
103742
104419
|
export type GraphStoreV2JiraWorkItemLinksAssetsObjectArgs = {
|
|
103743
104420
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
103744
104421
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -104764,6 +105441,9 @@ export type GraphStoreV2AtlassianUserReportedJiraWorkItemSortInput = {
|
|
|
104764
105441
|
export type GraphStoreV2AtlassianUserReportedJsmIncidentSortInput = {
|
|
104765
105442
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
104766
105443
|
};
|
|
105444
|
+
export type GraphStoreV2AtlassianUserRespondsToJiraWorkItemSortInput = {
|
|
105445
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
105446
|
+
};
|
|
104767
105447
|
export type GraphStoreV2AtlassianUserReviewedConfluenceApprovalSortInput = {
|
|
104768
105448
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
104769
105449
|
};
|
|
@@ -105370,6 +106050,46 @@ export type GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityRelationsh
|
|
|
105370
106050
|
export type GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityRelationshipObjectMetadataInput = {
|
|
105371
106051
|
linkSource?: InputMaybe<GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityLinkSourceInput>;
|
|
105372
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
|
+
};
|
|
105373
106093
|
export type GraphStoreV2CreateJiraWorkItemLinksConfluenceWhiteboardAliasInput = {
|
|
105374
106094
|
from: Scalars['ID']['input'];
|
|
105375
106095
|
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
@@ -105984,6 +106704,18 @@ export type GraphStoreV2DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityPayload =
|
|
|
105984
106704
|
errors?: Maybe<Array<MutationError>>;
|
|
105985
106705
|
success: Scalars['Boolean']['output'];
|
|
105986
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
|
+
};
|
|
105987
106719
|
export type GraphStoreV2DeleteJiraWorkItemLinksConfluenceWhiteboardAliasInput = {
|
|
105988
106720
|
from: Scalars['ID']['input'];
|
|
105989
106721
|
to: Scalars['ID']['input'];
|
|
@@ -106763,6 +107495,9 @@ export type GraphStoreV2InferredProjectHasRelatedEntitySortInput = {
|
|
|
106763
107495
|
export type GraphStoreV2InferredProjectLinksEntitySortInput = {
|
|
106764
107496
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
106765
107497
|
};
|
|
107498
|
+
export type GraphStoreV2InferredProjectPromotedToAtlassianProjectSortInput = {
|
|
107499
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
107500
|
+
};
|
|
106766
107501
|
export type GraphStoreV2InferredTeamCollaboratesOnInferredProjectSortInput = {
|
|
106767
107502
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
106768
107503
|
};
|
|
@@ -107762,6 +108497,9 @@ export type GraphStoreV2JiraWorkItemHasJiraPrioritySortInput = {
|
|
|
107762
108497
|
export type GraphStoreV2JiraWorkItemHasJiraWorkItemCommentSortInput = {
|
|
107763
108498
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
107764
108499
|
};
|
|
108500
|
+
export type GraphStoreV2JiraWorkItemHasJsmIncidentSeveritySortInput = {
|
|
108501
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
108502
|
+
};
|
|
107765
108503
|
export type GraphStoreV2JiraWorkItemHasLinkedKnowledgeBaseEntitySortInput = {
|
|
107766
108504
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
107767
108505
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -107771,6 +108509,9 @@ export type GraphStoreV2JiraWorkItemHasLinkedKnowledgeBaseEntitySortInput = {
|
|
|
107771
108509
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
107772
108510
|
to_linkSource?: InputMaybe<GraphStoreSortInput>;
|
|
107773
108511
|
};
|
|
108512
|
+
export type GraphStoreV2JiraWorkItemImpactsCompassComponentSortInput = {
|
|
108513
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
108514
|
+
};
|
|
107774
108515
|
export type GraphStoreV2JiraWorkItemLinksAssetsObjectSortInput = {
|
|
107775
108516
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
107776
108517
|
};
|
|
@@ -108093,6 +108834,7 @@ export type GraphStoreV2Mutation = {
|
|
|
108093
108834
|
createJiraVersionLinksExternalFeatureFlag?: Maybe<GraphStoreV2CreateJiraVersionLinksExternalFeatureFlagPayload>;
|
|
108094
108835
|
createJiraWorkItemDismissedKnowledgeBaseEntity?: Maybe<GraphStoreV2CreateJiraWorkItemDismissedKnowledgeBaseEntityPayload>;
|
|
108095
108836
|
createJiraWorkItemHasLinkedKnowledgeBaseEntity?: Maybe<GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityPayload>;
|
|
108837
|
+
createJiraWorkItemImpactsCompassComponent?: Maybe<GraphStoreV2CreateJiraWorkItemImpactsCompassComponentPayload>;
|
|
108096
108838
|
createJiraWorkItemLinksConfluenceWhiteboard?: Maybe<GraphStoreV2CreateJiraWorkItemLinksConfluenceWhiteboardPayload>;
|
|
108097
108839
|
createJiraWorkItemLinksExternalVulnerability?: Maybe<GraphStoreV2CreateJiraWorkItemLinksExternalVulnerabilityPayload>;
|
|
108098
108840
|
createJiraWorkItemLinksSupportEscalationEntity?: Maybe<GraphStoreV2CreateJiraWorkItemLinksSupportEscalationEntityPayload>;
|
|
@@ -108128,6 +108870,7 @@ export type GraphStoreV2Mutation = {
|
|
|
108128
108870
|
deleteJiraVersionLinksExternalFeatureFlag?: Maybe<GraphStoreV2DeleteJiraVersionLinksExternalFeatureFlagPayload>;
|
|
108129
108871
|
deleteJiraWorkItemDismissedKnowledgeBaseEntity?: Maybe<GraphStoreV2DeleteJiraWorkItemDismissedKnowledgeBaseEntityPayload>;
|
|
108130
108872
|
deleteJiraWorkItemHasLinkedKnowledgeBaseEntity?: Maybe<GraphStoreV2DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityPayload>;
|
|
108873
|
+
deleteJiraWorkItemImpactsCompassComponent?: Maybe<GraphStoreV2DeleteJiraWorkItemImpactsCompassComponentPayload>;
|
|
108131
108874
|
deleteJiraWorkItemLinksConfluenceWhiteboard?: Maybe<GraphStoreV2DeleteJiraWorkItemLinksConfluenceWhiteboardPayload>;
|
|
108132
108875
|
deleteJiraWorkItemLinksExternalVulnerability?: Maybe<GraphStoreV2DeleteJiraWorkItemLinksExternalVulnerabilityPayload>;
|
|
108133
108876
|
deleteJiraWorkItemLinksSupportEscalationEntity?: Maybe<GraphStoreV2DeleteJiraWorkItemLinksSupportEscalationEntityPayload>;
|
|
@@ -108214,6 +108957,9 @@ export type GraphStoreV2MutationCreateJiraWorkItemDismissedKnowledgeBaseEntityAr
|
|
|
108214
108957
|
export type GraphStoreV2MutationCreateJiraWorkItemHasLinkedKnowledgeBaseEntityArgs = {
|
|
108215
108958
|
input?: InputMaybe<GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityInput>;
|
|
108216
108959
|
};
|
|
108960
|
+
export type GraphStoreV2MutationCreateJiraWorkItemImpactsCompassComponentArgs = {
|
|
108961
|
+
input?: InputMaybe<GraphStoreV2CreateJiraWorkItemImpactsCompassComponentInput>;
|
|
108962
|
+
};
|
|
108217
108963
|
export type GraphStoreV2MutationCreateJiraWorkItemLinksConfluenceWhiteboardArgs = {
|
|
108218
108964
|
input?: InputMaybe<GraphStoreV2CreateJiraWorkItemLinksConfluenceWhiteboardInput>;
|
|
108219
108965
|
};
|
|
@@ -108319,6 +109065,9 @@ export type GraphStoreV2MutationDeleteJiraWorkItemDismissedKnowledgeBaseEntityAr
|
|
|
108319
109065
|
export type GraphStoreV2MutationDeleteJiraWorkItemHasLinkedKnowledgeBaseEntityArgs = {
|
|
108320
109066
|
input?: InputMaybe<GraphStoreV2DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityInput>;
|
|
108321
109067
|
};
|
|
109068
|
+
export type GraphStoreV2MutationDeleteJiraWorkItemImpactsCompassComponentArgs = {
|
|
109069
|
+
input?: InputMaybe<GraphStoreV2DeleteJiraWorkItemImpactsCompassComponentInput>;
|
|
109070
|
+
};
|
|
108322
109071
|
export type GraphStoreV2MutationDeleteJiraWorkItemLinksConfluenceWhiteboardArgs = {
|
|
108323
109072
|
input?: InputMaybe<GraphStoreV2DeleteJiraWorkItemLinksConfluenceWhiteboardInput>;
|
|
108324
109073
|
};
|
|
@@ -111562,6 +112311,34 @@ export type GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentInverseEdge =
|
|
|
111562
112311
|
};
|
|
111563
112312
|
export type GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
111564
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;
|
|
111565
112342
|
export type GraphStoreV2SimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection = HasPageInfo & {
|
|
111566
112343
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection';
|
|
111567
112344
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserReviewedConfluenceApprovalInverseEdge>>>;
|
|
@@ -118387,7 +119164,7 @@ export type GraphStoreV2SimplifiedInferredDecisionLinksEntityInverseEdge = {
|
|
|
118387
119164
|
node?: Maybe<GraphStoreV2SimplifiedInferredDecisionLinksEntityInverseUnion>;
|
|
118388
119165
|
};
|
|
118389
119166
|
export type GraphStoreV2SimplifiedInferredDecisionLinksEntityInverseUnion = GraphStoreNodeResponse;
|
|
118390
|
-
export type GraphStoreV2SimplifiedInferredDecisionLinksEntityUnion = ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | ExternalVideo | LoomVideo;
|
|
119167
|
+
export type GraphStoreV2SimplifiedInferredDecisionLinksEntityUnion = ConfluencePage | DevOpsDocument | DevOpsPullRequestDetails | ExternalDocument | ExternalPullRequest | ExternalVideo | LoomVideo;
|
|
118391
119168
|
export type GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityConnection = HasPageInfo & {
|
|
118392
119169
|
__typename?: 'GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityConnection';
|
|
118393
119170
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityEdge>>>;
|
|
@@ -118415,7 +119192,7 @@ export type GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityInverseEdge
|
|
|
118415
119192
|
node?: Maybe<GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityInverseUnion>;
|
|
118416
119193
|
};
|
|
118417
119194
|
export type GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityInverseUnion = GraphStoreNodeResponse;
|
|
118418
|
-
export type GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityUnion = ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | ExternalVideo | LoomVideo;
|
|
119195
|
+
export type GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityUnion = ConfluencePage | DevOpsDocument | DevOpsPullRequestDetails | ExternalDocument | ExternalPullRequest | ExternalVideo | LoomVideo;
|
|
118419
119196
|
export type GraphStoreV2SimplifiedInferredProjectHasRelatedEntityConnection = HasPageInfo & {
|
|
118420
119197
|
__typename?: 'GraphStoreV2SimplifiedInferredProjectHasRelatedEntityConnection';
|
|
118421
119198
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredProjectHasRelatedEntityEdge>>>;
|
|
@@ -118472,6 +119249,34 @@ export type GraphStoreV2SimplifiedInferredProjectLinksEntityInverseEdge = {
|
|
|
118472
119249
|
};
|
|
118473
119250
|
export type GraphStoreV2SimplifiedInferredProjectLinksEntityInverseUnion = GraphStoreNodeResponse;
|
|
118474
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;
|
|
118475
119280
|
export type GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectConnection = HasPageInfo & {
|
|
118476
119281
|
__typename?: 'GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectConnection';
|
|
118477
119282
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectEdge>>>;
|
|
@@ -120262,6 +121067,34 @@ export type GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentInverseEdge
|
|
|
120262
121067
|
};
|
|
120263
121068
|
export type GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentInverseUnion = JiraIssue;
|
|
120264
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;
|
|
120265
121098
|
export type GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityConnection = HasPageInfo & HasTotal & {
|
|
120266
121099
|
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityConnection';
|
|
120267
121100
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityEdge>>>;
|
|
@@ -120294,6 +121127,34 @@ export type GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityInvers
|
|
|
120294
121127
|
};
|
|
120295
121128
|
export type GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityInverseUnion = JiraIssue | JiraProject;
|
|
120296
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;
|
|
120297
121158
|
export type GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectConnection = HasPageInfo & {
|
|
120298
121159
|
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectConnection';
|
|
120299
121160
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectEdge>>>;
|
|
@@ -121672,6 +122533,16 @@ export type GravityCreateDraftInput = {
|
|
|
121672
122533
|
type: Scalars['String']['input'];
|
|
121673
122534
|
upsertActions?: InputMaybe<Array<GravityUpsertActionInput>>;
|
|
121674
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
|
+
};
|
|
121675
122546
|
export type GravityCreateViewFromInlinedTemplateInput = {
|
|
121676
122547
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
121677
122548
|
projectId: Scalars['ID']['input'];
|
|
@@ -121716,6 +122587,11 @@ export type GravityDeleteReactionPayload = Payload & {
|
|
|
121716
122587
|
errors?: Maybe<Array<MutationError>>;
|
|
121717
122588
|
success: Scalars['Boolean']['output'];
|
|
121718
122589
|
};
|
|
122590
|
+
export type GravityDeleteSectionPayload = Payload & {
|
|
122591
|
+
__typename?: 'GravityDeleteSectionPayload';
|
|
122592
|
+
errors?: Maybe<Array<MutationError>>;
|
|
122593
|
+
success: Scalars['Boolean']['output'];
|
|
122594
|
+
};
|
|
121719
122595
|
export type GravityDeliveryItemMatch = {
|
|
121720
122596
|
__typename?: 'GravityDeliveryItemMatch';
|
|
121721
122597
|
confidence: Scalars['Float']['output'];
|
|
@@ -121732,6 +122608,7 @@ export type GravityDeliverySettings = {
|
|
|
121732
122608
|
__typename?: 'GravityDeliverySettings';
|
|
121733
122609
|
projectId: Scalars['ID']['output'];
|
|
121734
122610
|
tableLayoutConfig: Array<GravityTableLayoutConfig>;
|
|
122611
|
+
tableSort?: Maybe<GravityDeliveryTableSort>;
|
|
121735
122612
|
visibleFields: Array<Scalars['String']['output']>;
|
|
121736
122613
|
};
|
|
121737
122614
|
export type GravityDeliverySettingsResult = GravityDeliverySettingsSuccess | QueryError;
|
|
@@ -121739,6 +122616,15 @@ export type GravityDeliverySettingsSuccess = {
|
|
|
121739
122616
|
__typename?: 'GravityDeliverySettingsSuccess';
|
|
121740
122617
|
settings: GravityDeliverySettings;
|
|
121741
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
|
+
};
|
|
121742
122628
|
export type GravityDetailedReactionResult = GravityDetailedReactionSuccess | QueryError;
|
|
121743
122629
|
export type GravityDetailedReactionSuccess = {
|
|
121744
122630
|
__typename?: 'GravityDetailedReactionSuccess';
|
|
@@ -121888,34 +122774,6 @@ export type GravityGetReactionsInput = {
|
|
|
121888
122774
|
entity: GravityReactionEntityType;
|
|
121889
122775
|
entityIds: Array<Scalars['ID']['input']>;
|
|
121890
122776
|
};
|
|
121891
|
-
export type GravityImportIdeasInput = {
|
|
121892
|
-
csvContent?: InputMaybe<Scalars['String']['input']>;
|
|
121893
|
-
imageContent?: InputMaybe<Scalars['String']['input']>;
|
|
121894
|
-
imageMimeType?: InputMaybe<Scalars['String']['input']>;
|
|
121895
|
-
pdfContent?: InputMaybe<Scalars['String']['input']>;
|
|
121896
|
-
projectId?: InputMaybe<Scalars['String']['input']>;
|
|
121897
|
-
sourceLabel?: InputMaybe<Scalars['String']['input']>;
|
|
121898
|
-
sourceType: GravityImportSourceType;
|
|
121899
|
-
textContent?: InputMaybe<Scalars['String']['input']>;
|
|
121900
|
-
};
|
|
121901
|
-
export type GravityImportIdeasMetadata = {
|
|
121902
|
-
__typename?: 'GravityImportIdeasMetadata';
|
|
121903
|
-
aiProcessingTimeMs: Scalars['Int']['output'];
|
|
121904
|
-
itemsProcessed: Scalars['Int']['output'];
|
|
121905
|
-
sourceType: GravityImportSourceType;
|
|
121906
|
-
};
|
|
121907
|
-
export type GravityImportIdeasResult = GravityImportIdeasSuccess | QueryError;
|
|
121908
|
-
export type GravityImportIdeasSuccess = {
|
|
121909
|
-
__typename?: 'GravityImportIdeasSuccess';
|
|
121910
|
-
metadata: GravityImportIdeasMetadata;
|
|
121911
|
-
suggestedIdeas: Array<GravitySuggestedIdea>;
|
|
121912
|
-
};
|
|
121913
|
-
export declare enum GravityImportSourceType {
|
|
121914
|
-
Csv = "CSV",
|
|
121915
|
-
Image = "IMAGE",
|
|
121916
|
-
Pdf = "PDF",
|
|
121917
|
-
Text = "TEXT"
|
|
121918
|
-
}
|
|
121919
122777
|
export type GravityMatchDeliveryInput = {
|
|
121920
122778
|
deliveryIssueIdsOrKeys: Array<Scalars['ID']['input']>;
|
|
121921
122779
|
discoveryIssueIdsOrKeys: Array<Scalars['ID']['input']>;
|
|
@@ -121986,6 +122844,11 @@ export type GravityReviseDraftInput = {
|
|
|
121986
122844
|
resolveCommentIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
121987
122845
|
upsertActions?: InputMaybe<Array<GravityUpsertActionInput>>;
|
|
121988
122846
|
};
|
|
122847
|
+
export type GravitySection = {
|
|
122848
|
+
__typename?: 'GravitySection';
|
|
122849
|
+
id: Scalars['ID']['output'];
|
|
122850
|
+
name: Scalars['String']['output'];
|
|
122851
|
+
};
|
|
121989
122852
|
export type GravitySetActionStatusInput = {
|
|
121990
122853
|
actionId: Scalars['String']['input'];
|
|
121991
122854
|
status: GravityActionStatus;
|
|
@@ -122002,12 +122865,6 @@ export type GravityStartAltaSessionInput = {
|
|
|
122002
122865
|
agent: Scalars['String']['input'];
|
|
122003
122866
|
prompt: Scalars['String']['input'];
|
|
122004
122867
|
};
|
|
122005
|
-
export type GravitySuggestedIdea = {
|
|
122006
|
-
__typename?: 'GravitySuggestedIdea';
|
|
122007
|
-
description: Scalars['String']['output'];
|
|
122008
|
-
sourceReference: Scalars['String']['output'];
|
|
122009
|
-
title: Scalars['String']['output'];
|
|
122010
|
-
};
|
|
122011
122868
|
export type GravityTableLayoutConfig = {
|
|
122012
122869
|
__typename?: 'GravityTableLayoutConfig';
|
|
122013
122870
|
field: Scalars['String']['output'];
|
|
@@ -122027,12 +122884,26 @@ export type GravityUpdateDeliverySettingsSuccess = {
|
|
|
122027
122884
|
__typename?: 'GravityUpdateDeliverySettingsSuccess';
|
|
122028
122885
|
settings: GravityDeliverySettings;
|
|
122029
122886
|
};
|
|
122887
|
+
export type GravityUpdateDeliveryTableSortInput = {
|
|
122888
|
+
projectId: Scalars['ID']['input'];
|
|
122889
|
+
tableSort?: InputMaybe<GravityDeliveryTableSortInput>;
|
|
122890
|
+
};
|
|
122030
122891
|
export type GravityUpdateDraftContentInput = {
|
|
122031
122892
|
content: Scalars['String']['input'];
|
|
122032
122893
|
draftId: Scalars['String']['input'];
|
|
122033
122894
|
expectedRevision: Scalars['Int']['input'];
|
|
122034
122895
|
origin?: InputMaybe<GravityDraftOrigin>;
|
|
122035
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
|
+
};
|
|
122036
122907
|
export type GravityUpsertActionInput = {
|
|
122037
122908
|
draftId?: InputMaybe<Scalars['String']['input']>;
|
|
122038
122909
|
id?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -127843,13 +128714,17 @@ export type JiraAgentSession = {
|
|
|
127843
128714
|
__typename?: 'JiraAgentSession';
|
|
127844
128715
|
agent?: Maybe<User>;
|
|
127845
128716
|
agentAccountId?: Maybe<Scalars['String']['output']>;
|
|
128717
|
+
agentAri?: Maybe<Scalars['ID']['output']>;
|
|
127846
128718
|
author?: Maybe<User>;
|
|
127847
128719
|
authorAccountId?: Maybe<Scalars['String']['output']>;
|
|
128720
|
+
convoAiAgentId?: Maybe<Scalars['String']['output']>;
|
|
127848
128721
|
endTime?: Maybe<Scalars['DateTime']['output']>;
|
|
127849
128722
|
invocationType?: Maybe<JiraAgentSessionInvocationType>;
|
|
127850
128723
|
isRovo?: Maybe<Scalars['Boolean']['output']>;
|
|
128724
|
+
jcaSessionAri?: Maybe<Scalars['ID']['output']>;
|
|
127851
128725
|
lastStateChangeAt?: Maybe<Scalars['DateTime']['output']>;
|
|
127852
128726
|
lastStateChangedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
128727
|
+
sessionAssociation?: Maybe<AgentSessionAssociation>;
|
|
127853
128728
|
sessionId?: Maybe<Scalars['String']['output']>;
|
|
127854
128729
|
startTime?: Maybe<Scalars['DateTime']['output']>;
|
|
127855
128730
|
state?: Maybe<JiraAgentSessionState>;
|
|
@@ -127883,6 +128758,7 @@ export declare enum JiraAgentSessionInvocationType {
|
|
|
127883
128758
|
IssueManualTrigger = "ISSUE_MANUAL_TRIGGER",
|
|
127884
128759
|
IssueWorkflowAssignment = "ISSUE_WORKFLOW_ASSIGNMENT",
|
|
127885
128760
|
LocalAgentSession = "LOCAL_AGENT_SESSION",
|
|
128761
|
+
LoomVideoToJiraSuggestions = "LOOM_VIDEO_TO_JIRA_SUGGESTIONS",
|
|
127886
128762
|
Unknown = "UNKNOWN"
|
|
127887
128763
|
}
|
|
127888
128764
|
export declare enum JiraAgentSessionPreExecutionStep {
|
|
@@ -129207,6 +130083,7 @@ export type JiraBacklog = {
|
|
|
129207
130083
|
export type JiraBacklogAgentSetupBanner = {
|
|
129208
130084
|
__typename?: 'JiraBacklogAgentSetupBanner';
|
|
129209
130085
|
agentAri?: Maybe<Scalars['ID']['output']>;
|
|
130086
|
+
isEligible?: Maybe<Scalars['Boolean']['output']>;
|
|
129210
130087
|
spaceAri?: Maybe<Scalars['ID']['output']>;
|
|
129211
130088
|
};
|
|
129212
130089
|
export type JiraBacklogApplicationProperty = {
|
|
@@ -130197,7 +131074,9 @@ export type JiraBoardViewCanMoveIssuesBetweenSwimlanesArgs = {
|
|
|
130197
131074
|
export type JiraBoardViewCardOptionsArgs = {
|
|
130198
131075
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
130199
131076
|
enabledOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
131077
|
+
filter?: InputMaybe<JiraBoardViewCardOptionFilter>;
|
|
130200
131078
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131079
|
+
searchText?: InputMaybe<Scalars['String']['input']>;
|
|
130201
131080
|
};
|
|
130202
131081
|
export type JiraBoardViewColumnsArgs = {
|
|
130203
131082
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -130244,6 +131123,14 @@ export type JiraBoardViewUnmappedStatusesArgs = {
|
|
|
130244
131123
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
130245
131124
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
130246
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
|
+
};
|
|
130247
131134
|
export type JiraBoardViewAssigneeColumn = JiraBoardViewColumn & Node & {
|
|
130248
131135
|
__typename?: 'JiraBoardViewAssigneeColumn';
|
|
130249
131136
|
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -130255,6 +131142,7 @@ export type JiraBoardViewCardOption = {
|
|
|
130255
131142
|
canToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
130256
131143
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
130257
131144
|
id: Scalars['ID']['output'];
|
|
131145
|
+
isRecommended?: Maybe<Scalars['Boolean']['output']>;
|
|
130258
131146
|
};
|
|
130259
131147
|
export type JiraBoardViewCardOptionConnection = {
|
|
130260
131148
|
__typename?: 'JiraBoardViewCardOptionConnection';
|
|
@@ -130267,6 +131155,11 @@ export type JiraBoardViewCardOptionEdge = {
|
|
|
130267
131155
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
130268
131156
|
node?: Maybe<JiraBoardViewCardOption>;
|
|
130269
131157
|
};
|
|
131158
|
+
export declare enum JiraBoardViewCardOptionFilter {
|
|
131159
|
+
All = "ALL",
|
|
131160
|
+
Disabled = "DISABLED",
|
|
131161
|
+
Enabled = "ENABLED"
|
|
131162
|
+
}
|
|
130270
131163
|
export type JiraBoardViewCategoryColumn = JiraBoardViewColumn & Node & {
|
|
130271
131164
|
__typename?: 'JiraBoardViewCategoryColumn';
|
|
130272
131165
|
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -130402,6 +131295,7 @@ export type JiraBoardViewFieldCardOption = JiraBoardViewCardOption & {
|
|
|
130402
131295
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
130403
131296
|
field?: Maybe<JiraField>;
|
|
130404
131297
|
id: Scalars['ID']['output'];
|
|
131298
|
+
isRecommended?: Maybe<Scalars['Boolean']['output']>;
|
|
130405
131299
|
};
|
|
130406
131300
|
export type JiraBoardViewFieldSwimlane = JiraBoardViewCellContainer & JiraBoardViewSwimlane & Node & {
|
|
130407
131301
|
__typename?: 'JiraBoardViewFieldSwimlane';
|
|
@@ -130564,6 +131458,7 @@ export type JiraBoardViewStatusColumn = JiraBoardViewColumn & Node & {
|
|
|
130564
131458
|
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
130565
131459
|
canInlineRename?: Maybe<Scalars['Boolean']['output']>;
|
|
130566
131460
|
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
131461
|
+
endUserAgents?: Maybe<JiraEndUserAgentConnection>;
|
|
130567
131462
|
id: Scalars['ID']['output'];
|
|
130568
131463
|
mappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
|
|
130569
131464
|
mappedWorkflows?: Maybe<JiraBoardViewWorkflowConnection>;
|
|
@@ -130572,11 +131467,18 @@ export type JiraBoardViewStatusColumn = JiraBoardViewColumn & Node & {
|
|
|
130572
131467
|
name?: Maybe<Scalars['String']['output']>;
|
|
130573
131468
|
simpleTransitions?: Maybe<JiraTransitionConnection>;
|
|
130574
131469
|
statuses?: Maybe<Array<Maybe<JiraStatus>>>;
|
|
131470
|
+
totalAgentCount?: Maybe<JiraBoardViewTotalAgentCount>;
|
|
130575
131471
|
totalIssueCount?: Maybe<Scalars['Int']['output']>;
|
|
130576
131472
|
totalTransitionCount?: Maybe<Scalars['Int']['output']>;
|
|
130577
131473
|
transitionAgents?: Maybe<Array<JiraTransitionAgent>>;
|
|
130578
131474
|
workflows?: Maybe<JiraTransitionConnection>;
|
|
130579
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
|
+
};
|
|
130580
131482
|
export type JiraBoardViewStatusColumnMappedStatusesArgs = {
|
|
130581
131483
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
130582
131484
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -130589,6 +131491,9 @@ export type JiraBoardViewStatusColumnSimpleTransitionsArgs = {
|
|
|
130589
131491
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
130590
131492
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
130591
131493
|
};
|
|
131494
|
+
export type JiraBoardViewStatusColumnTotalAgentCountArgs = {
|
|
131495
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
131496
|
+
};
|
|
130592
131497
|
export type JiraBoardViewStatusColumnTotalIssueCountArgs = {
|
|
130593
131498
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
130594
131499
|
};
|
|
@@ -130661,9 +131566,11 @@ export type JiraBoardViewSyntheticFieldCardOption = JiraBoardViewCardOption & {
|
|
|
130661
131566
|
canToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
130662
131567
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
130663
131568
|
id: Scalars['ID']['output'];
|
|
131569
|
+
isRecommended?: Maybe<Scalars['Boolean']['output']>;
|
|
130664
131570
|
name?: Maybe<Scalars['String']['output']>;
|
|
130665
131571
|
type?: Maybe<JiraSyntheticFieldCardOptionType>;
|
|
130666
131572
|
};
|
|
131573
|
+
export type JiraBoardViewTotalAgentCount = JiraBoardViewAgentCount | JiraBoardViewAgentCountAboveLimit;
|
|
130667
131574
|
export type JiraBoardViewWorkflow = {
|
|
130668
131575
|
__typename?: 'JiraBoardViewWorkflow';
|
|
130669
131576
|
canEdit?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -130867,6 +131774,21 @@ export type JiraBulkMoveClassificationInput = {
|
|
|
130867
131774
|
sourceClassificationIds: Array<Scalars['ID']['input']>;
|
|
130868
131775
|
targetClassificationId: Scalars['ID']['input'];
|
|
130869
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
|
+
};
|
|
130870
131792
|
export type JiraBulkMoveInput = {
|
|
130871
131793
|
inferClassificationDefaults: Scalars['Boolean']['input'];
|
|
130872
131794
|
inferFieldDefaults: Scalars['Boolean']['input'];
|
|
@@ -130881,6 +131803,11 @@ export type JiraBulkMoveInput = {
|
|
|
130881
131803
|
targetProjectId: Scalars['ID']['input'];
|
|
130882
131804
|
targetStatuses?: InputMaybe<Array<JiraBulkMoveStatusInput>>;
|
|
130883
131805
|
};
|
|
131806
|
+
export type JiraBulkMoveIssueTypeCount = {
|
|
131807
|
+
__typename?: 'JiraBulkMoveIssueTypeCount';
|
|
131808
|
+
count: Scalars['Int']['output'];
|
|
131809
|
+
issueType?: Maybe<JiraIssueType>;
|
|
131810
|
+
};
|
|
130884
131811
|
export type JiraBulkMoveMandatoryFieldInput = {
|
|
130885
131812
|
fieldId: Scalars['ID']['input'];
|
|
130886
131813
|
value: JiraBulkMoveMandatoryFieldValueInput;
|
|
@@ -130895,6 +131822,11 @@ export declare enum JiraBulkMoveMandatoryFieldValueType {
|
|
|
130895
131822
|
Adf = "ADF",
|
|
130896
131823
|
Raw = "RAW"
|
|
130897
131824
|
}
|
|
131825
|
+
export type JiraBulkMoveSourceProject = {
|
|
131826
|
+
__typename?: 'JiraBulkMoveSourceProject';
|
|
131827
|
+
issueTypes: Array<JiraBulkMoveIssueTypeCount>;
|
|
131828
|
+
project?: Maybe<JiraProject>;
|
|
131829
|
+
};
|
|
130898
131830
|
export type JiraBulkMoveStatusInput = {
|
|
130899
131831
|
sourceStatusIds: Array<Scalars['ID']['input']>;
|
|
130900
131832
|
targetStatusId: Scalars['ID']['input'];
|
|
@@ -134583,6 +135515,55 @@ export type JiraEnablePlanFeaturePayloadGraphQl = Payload & {
|
|
|
134583
135515
|
plan?: Maybe<JiraPlan>;
|
|
134584
135516
|
success: Scalars['Boolean']['output'];
|
|
134585
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
|
+
};
|
|
134586
135567
|
export type JiraEntitlementFieldInput = {
|
|
134587
135568
|
entitlement: JiraEntitlementInput;
|
|
134588
135569
|
fieldId: Scalars['ID']['input'];
|
|
@@ -134809,6 +135790,7 @@ export type JiraFavouriteValue = Node & {
|
|
|
134809
135790
|
export type JiraFetchBulkOperationDetailsResponse = {
|
|
134810
135791
|
__typename?: 'JiraFetchBulkOperationDetailsResponse';
|
|
134811
135792
|
bulkEditFields?: Maybe<JiraBulkEditFieldsConnection>;
|
|
135793
|
+
bulkMoveDetails?: Maybe<JiraBulkMoveDetails>;
|
|
134812
135794
|
bulkTransitions?: Maybe<JiraBulkTransitionConnection>;
|
|
134813
135795
|
canBulkInvokeAgentSessions?: Maybe<Scalars['Boolean']['output']>;
|
|
134814
135796
|
mayDisableNotifications?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -140666,6 +141648,14 @@ export type JiraJourneyWorkdayIntegrationTriggerConfigurationInput = {
|
|
|
140666
141648
|
ruleId?: InputMaybe<Scalars['ID']['input']>;
|
|
140667
141649
|
type?: InputMaybe<JiraJourneyTriggerType>;
|
|
140668
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
|
+
};
|
|
140669
141659
|
export type JiraJqlAgentStateCategoryFieldValue = JiraJqlFieldValue & {
|
|
140670
141660
|
__typename?: 'JiraJqlAgentStateCategoryFieldValue';
|
|
140671
141661
|
displayName: Scalars['String']['output'];
|
|
@@ -147024,6 +148014,7 @@ export type JiraQuery = {
|
|
|
147024
148014
|
systemFilters?: Maybe<JiraSystemFilterConnection>;
|
|
147025
148015
|
timelineToggleableFieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
147026
148016
|
uiModifications?: Maybe<Array<JiraAppUiModifications>>;
|
|
148017
|
+
unanchoredAgentSessionsByScope?: Maybe<AgentSessionConnection>;
|
|
147027
148018
|
userHomePage?: Maybe<JiraHomePage>;
|
|
147028
148019
|
userNavigationConfiguration?: Maybe<JiraUserNavigationConfiguration>;
|
|
147029
148020
|
userPreferences?: Maybe<JiraUserPreferences>;
|
|
@@ -147211,6 +148202,7 @@ export type JiraQueryCfoAnalyticsArgs = {
|
|
|
147211
148202
|
metrics: Array<JiraCfoMetricInput>;
|
|
147212
148203
|
sortInput?: InputMaybe<Array<InputMaybe<JiraCfoSortInput>>>;
|
|
147213
148204
|
startDate: Scalars['DateTime']['input'];
|
|
148205
|
+
timezoneOffset?: InputMaybe<Scalars['String']['input']>;
|
|
147214
148206
|
};
|
|
147215
148207
|
export type JiraQueryCfoConfigsArgs = {
|
|
147216
148208
|
cloudId: Scalars['ID']['input'];
|
|
@@ -147221,6 +148213,7 @@ export type JiraQueryCfoInsightsArgs = {
|
|
|
147221
148213
|
endDate: Scalars['DateTime']['input'];
|
|
147222
148214
|
insightOn?: InputMaybe<Array<InputMaybe<JiraCfoDimensionInput>>>;
|
|
147223
148215
|
startDate: Scalars['DateTime']['input'];
|
|
148216
|
+
timezoneOffset?: InputMaybe<Scalars['String']['input']>;
|
|
147224
148217
|
};
|
|
147225
148218
|
export type JiraQueryCfoRecommendationGroupsArgs = {
|
|
147226
148219
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -147735,6 +148728,7 @@ export type JiraQueryJiraCalendarArgs = {
|
|
|
147735
148728
|
};
|
|
147736
148729
|
export type JiraQueryJiraCanBulkInvokeAgentSessionsForJqlArgs = {
|
|
147737
148730
|
cloudId: Scalars['ID']['input'];
|
|
148731
|
+
excludedIssueIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
147738
148732
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
147739
148733
|
issueSearchInput: JiraIssueSearchInput;
|
|
147740
148734
|
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
@@ -148405,6 +149399,11 @@ export type JiraQueryTimelineToggleableFieldSetsArgs = {
|
|
|
148405
149399
|
export type JiraQueryUiModificationsArgs = {
|
|
148406
149400
|
context: JiraUiModificationsContextInput;
|
|
148407
149401
|
};
|
|
149402
|
+
export type JiraQueryUnanchoredAgentSessionsByScopeArgs = {
|
|
149403
|
+
cloudId: Scalars['ID']['input'];
|
|
149404
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
149405
|
+
scope: JiraUnanchoredAgentSessionsScopeInput;
|
|
149406
|
+
};
|
|
148408
149407
|
export type JiraQueryUserHomePageArgs = {
|
|
148409
149408
|
cloudId: Scalars['ID']['input'];
|
|
148410
149409
|
};
|
|
@@ -148545,6 +149544,7 @@ export type JiraRecentItemsFilter = {
|
|
|
148545
149544
|
export declare enum JiraRecommendationCategory {
|
|
148546
149545
|
Component = "COMPONENT",
|
|
148547
149546
|
CustomField = "CUSTOM_FIELD",
|
|
149547
|
+
DuplicateCustomField = "DUPLICATE_CUSTOM_FIELD",
|
|
148548
149548
|
IssueArchival = "ISSUE_ARCHIVAL",
|
|
148549
149549
|
PermissionGrantScheme = "PERMISSION_GRANT_SCHEME",
|
|
148550
149550
|
PriorityScheme = "PRIORITY_SCHEME",
|
|
@@ -153930,6 +154930,11 @@ export type JiraSuggestedIssueInput = {
|
|
|
153930
154930
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
153931
154931
|
summary?: InputMaybe<Scalars['String']['input']>;
|
|
153932
154932
|
};
|
|
154933
|
+
export type JiraSummaryAgentSetupTile = {
|
|
154934
|
+
__typename?: 'JiraSummaryAgentSetupTile';
|
|
154935
|
+
agentAri?: Maybe<Scalars['ID']['output']>;
|
|
154936
|
+
isEligible?: Maybe<Scalars['Boolean']['output']>;
|
|
154937
|
+
};
|
|
153933
154938
|
export type JiraSupportsUpdatedDependentFields = {
|
|
153934
154939
|
field?: Maybe<JiraIssueField>;
|
|
153935
154940
|
updatedDependentFields?: Maybe<JiraIssueFieldConnection>;
|
|
@@ -154640,6 +155645,9 @@ export declare enum JiraUiModificationsViewType {
|
|
|
154640
155645
|
IssueViewAgentView = "IssueViewAgentView",
|
|
154641
155646
|
JsmRequestCreate = "JSMRequestCreate"
|
|
154642
155647
|
}
|
|
155648
|
+
export type JiraUnanchoredAgentSessionsScopeInput = {
|
|
155649
|
+
boardId?: InputMaybe<Scalars['ID']['input']>;
|
|
155650
|
+
};
|
|
154643
155651
|
export type JiraUnlinkIssuesFromIncidentMutationInput = {
|
|
154644
155652
|
incidentId: Scalars['ID']['input'];
|
|
154645
155653
|
issueIds: Array<Scalars['ID']['input']>;
|
|
@@ -157184,7 +158192,7 @@ export type JpdBoardViewConfig = {
|
|
|
157184
158192
|
__typename?: 'JpdBoardViewConfig';
|
|
157185
158193
|
cardSize?: Maybe<JpdViewCardSize>;
|
|
157186
158194
|
colorConfig?: Maybe<JpdViewColorConfigSimple>;
|
|
157187
|
-
columns?: Maybe<
|
|
158195
|
+
columns?: Maybe<JpdViewColumnsConfig>;
|
|
157188
158196
|
connectionsFilters?: Maybe<JpdViewFilters>;
|
|
157189
158197
|
connectionsLayoutType?: Maybe<JpdViewConnectionsLayoutType>;
|
|
157190
158198
|
enabledAutoSave?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -157200,7 +158208,7 @@ export type JpdBoardViewConfig = {
|
|
|
157200
158208
|
export type JpdBoardViewConfigInput = {
|
|
157201
158209
|
cardSize?: InputMaybe<JpdViewCardSize>;
|
|
157202
158210
|
colorConfig?: InputMaybe<JpdViewColorConfigSimpleInput>;
|
|
157203
|
-
columns?: InputMaybe<
|
|
158211
|
+
columns?: InputMaybe<JpdViewColumnsConfigInput>;
|
|
157204
158212
|
connectionsFilters?: InputMaybe<JpdViewFiltersInput>;
|
|
157205
158213
|
connectionsLayoutType?: InputMaybe<JpdViewConnectionsLayoutType>;
|
|
157206
158214
|
enabledAutoSave?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -157667,6 +158675,15 @@ export declare enum JpdViewColorStyle {
|
|
|
157667
158675
|
Background = "BACKGROUND",
|
|
157668
158676
|
Highlight = "HIGHLIGHT"
|
|
157669
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
|
+
};
|
|
157670
158687
|
export type JpdViewCommentEvent = {
|
|
157671
158688
|
__typename?: 'JpdViewCommentEvent';
|
|
157672
158689
|
actionMadeAt: Scalars['String']['output'];
|
|
@@ -157759,16 +158776,23 @@ export declare enum JpdViewIssueLayoutTypeWithSummary {
|
|
|
157759
158776
|
}
|
|
157760
158777
|
export type JpdViewLayoutConfig = {
|
|
157761
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';
|
|
157762
158788
|
connectionsFilters?: Maybe<JpdViewFilters>;
|
|
157763
158789
|
field?: Maybe<Scalars['String']['output']>;
|
|
157764
|
-
hideEmpty?: Maybe<Scalars['Boolean']['output']>;
|
|
157765
158790
|
showMatchingConnections?: Maybe<Scalars['Boolean']['output']>;
|
|
157766
158791
|
valuesAndOrder?: Maybe<Array<Scalars['String']['output']>>;
|
|
157767
158792
|
};
|
|
157768
|
-
export type
|
|
158793
|
+
export type JpdViewLayoutGroupInput = {
|
|
157769
158794
|
connectionsFilters?: InputMaybe<JpdViewFiltersInput>;
|
|
157770
158795
|
field: Scalars['String']['input'];
|
|
157771
|
-
hideEmpty?: InputMaybe<Scalars['Boolean']['input']>;
|
|
157772
158796
|
showMatchingConnections?: InputMaybe<Scalars['Boolean']['input']>;
|
|
157773
158797
|
valuesAndOrder?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
157774
158798
|
};
|
|
@@ -161434,6 +162458,20 @@ export type KitsuneCreateSnippetPayload = Payload & {
|
|
|
161434
162458
|
snippet?: Maybe<KitsuneSnippet>;
|
|
161435
162459
|
success: Scalars['Boolean']['output'];
|
|
161436
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
|
+
};
|
|
161437
162475
|
export type KitsuneCreateSpaceInput = {
|
|
161438
162476
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
161439
162477
|
name: Scalars['String']['input'];
|
|
@@ -161853,6 +162891,7 @@ export declare enum KitsuneJobStatus {
|
|
|
161853
162891
|
}
|
|
161854
162892
|
export declare enum KitsuneJobType {
|
|
161855
162893
|
BackfillAutoTagging = "BACKFILL_AUTO_TAGGING",
|
|
162894
|
+
CreateSnippets = "CREATE_SNIPPETS",
|
|
161856
162895
|
DeleteFeedback = "DELETE_FEEDBACK",
|
|
161857
162896
|
DeleteSpace = "DELETE_SPACE",
|
|
161858
162897
|
ExportFeedback = "EXPORT_FEEDBACK",
|
|
@@ -162289,6 +163328,7 @@ export type KitsuneSpace = Node & {
|
|
|
162289
163328
|
__typename?: 'KitsuneSpace';
|
|
162290
163329
|
accessLevel: KitsuneSpaceAccessLevel;
|
|
162291
163330
|
accessPrincipals: KitsuneSpaceAccessPrincipalConnection;
|
|
163331
|
+
autopilotEnabled: Scalars['Boolean']['output'];
|
|
162292
163332
|
description?: Maybe<Scalars['String']['output']>;
|
|
162293
163333
|
feedbacks: KitsuneFeedbackConnection;
|
|
162294
163334
|
fields: KitsuneFieldConnection;
|
|
@@ -162503,6 +163543,7 @@ export type KitsuneUpdateSnippetPayload = Payload & {
|
|
|
162503
163543
|
};
|
|
162504
163544
|
export type KitsuneUpdateSpaceInput = {
|
|
162505
163545
|
accessLevel?: InputMaybe<KitsuneSpaceAccessLevel>;
|
|
163546
|
+
autopilotEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
162506
163547
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
162507
163548
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
162508
163549
|
};
|
|
@@ -165473,8 +166514,15 @@ export type MarkCommentsAsReadPayload = {
|
|
|
165473
166514
|
};
|
|
165474
166515
|
export type MarketplaceAgentCapabilities = {
|
|
165475
166516
|
__typename?: 'MarketplaceAgentCapabilities';
|
|
166517
|
+
examplePrompts?: Maybe<Array<Scalars['String']['output']>>;
|
|
166518
|
+
skills?: Maybe<Array<MarketplaceAgentSkill>>;
|
|
165476
166519
|
tools?: Maybe<Array<MarketplaceAgentTool>>;
|
|
165477
166520
|
};
|
|
166521
|
+
export type MarketplaceAgentSkill = {
|
|
166522
|
+
__typename?: 'MarketplaceAgentSkill';
|
|
166523
|
+
description: Scalars['String']['output'];
|
|
166524
|
+
name: Scalars['String']['output'];
|
|
166525
|
+
};
|
|
165478
166526
|
export type MarketplaceAgentTool = {
|
|
165479
166527
|
__typename?: 'MarketplaceAgentTool';
|
|
165480
166528
|
accessType: MarketplaceAgentToolAccessType;
|
|
@@ -165491,6 +166539,7 @@ export type MarketplaceApp = {
|
|
|
165491
166539
|
appKey: Scalars['String']['output'];
|
|
165492
166540
|
categories: Array<MarketplaceAppCategory>;
|
|
165493
166541
|
createdAt: Scalars['DateTime']['output'];
|
|
166542
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
165494
166543
|
distribution?: Maybe<MarketplaceAppDistribution>;
|
|
165495
166544
|
entityStatus: MarketplaceEntityStatus;
|
|
165496
166545
|
forumsUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -172343,7 +173392,9 @@ export type MercuryCreateDateCustomFieldDefinitionInput = {
|
|
|
172343
173392
|
};
|
|
172344
173393
|
export type MercuryCreateDraftPlanInput = {
|
|
172345
173394
|
fiscalYearStart: Scalars['String']['input'];
|
|
173395
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
172346
173396
|
organizationId: Scalars['ID']['input'];
|
|
173397
|
+
sourcePlanId?: InputMaybe<Scalars['ID']['input']>;
|
|
172347
173398
|
};
|
|
172348
173399
|
export type MercuryCreateDraftPlanPayload = Payload & {
|
|
172349
173400
|
__typename?: 'MercuryCreateDraftPlanPayload';
|
|
@@ -175785,6 +176836,8 @@ export type MercuryMutationApi = {
|
|
|
175785
176836
|
updateFocusAreaTargetDate?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
175786
176837
|
updateFocusAreaTypeFieldConfigurations?: Maybe<MercuryUpdateFieldConfigurationsPayload>;
|
|
175787
176838
|
updatePortfolioName?: Maybe<MercuryUpdatePortfolioPayload>;
|
|
176839
|
+
updatePortfolioPublishingState?: Maybe<MercuryUpdatePortfolioPublishingStatePayload>;
|
|
176840
|
+
updatePortfolioSettings?: Maybe<MercuryUpdatePortfolioSettingsPayload>;
|
|
175788
176841
|
updateUserNotificationSettings?: Maybe<MercuryUpdateUserNotificationSettingsPayload>;
|
|
175789
176842
|
validateFocusAreaArchival?: Maybe<MercuryArchiveFocusAreaValidationPayload>;
|
|
175790
176843
|
validateFocusAreasForRanking?: Maybe<MercuryValidateFocusAreasForRankingPayload>;
|
|
@@ -175978,6 +177031,12 @@ export type MercuryMutationApiUpdateFocusAreaTypeFieldConfigurationsArgs = {
|
|
|
175978
177031
|
export type MercuryMutationApiUpdatePortfolioNameArgs = {
|
|
175979
177032
|
input: MercuryUpdatePortfolioNameInput;
|
|
175980
177033
|
};
|
|
177034
|
+
export type MercuryMutationApiUpdatePortfolioPublishingStateArgs = {
|
|
177035
|
+
input: MercuryUpdatePortfolioPublishingStateInput;
|
|
177036
|
+
};
|
|
177037
|
+
export type MercuryMutationApiUpdatePortfolioSettingsArgs = {
|
|
177038
|
+
input: MercuryUpdatePortfolioSettingsInput;
|
|
177039
|
+
};
|
|
175981
177040
|
export type MercuryMutationApiUpdateUserNotificationSettingsArgs = {
|
|
175982
177041
|
input: MercuryUpdateUserNotificationSettingsInput;
|
|
175983
177042
|
};
|
|
@@ -177295,6 +178354,7 @@ export type MercuryPlan = Node & {
|
|
|
177295
178354
|
id: Scalars['ID']['output'];
|
|
177296
178355
|
isSystemManaged: Scalars['Boolean']['output'];
|
|
177297
178356
|
memberCountAllocationTotals: Array<MercuryPlanMemberCountAllocationComputedByPlan>;
|
|
178357
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
177298
178358
|
organizationId: Scalars['ID']['output'];
|
|
177299
178359
|
organizationPlanAuthority?: Maybe<MercuryPlanOrganizationAuthority>;
|
|
177300
178360
|
startDate: Scalars['Date']['output'];
|
|
@@ -177462,6 +178522,8 @@ export type MercuryPortfolio = {
|
|
|
177462
178522
|
linkedFocusAreaSummary?: Maybe<MercuryPortfolioFocusAreaSummary>;
|
|
177463
178523
|
name: Scalars['String']['output'];
|
|
177464
178524
|
owner?: Maybe<User>;
|
|
178525
|
+
publishingState?: Maybe<MercuryPortfolioPublishingState>;
|
|
178526
|
+
settings?: Maybe<MercuryPortfolioSettings>;
|
|
177465
178527
|
starred?: Maybe<Scalars['Boolean']['output']>;
|
|
177466
178528
|
updatedBy?: Maybe<User>;
|
|
177467
178529
|
updatedDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -177515,6 +178577,24 @@ export type MercuryPortfolioHumanResourceAllocations = {
|
|
|
177515
178577
|
totalAsPercentageOfBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
177516
178578
|
totalPositions?: Maybe<Scalars['BigDecimal']['output']>;
|
|
177517
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
|
+
};
|
|
177518
178598
|
export type MercuryPortfolioSort = {
|
|
177519
178599
|
field: MercuryPortfolioSortField;
|
|
177520
178600
|
order: SortOrder;
|
|
@@ -180700,6 +181780,26 @@ export type MercuryUpdatePortfolioPayload = Payload & {
|
|
|
180700
181780
|
success: Scalars['Boolean']['output'];
|
|
180701
181781
|
updatedPortfolio?: Maybe<MercuryPortfolio>;
|
|
180702
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
|
+
};
|
|
180703
181803
|
export type MercuryUpdateRateCardChangeInput = {
|
|
180704
181804
|
cloudId: Scalars['ID']['input'];
|
|
180705
181805
|
effectiveStartDate?: InputMaybe<Scalars['Date']['input']>;
|
|
@@ -181468,6 +182568,7 @@ export type Mutation = {
|
|
|
181468
182568
|
admin_createAuditLogBackgroundQuery?: Maybe<AdminAuditLogBackgroundQueryPayload>;
|
|
181469
182569
|
admin_createAuditLogBackgroundQueryV2?: Maybe<AdminAuditLogBackgroundQueryPayload>;
|
|
181470
182570
|
admin_createInvitePolicy?: Maybe<AdminCreateInvitePolicyResponsePayload>;
|
|
182571
|
+
admin_createOAuthClient?: Maybe<AdminOAuthClientSecretPayload>;
|
|
181471
182572
|
admin_createOutboundAuthService?: Maybe<AdminCreateOutboundAuthServicePayload>;
|
|
181472
182573
|
admin_deactivateUser?: Maybe<AdminDeactivateResponsePayload>;
|
|
181473
182574
|
admin_deleteAccessUrl?: Maybe<AdminAccessUrlDeletionResponsePayload>;
|
|
@@ -181479,7 +182580,9 @@ export type Mutation = {
|
|
|
181479
182580
|
admin_registerNewDataSourceId?: Maybe<AdminRegisterNewDataSourceIdPayload>;
|
|
181480
182581
|
admin_releaseImpersonationUser?: Maybe<AdminReleaseImpersonationResponsePayload>;
|
|
181481
182582
|
admin_removeUser?: Maybe<AdminRemoveUserResponsePayload>;
|
|
182583
|
+
admin_revokeOAuthClient?: Maybe<AdminRevokeOAuthClientPayload>;
|
|
181482
182584
|
admin_revokeRole?: Maybe<AdminRevokeRoleResponsePayload>;
|
|
182585
|
+
admin_rotateOAuthClientSecret?: Maybe<AdminOAuthClientSecretPayload>;
|
|
181483
182586
|
admin_scimRuleCreate?: Maybe<AdminScimRuleMutationPayload>;
|
|
181484
182587
|
admin_scimRuleDelete?: Maybe<AdminScimRuleMutationPayload>;
|
|
181485
182588
|
admin_scimRuleUpdate?: Maybe<AdminScimRuleMutationPayload>;
|
|
@@ -181491,6 +182594,7 @@ export type Mutation = {
|
|
|
181491
182594
|
admin_updateAiPolicy?: Maybe<AdminUpdateAiPolicyResponsePayload>;
|
|
181492
182595
|
admin_updateAuditLogBackgroundQuery?: Maybe<AdminAuditLogBackgroundQueryPayload>;
|
|
181493
182596
|
admin_updateAuditLogBackgroundQueryV2?: Maybe<AdminAuditLogBackgroundQueryPayload>;
|
|
182597
|
+
admin_updateEnforceBoundarySetting?: Maybe<AdminUpdateEnforceBoundarySettingPayload>;
|
|
181494
182598
|
admin_updateInvitePolicy?: Maybe<AdminUpdateInvitePolicyResponsePayload>;
|
|
181495
182599
|
agentAI_panelRefresh?: Maybe<AgentAiPanelRefreshResult>;
|
|
181496
182600
|
agentStudio_addGroupsToCreatePermission?: Maybe<AgentStudioAddGroupsToCreatePermissionPayload>;
|
|
@@ -181560,6 +182664,7 @@ export type Mutation = {
|
|
|
181560
182664
|
agentWorkspace_editShift?: Maybe<AgentWorkspaceEditShiftPayload>;
|
|
181561
182665
|
agentWorkspace_endBreak?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
181562
182666
|
agentWorkspace_restoreSkill?: Maybe<AgentWorkspaceRestoreSkillPayload>;
|
|
182667
|
+
agentWorkspace_saveRoutingSetup?: Maybe<AgentWorkspaceSaveRoutingSetupPayload>;
|
|
181563
182668
|
agentWorkspace_setAvailabilityStatus?: Maybe<AgentWorkspaceAvailabilityStatusPayload>;
|
|
181564
182669
|
agentWorkspace_setCapacityConfiguration?: Maybe<AgentWorkspaceSetCapacityConfigurationPayload>;
|
|
181565
182670
|
agentWorkspace_setDefaultCapacity?: Maybe<AgentWorkspaceSetDefaultCapacityPayload>;
|
|
@@ -181613,6 +182718,7 @@ export type Mutation = {
|
|
|
181613
182718
|
artifact_authorContent?: Maybe<ArtifactAuthorContentPayload>;
|
|
181614
182719
|
artifact_createArtifact?: Maybe<ArtifactCreatePayload>;
|
|
181615
182720
|
artifact_createContent?: Maybe<ArtifactCreateContentPayload>;
|
|
182721
|
+
artifact_updateArtifact?: Maybe<ArtifactUpdatePayload>;
|
|
181616
182722
|
assetsDM_addDataDictionary?: Maybe<AssetsDmAddDataDictionaryResponse>;
|
|
181617
182723
|
assetsDM_addDefaultAttributeMapping?: Maybe<AssetsDmAddDefaultAttributeMappingResponse>;
|
|
181618
182724
|
assetsDM_associateObjectTag?: Maybe<AssetsDmObjectTagAssociateResponse>;
|
|
@@ -182121,6 +183227,7 @@ export type Mutation = {
|
|
|
182121
183227
|
csm_updateProduct?: Maybe<CustomerServiceProductUpdatePayload>;
|
|
182122
183228
|
csm_updateStatusMapping?: Maybe<CustomerServiceStatusMappingUpdatePayload>;
|
|
182123
183229
|
csm_updateTemplateForm?: Maybe<CustomerServiceTemplateFormUpdatePayload>;
|
|
183230
|
+
csm_updateWorkItemSupportSite?: Maybe<CustomerServiceUpdateWorkItemSupportSitePayload>;
|
|
182124
183231
|
csm_upsertBranding?: Maybe<CustomerServiceBrandingUpsertPayload>;
|
|
182125
183232
|
csm_upsertEmailChannelConfiguration?: Maybe<CustomerServiceEmailChannelConfigUpsertPayload>;
|
|
182126
183233
|
csm_upsertHelpCenterMetadata?: Maybe<CustomerServiceHelpCenterMetadataUpsertPayload>;
|
|
@@ -182311,6 +183418,8 @@ export type Mutation = {
|
|
|
182311
183418
|
goals_updateAppPermissionPolicies?: Maybe<TownsquareUpdateGoalsAppPermissionPoliciesPayload>;
|
|
182312
183419
|
goals_updateSlackSubscription?: Maybe<TownsquareGoalsUpdateSlackSubscriptionPayload>;
|
|
182313
183420
|
grantContentAccess?: Maybe<GrantContentAccessPayload>;
|
|
183421
|
+
graphInference_ensureWeeklyReviewPack?: Maybe<GraphInferenceReviewPackSummary>;
|
|
183422
|
+
graphInference_generateReviewPack?: Maybe<GraphInferenceReviewPackSummary>;
|
|
182314
183423
|
graphInference_inferenceAppAdd?: Maybe<GraphInferenceInferenceAppMutationPayload>;
|
|
182315
183424
|
graphInference_inferenceAppAddV2?: Maybe<GraphInferenceInferenceAppMutationPayloadV2>;
|
|
182316
183425
|
graphInference_inferenceAppAddV3?: Maybe<GraphInferenceInferenceAppMutationPayloadV3>;
|
|
@@ -182323,6 +183432,8 @@ export type Mutation = {
|
|
|
182323
183432
|
graphInference_inferenceEval?: Maybe<GraphInferenceInferenceEvalResponse>;
|
|
182324
183433
|
graphInference_inferenceEvalStart?: Maybe<GraphInferenceInferenceEvalStartResponse>;
|
|
182325
183434
|
graphInference_inferencePreview?: Maybe<GraphInferenceInferencePreviewResponse>;
|
|
183435
|
+
graphInference_inlineEvalStart?: Maybe<GraphInferenceInlineEvalStartResponse>;
|
|
183436
|
+
graphInference_submitReview?: Maybe<GraphInferenceReviewPackSummary>;
|
|
182326
183437
|
graphIntegration_actionAdminManagementUpdateActionConfiguration?: Maybe<GraphIntegrationActionAdminManagementUpdateActionConfigurationPayload>;
|
|
182327
183438
|
graphIntegration_addTwgCapabilityContainer?: Maybe<GraphIntegrationAddTwgCapabilityContainerPayload>;
|
|
182328
183439
|
graphIntegration_createDataConnectorConnection?: Maybe<GraphIntegrationCreateConnectionPayload>;
|
|
@@ -182377,6 +183488,7 @@ export type Mutation = {
|
|
|
182377
183488
|
graphStoreV2_createJiraVersionLinksExternalFeatureFlag?: Maybe<GraphStoreV2CreateJiraVersionLinksExternalFeatureFlagPayload>;
|
|
182378
183489
|
graphStoreV2_createJiraWorkItemDismissedKnowledgeBaseEntity?: Maybe<GraphStoreV2CreateJiraWorkItemDismissedKnowledgeBaseEntityPayload>;
|
|
182379
183490
|
graphStoreV2_createJiraWorkItemHasLinkedKnowledgeBaseEntity?: Maybe<GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityPayload>;
|
|
183491
|
+
graphStoreV2_createJiraWorkItemImpactsCompassComponent?: Maybe<GraphStoreV2CreateJiraWorkItemImpactsCompassComponentPayload>;
|
|
182380
183492
|
graphStoreV2_createJiraWorkItemLinksConfluenceWhiteboard?: Maybe<GraphStoreV2CreateJiraWorkItemLinksConfluenceWhiteboardPayload>;
|
|
182381
183493
|
graphStoreV2_createJiraWorkItemLinksExternalVulnerability?: Maybe<GraphStoreV2CreateJiraWorkItemLinksExternalVulnerabilityPayload>;
|
|
182382
183494
|
graphStoreV2_createJiraWorkItemLinksSupportEscalationEntity?: Maybe<GraphStoreV2CreateJiraWorkItemLinksSupportEscalationEntityPayload>;
|
|
@@ -182412,6 +183524,7 @@ export type Mutation = {
|
|
|
182412
183524
|
graphStoreV2_deleteJiraVersionLinksExternalFeatureFlag?: Maybe<GraphStoreV2DeleteJiraVersionLinksExternalFeatureFlagPayload>;
|
|
182413
183525
|
graphStoreV2_deleteJiraWorkItemDismissedKnowledgeBaseEntity?: Maybe<GraphStoreV2DeleteJiraWorkItemDismissedKnowledgeBaseEntityPayload>;
|
|
182414
183526
|
graphStoreV2_deleteJiraWorkItemHasLinkedKnowledgeBaseEntity?: Maybe<GraphStoreV2DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityPayload>;
|
|
183527
|
+
graphStoreV2_deleteJiraWorkItemImpactsCompassComponent?: Maybe<GraphStoreV2DeleteJiraWorkItemImpactsCompassComponentPayload>;
|
|
182415
183528
|
graphStoreV2_deleteJiraWorkItemLinksConfluenceWhiteboard?: Maybe<GraphStoreV2DeleteJiraWorkItemLinksConfluenceWhiteboardPayload>;
|
|
182416
183529
|
graphStoreV2_deleteJiraWorkItemLinksExternalVulnerability?: Maybe<GraphStoreV2DeleteJiraWorkItemLinksExternalVulnerabilityPayload>;
|
|
182417
183530
|
graphStoreV2_deleteJiraWorkItemLinksSupportEscalationEntity?: Maybe<GraphStoreV2DeleteJiraWorkItemLinksSupportEscalationEntityPayload>;
|
|
@@ -182508,11 +183621,13 @@ export type Mutation = {
|
|
|
182508
183621
|
gravity_applyDraft?: Maybe<GravityDraftPayload>;
|
|
182509
183622
|
gravity_cloneView?: Maybe<JpdView>;
|
|
182510
183623
|
gravity_createDraft?: Maybe<GravityDraftPayload>;
|
|
183624
|
+
gravity_createSection?: Maybe<GravityCreateSectionPayload>;
|
|
182511
183625
|
gravity_createView?: Maybe<JpdView>;
|
|
182512
183626
|
gravity_createViewFromInlinedTemplate?: Maybe<GravityCreateViewFromTemplatePayload>;
|
|
182513
183627
|
gravity_createViewFromTemplate: GravityCreateViewFromTemplatePayload;
|
|
182514
183628
|
gravity_createViewFromUserPrompt?: Maybe<GravityCreateViewFromUserPromptPayload>;
|
|
182515
183629
|
gravity_deleteReaction?: Maybe<GravityDeleteReactionPayload>;
|
|
183630
|
+
gravity_deleteSection?: Maybe<GravityDeleteSectionPayload>;
|
|
182516
183631
|
gravity_deleteView?: Maybe<JpdViewDeleted>;
|
|
182517
183632
|
gravity_discardDraft?: Maybe<GravityDraftPayload>;
|
|
182518
183633
|
gravity_generateViewTemplateFromUserPrompt?: Maybe<GravityGenerateViewTemplateFromUserPromptPayload>;
|
|
@@ -182522,7 +183637,9 @@ export type Mutation = {
|
|
|
182522
183637
|
gravity_setViewArrangement?: Maybe<GravityViewArrangementPayload>;
|
|
182523
183638
|
gravity_startAltaSession?: Maybe<GravityAltaSessionPayload>;
|
|
182524
183639
|
gravity_updateDeliverySettings?: Maybe<GravityUpdateDeliverySettingsPayload>;
|
|
183640
|
+
gravity_updateDeliveryTableSort?: Maybe<GravityUpdateDeliverySettingsPayload>;
|
|
182525
183641
|
gravity_updateDraftContent?: Maybe<GravityDraftPayload>;
|
|
183642
|
+
gravity_updateSection?: Maybe<GravityUpdateSectionPayload>;
|
|
182526
183643
|
gravity_updateView?: Maybe<JpdView>;
|
|
182527
183644
|
gravity_upsertAction?: Maybe<GravityActionPayload>;
|
|
182528
183645
|
growthUnifiedProfile_createEntitlementProfile?: Maybe<GrowthUnifiedProfileCreateEntitlementProfileResponse>;
|
|
@@ -182773,6 +183890,7 @@ export type Mutation = {
|
|
|
182773
183890
|
kitsune_createSectionV2?: Maybe<KitsuneSectionPayload>;
|
|
182774
183891
|
kitsune_createSnippet?: Maybe<KitsuneSnippet>;
|
|
182775
183892
|
kitsune_createSnippetV2?: Maybe<KitsuneCreateSnippetPayload>;
|
|
183893
|
+
kitsune_createSnippets?: Maybe<KitsuneCreateSnippetsPayload>;
|
|
182776
183894
|
kitsune_createSpace?: Maybe<KitsuneSpace>;
|
|
182777
183895
|
kitsune_createSpaceV2?: Maybe<KitsuneCreateSpacePayload>;
|
|
182778
183896
|
kitsune_createView?: Maybe<KitsuneView>;
|
|
@@ -183005,6 +184123,7 @@ export type Mutation = {
|
|
|
183005
184123
|
projects_edit?: Maybe<TownsquareProjectsEditPayload>;
|
|
183006
184124
|
projects_editComment?: Maybe<TownsquareProjectsEditCommentPayload>;
|
|
183007
184125
|
projects_editDecision?: Maybe<TownsquareProjectsEditDecisionPayload>;
|
|
184126
|
+
projects_editDraftUpdate?: Maybe<TownsquareProjectsEditDraftUpdatePayload>;
|
|
183008
184127
|
projects_editDropdownCustomField?: Maybe<TownsquareProjectsEditDropdownCustomFieldPayload>;
|
|
183009
184128
|
projects_editLearning?: Maybe<TownsquareProjectsEditLearningPayload>;
|
|
183010
184129
|
projects_editLink?: Maybe<TownsquareProjectsEditLinkPayload>;
|
|
@@ -183423,6 +184542,9 @@ export type MutationAdmin_CreateInvitePolicyArgs = {
|
|
|
183423
184542
|
createInvitePolicyInput?: InputMaybe<AdminCreateInvitePolicyInput>;
|
|
183424
184543
|
orgId: Scalars['ID']['input'];
|
|
183425
184544
|
};
|
|
184545
|
+
export type MutationAdmin_CreateOAuthClientArgs = {
|
|
184546
|
+
input: AdminCreateOAuthClientInput;
|
|
184547
|
+
};
|
|
183426
184548
|
export type MutationAdmin_CreateOutboundAuthServiceArgs = {
|
|
183427
184549
|
connectorSyncType?: InputMaybe<Scalars['String']['input']>;
|
|
183428
184550
|
datasourceId: Scalars['ID']['input'];
|
|
@@ -183467,11 +184589,17 @@ export type MutationAdmin_RemoveUserArgs = {
|
|
|
183467
184589
|
directoryId: Scalars['String']['input'];
|
|
183468
184590
|
orgId: Scalars['String']['input'];
|
|
183469
184591
|
};
|
|
184592
|
+
export type MutationAdmin_RevokeOAuthClientArgs = {
|
|
184593
|
+
input: AdminRevokeOAuthClientInput;
|
|
184594
|
+
};
|
|
183470
184595
|
export type MutationAdmin_RevokeRoleArgs = {
|
|
183471
184596
|
directoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
183472
184597
|
orgId: Scalars['ID']['input'];
|
|
183473
184598
|
revokeRoleInput?: InputMaybe<AdminRevokeRoleInput>;
|
|
183474
184599
|
};
|
|
184600
|
+
export type MutationAdmin_RotateOAuthClientSecretArgs = {
|
|
184601
|
+
input: AdminRotateOAuthClientSecretInput;
|
|
184602
|
+
};
|
|
183475
184603
|
export type MutationAdmin_ScimRuleCreateArgs = {
|
|
183476
184604
|
input: AdminScimRuleCreateInput;
|
|
183477
184605
|
orgId: Scalars['ID']['input'];
|
|
@@ -183517,6 +184645,9 @@ export type MutationAdmin_UpdateAuditLogBackgroundQueryArgs = {
|
|
|
183517
184645
|
export type MutationAdmin_UpdateAuditLogBackgroundQueryV2Args = {
|
|
183518
184646
|
input: AdminAuditLogUpdateBackgroundQueryInput;
|
|
183519
184647
|
};
|
|
184648
|
+
export type MutationAdmin_UpdateEnforceBoundarySettingArgs = {
|
|
184649
|
+
input: AdminUpdateEnforceBoundarySettingInput;
|
|
184650
|
+
};
|
|
183520
184651
|
export type MutationAdmin_UpdateInvitePolicyArgs = {
|
|
183521
184652
|
orgId: Scalars['ID']['input'];
|
|
183522
184653
|
policyId: Scalars['ID']['input'];
|
|
@@ -183794,6 +184925,9 @@ export type MutationAgentWorkspace_EndBreakArgs = {
|
|
|
183794
184925
|
export type MutationAgentWorkspace_RestoreSkillArgs = {
|
|
183795
184926
|
input: AgentWorkspaceRestoreSkillInput;
|
|
183796
184927
|
};
|
|
184928
|
+
export type MutationAgentWorkspace_SaveRoutingSetupArgs = {
|
|
184929
|
+
input: AgentWorkspaceSaveRoutingSetupInput;
|
|
184930
|
+
};
|
|
183797
184931
|
export type MutationAgentWorkspace_SetAvailabilityStatusArgs = {
|
|
183798
184932
|
input: AgentWorkspaceAvailabilityStatusInput;
|
|
183799
184933
|
};
|
|
@@ -183951,6 +185085,9 @@ export type MutationArtifact_CreateArtifactArgs = {
|
|
|
183951
185085
|
export type MutationArtifact_CreateContentArgs = {
|
|
183952
185086
|
input: ArtifactCreateContentInput;
|
|
183953
185087
|
};
|
|
185088
|
+
export type MutationArtifact_UpdateArtifactArgs = {
|
|
185089
|
+
input: ArtifactUpdateInput;
|
|
185090
|
+
};
|
|
183954
185091
|
export type MutationAssetsDm_AddDataDictionaryArgs = {
|
|
183955
185092
|
cloudId: Scalars['ID']['input'];
|
|
183956
185093
|
payload: AssetsDmAddDataDictionaryInput;
|
|
@@ -185913,6 +187050,11 @@ export type MutationCsm_UpdateTemplateFormArgs = {
|
|
|
185913
187050
|
input: CustomerServiceTemplateFormUpdateInput;
|
|
185914
187051
|
templateFormId: Scalars['ID']['input'];
|
|
185915
187052
|
};
|
|
187053
|
+
export type MutationCsm_UpdateWorkItemSupportSiteArgs = {
|
|
187054
|
+
cloudId: Scalars['ID']['input'];
|
|
187055
|
+
helpCenterId?: InputMaybe<Scalars['ID']['input']>;
|
|
187056
|
+
workItemKey: Scalars['String']['input'];
|
|
187057
|
+
};
|
|
185916
187058
|
export type MutationCsm_UpsertBrandingArgs = {
|
|
185917
187059
|
cloudId: Scalars['ID']['input'];
|
|
185918
187060
|
helpCenterId: Scalars['ID']['input'];
|
|
@@ -186510,6 +187652,9 @@ export type MutationGoals_UpdateSlackSubscriptionArgs = {
|
|
|
186510
187652
|
export type MutationGrantContentAccessArgs = {
|
|
186511
187653
|
grantContentAccessInput: GrantContentAccessInput;
|
|
186512
187654
|
};
|
|
187655
|
+
export type MutationGraphInference_GenerateReviewPackArgs = {
|
|
187656
|
+
input: GraphInferenceGenerateReviewPackInput;
|
|
187657
|
+
};
|
|
186513
187658
|
export type MutationGraphInference_InferenceAppAddArgs = {
|
|
186514
187659
|
input: GraphInferenceInferenceAppAddInput;
|
|
186515
187660
|
};
|
|
@@ -186546,6 +187691,12 @@ export type MutationGraphInference_InferenceEvalStartArgs = {
|
|
|
186546
187691
|
export type MutationGraphInference_InferencePreviewArgs = {
|
|
186547
187692
|
input: GraphInferenceInferencePreviewInput;
|
|
186548
187693
|
};
|
|
187694
|
+
export type MutationGraphInference_InlineEvalStartArgs = {
|
|
187695
|
+
input: GraphInferenceInlineEvalStartInput;
|
|
187696
|
+
};
|
|
187697
|
+
export type MutationGraphInference_SubmitReviewArgs = {
|
|
187698
|
+
input: GraphInferenceSubmitReviewInput;
|
|
187699
|
+
};
|
|
186549
187700
|
export type MutationGraphIntegration_ActionAdminManagementUpdateActionConfigurationArgs = {
|
|
186550
187701
|
input: GraphIntegrationActionAdminManagementUpdateActionConfigurationInput;
|
|
186551
187702
|
};
|
|
@@ -186703,6 +187854,9 @@ export type MutationGraphStoreV2_CreateJiraWorkItemDismissedKnowledgeBaseEntityA
|
|
|
186703
187854
|
export type MutationGraphStoreV2_CreateJiraWorkItemHasLinkedKnowledgeBaseEntityArgs = {
|
|
186704
187855
|
input?: InputMaybe<GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityInput>;
|
|
186705
187856
|
};
|
|
187857
|
+
export type MutationGraphStoreV2_CreateJiraWorkItemImpactsCompassComponentArgs = {
|
|
187858
|
+
input?: InputMaybe<GraphStoreV2CreateJiraWorkItemImpactsCompassComponentInput>;
|
|
187859
|
+
};
|
|
186706
187860
|
export type MutationGraphStoreV2_CreateJiraWorkItemLinksConfluenceWhiteboardArgs = {
|
|
186707
187861
|
input?: InputMaybe<GraphStoreV2CreateJiraWorkItemLinksConfluenceWhiteboardInput>;
|
|
186708
187862
|
};
|
|
@@ -186808,6 +187962,9 @@ export type MutationGraphStoreV2_DeleteJiraWorkItemDismissedKnowledgeBaseEntityA
|
|
|
186808
187962
|
export type MutationGraphStoreV2_DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityArgs = {
|
|
186809
187963
|
input?: InputMaybe<GraphStoreV2DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityInput>;
|
|
186810
187964
|
};
|
|
187965
|
+
export type MutationGraphStoreV2_DeleteJiraWorkItemImpactsCompassComponentArgs = {
|
|
187966
|
+
input?: InputMaybe<GraphStoreV2DeleteJiraWorkItemImpactsCompassComponentInput>;
|
|
187967
|
+
};
|
|
186811
187968
|
export type MutationGraphStoreV2_DeleteJiraWorkItemLinksConfluenceWhiteboardArgs = {
|
|
186812
187969
|
input?: InputMaybe<GraphStoreV2DeleteJiraWorkItemLinksConfluenceWhiteboardInput>;
|
|
186813
187970
|
};
|
|
@@ -187102,6 +188259,10 @@ export type MutationGravity_CreateDraftArgs = {
|
|
|
187102
188259
|
cloudId: Scalars['ID']['input'];
|
|
187103
188260
|
input: GravityCreateDraftInput;
|
|
187104
188261
|
};
|
|
188262
|
+
export type MutationGravity_CreateSectionArgs = {
|
|
188263
|
+
cloudId: Scalars['ID']['input'];
|
|
188264
|
+
input: GravityCreateSectionInput;
|
|
188265
|
+
};
|
|
187105
188266
|
export type MutationGravity_CreateViewArgs = {
|
|
187106
188267
|
cloudId: Scalars['ID']['input'];
|
|
187107
188268
|
input: JpdCreateViewInput;
|
|
@@ -187122,6 +188283,10 @@ export type MutationGravity_DeleteReactionArgs = {
|
|
|
187122
188283
|
cloudId: Scalars['ID']['input'];
|
|
187123
188284
|
input: GravityDeleteReactionInput;
|
|
187124
188285
|
};
|
|
188286
|
+
export type MutationGravity_DeleteSectionArgs = {
|
|
188287
|
+
cloudId: Scalars['ID']['input'];
|
|
188288
|
+
sectionId: Scalars['ID']['input'];
|
|
188289
|
+
};
|
|
187125
188290
|
export type MutationGravity_DeleteViewArgs = {
|
|
187126
188291
|
cloudId: Scalars['ID']['input'];
|
|
187127
188292
|
viewId: Scalars['ID']['input'];
|
|
@@ -187158,10 +188323,18 @@ export type MutationGravity_UpdateDeliverySettingsArgs = {
|
|
|
187158
188323
|
cloudId: Scalars['ID']['input'];
|
|
187159
188324
|
input: GravityUpdateDeliverySettingsInput;
|
|
187160
188325
|
};
|
|
188326
|
+
export type MutationGravity_UpdateDeliveryTableSortArgs = {
|
|
188327
|
+
cloudId: Scalars['ID']['input'];
|
|
188328
|
+
input: GravityUpdateDeliveryTableSortInput;
|
|
188329
|
+
};
|
|
187161
188330
|
export type MutationGravity_UpdateDraftContentArgs = {
|
|
187162
188331
|
cloudId: Scalars['ID']['input'];
|
|
187163
188332
|
input: GravityUpdateDraftContentInput;
|
|
187164
188333
|
};
|
|
188334
|
+
export type MutationGravity_UpdateSectionArgs = {
|
|
188335
|
+
cloudId: Scalars['ID']['input'];
|
|
188336
|
+
input: GravityUpdateSectionInput;
|
|
188337
|
+
};
|
|
187165
188338
|
export type MutationGravity_UpdateViewArgs = {
|
|
187166
188339
|
cloudId: Scalars['ID']['input'];
|
|
187167
188340
|
input: JpdUpdateViewInput;
|
|
@@ -188021,6 +189194,9 @@ export type MutationKitsune_CreateSnippetArgs = {
|
|
|
188021
189194
|
export type MutationKitsune_CreateSnippetV2Args = {
|
|
188022
189195
|
input: KitsuneCreateSnippetInput;
|
|
188023
189196
|
};
|
|
189197
|
+
export type MutationKitsune_CreateSnippetsArgs = {
|
|
189198
|
+
input: KitsuneCreateSnippetsInput;
|
|
189199
|
+
};
|
|
188024
189200
|
export type MutationKitsune_CreateSpaceArgs = {
|
|
188025
189201
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
188026
189202
|
name: Scalars['String']['input'];
|
|
@@ -188759,6 +189935,9 @@ export type MutationProjects_EditCommentArgs = {
|
|
|
188759
189935
|
export type MutationProjects_EditDecisionArgs = {
|
|
188760
189936
|
input: TownsquareProjectsEditDecisionInput;
|
|
188761
189937
|
};
|
|
189938
|
+
export type MutationProjects_EditDraftUpdateArgs = {
|
|
189939
|
+
input: TownsquareProjectsEditDraftUpdateInput;
|
|
189940
|
+
};
|
|
188762
189941
|
export type MutationProjects_EditDropdownCustomFieldArgs = {
|
|
188763
189942
|
input: TownsquareProjectsEditDropdownCustomFieldInput;
|
|
188764
189943
|
};
|
|
@@ -193765,6 +194944,8 @@ export type Query = {
|
|
|
193765
194944
|
admin_identityProviderDirectorySamlConfiguration?: Maybe<AdminSamlConfiguration>;
|
|
193766
194945
|
admin_invitePolicies?: Maybe<AdminInvitePolicyConnection>;
|
|
193767
194946
|
admin_licenseUsage?: Maybe<AdminLicenseDataConnection>;
|
|
194947
|
+
admin_oauthClients?: Maybe<AdminOAuthClientConnection>;
|
|
194948
|
+
admin_oauthScopes?: Maybe<AdminOAuthScopeConnection>;
|
|
193768
194949
|
admin_org?: Maybe<AdminOrganization>;
|
|
193769
194950
|
admin_orgDetails?: Maybe<AdminOrgDetails>;
|
|
193770
194951
|
admin_orgPolicies?: Maybe<AdminOrgPolicyConnection>;
|
|
@@ -194519,6 +195700,7 @@ export type Query = {
|
|
|
194519
195700
|
csm_templateFormById?: Maybe<CustomerServiceTemplateFormQueryResult>;
|
|
194520
195701
|
csm_templateForms?: Maybe<CustomerServiceTemplateFormConnection>;
|
|
194521
195702
|
csm_workItemAiSummary?: Maybe<CustomerServiceWorkItemAiSummaryQueryResult>;
|
|
195703
|
+
csm_workItemSupportSite?: Maybe<CustomerServiceWorkItemSupportSiteQueryResult>;
|
|
194522
195704
|
currentConfluenceUser?: Maybe<CurrentConfluenceUser>;
|
|
194523
195705
|
customer360_customer?: Maybe<Customer360Customer>;
|
|
194524
195706
|
customer360_customersById?: Maybe<Array<Maybe<Customer360Customer>>>;
|
|
@@ -194723,7 +195905,11 @@ export type Query = {
|
|
|
194723
195905
|
graphInference_inferenceQualityMetrics?: Maybe<GraphInferenceInferenceQualityMetricsResponse>;
|
|
194724
195906
|
graphInference_inferredProjectMe?: Maybe<GraphInferenceInferredProjectMeResponse>;
|
|
194725
195907
|
graphInference_inferredProjectSummaries?: Maybe<GraphInferenceInferredProjectSummariesResponse>;
|
|
195908
|
+
graphInference_inlineEvalContract?: Maybe<GraphInferenceInlineEvalContractResponse>;
|
|
195909
|
+
graphInference_inlineEvalRun?: Maybe<GraphInferenceInlineEvalRunResponse>;
|
|
194726
195910
|
graphInference_insights?: Maybe<GraphInferenceInsightsResponse>;
|
|
195911
|
+
graphInference_reviewPack?: Maybe<GraphInferenceReviewPackDetail>;
|
|
195912
|
+
graphInference_reviewPacks?: Maybe<Array<GraphInferenceReviewPackSummary>>;
|
|
194727
195913
|
graphIntegration_availableTwgCapabilityContainers?: Maybe<Array<Maybe<GraphIntegrationTwgCapabilityContainerMeta>>>;
|
|
194728
195914
|
graphIntegration_cloneCandidateSkill?: Maybe<GraphIntegrationSkill>;
|
|
194729
195915
|
graphIntegration_componentDirectoryDimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
|
|
@@ -194983,6 +196169,8 @@ export type Query = {
|
|
|
194983
196169
|
graphStoreV2_atlassianUserReportedJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReportedJiraWorkItemInverseConnection>;
|
|
194984
196170
|
graphStoreV2_atlassianUserReportedJsmIncident?: Maybe<GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentConnection>;
|
|
194985
196171
|
graphStoreV2_atlassianUserReportedJsmIncidentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentInverseConnection>;
|
|
196172
|
+
graphStoreV2_atlassianUserRespondsToJiraWorkItem?: Maybe<GraphStoreV2SimplifiedAtlassianUserRespondsToJiraWorkItemConnection>;
|
|
196173
|
+
graphStoreV2_atlassianUserRespondsToJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserRespondsToJiraWorkItemInverseConnection>;
|
|
194986
196174
|
graphStoreV2_atlassianUserReviewedConfluenceApprovalInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection>;
|
|
194987
196175
|
graphStoreV2_atlassianUserSnapshottedConfluencePage?: Maybe<GraphStoreV2SimplifiedAtlassianUserSnapshottedConfluencePageConnection>;
|
|
194988
196176
|
graphStoreV2_atlassianUserSnapshottedConfluencePageInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserSnapshottedConfluencePageInverseConnection>;
|
|
@@ -195475,6 +196663,8 @@ export type Query = {
|
|
|
195475
196663
|
graphStoreV2_inferredProjectHasRelatedEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectHasRelatedEntityInverseConnection>;
|
|
195476
196664
|
graphStoreV2_inferredProjectLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityConnection>;
|
|
195477
196665
|
graphStoreV2_inferredProjectLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityInverseConnection>;
|
|
196666
|
+
graphStoreV2_inferredProjectPromotedToAtlassianProject?: Maybe<GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectConnection>;
|
|
196667
|
+
graphStoreV2_inferredProjectPromotedToAtlassianProjectInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectInverseConnection>;
|
|
195478
196668
|
graphStoreV2_inferredTeamCollaboratesOnInferredProject?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectConnection>;
|
|
195479
196669
|
graphStoreV2_inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
|
|
195480
196670
|
graphStoreV2_inferredTeamLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredTeamLinksEntityConnection>;
|
|
@@ -195591,8 +196781,12 @@ export type Query = {
|
|
|
195591
196781
|
graphStoreV2_jiraWorkItemHasJiraPriorityInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJiraPriorityInverseConnection>;
|
|
195592
196782
|
graphStoreV2_jiraWorkItemHasJiraWorkItemComment?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentConnection>;
|
|
195593
196783
|
graphStoreV2_jiraWorkItemHasJiraWorkItemCommentInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentInverseConnection>;
|
|
196784
|
+
graphStoreV2_jiraWorkItemHasJsmIncidentSeverity?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJsmIncidentSeverityConnection>;
|
|
196785
|
+
graphStoreV2_jiraWorkItemHasJsmIncidentSeverityInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJsmIncidentSeverityInverseConnection>;
|
|
195594
196786
|
graphStoreV2_jiraWorkItemHasLinkedKnowledgeBaseEntity?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityConnection>;
|
|
195595
196787
|
graphStoreV2_jiraWorkItemHasLinkedKnowledgeBaseEntityInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityInverseConnection>;
|
|
196788
|
+
graphStoreV2_jiraWorkItemImpactsCompassComponent?: Maybe<GraphStoreV2SimplifiedJiraWorkItemImpactsCompassComponentConnection>;
|
|
196789
|
+
graphStoreV2_jiraWorkItemImpactsCompassComponentInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemImpactsCompassComponentInverseConnection>;
|
|
195596
196790
|
graphStoreV2_jiraWorkItemLinksAssetsObject?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectConnection>;
|
|
195597
196791
|
graphStoreV2_jiraWorkItemLinksAssetsObjectInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectInverseConnection>;
|
|
195598
196792
|
graphStoreV2_jiraWorkItemLinksConfluenceWhiteboard?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksConfluenceWhiteboardConnection>;
|
|
@@ -195818,6 +197012,8 @@ export type Query = {
|
|
|
195818
197012
|
graphStore_atlassianUserOwnsExternalTestStatusInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInverseConnection>;
|
|
195819
197013
|
graphStore_atlassianUserOwnsInferredProject?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectConnection>;
|
|
195820
197014
|
graphStore_atlassianUserOwnsInferredProjectInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseConnection>;
|
|
197015
|
+
graphStore_atlassianUserRespondsToJiraWorkItem?: Maybe<GraphStoreSimplifiedAtlassianUserRespondsToJiraWorkItemConnection>;
|
|
197016
|
+
graphStore_atlassianUserRespondsToJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedAtlassianUserRespondsToJiraWorkItemInverseConnection>;
|
|
195821
197017
|
graphStore_atlassianUserReviewedConfluenceApprovalInverse?: Maybe<GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection>;
|
|
195822
197018
|
graphStore_atlassianUserTriggeredAtlassianAgentSessionInverse?: Maybe<GraphStoreSimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseConnection>;
|
|
195823
197019
|
graphStore_atlassianUserUpdatedExternalCampaign?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCampaignConnection>;
|
|
@@ -196131,6 +197327,8 @@ export type Query = {
|
|
|
196131
197327
|
graphStore_inferredProjectHasRelatedEntityInverse?: Maybe<GraphStoreSimplifiedInferredProjectHasRelatedEntityInverseConnection>;
|
|
196132
197328
|
graphStore_inferredProjectLinksEntity?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityConnection>;
|
|
196133
197329
|
graphStore_inferredProjectLinksEntityInverse?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityInverseConnection>;
|
|
197330
|
+
graphStore_inferredProjectPromotedToAtlassianProject?: Maybe<GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectConnection>;
|
|
197331
|
+
graphStore_inferredProjectPromotedToAtlassianProjectInverse?: Maybe<GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectInverseConnection>;
|
|
196134
197332
|
graphStore_inferredTeamCollaboratesOnInferredProject?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectConnection>;
|
|
196135
197333
|
graphStore_inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
|
|
196136
197334
|
graphStore_inferredTeamLinksEntity?: Maybe<GraphStoreSimplifiedInferredTeamLinksEntityConnection>;
|
|
@@ -196245,6 +197443,8 @@ export type Query = {
|
|
|
196245
197443
|
graphStore_jiraSpaceHasLinkedKnowledgeBaseEntityInverse?: Maybe<GraphStoreSimplifiedJiraSpaceHasLinkedKnowledgeBaseEntityInverseConnection>;
|
|
196246
197444
|
graphStore_jiraWorkItemCommentHasChildComment?: Maybe<GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentConnection>;
|
|
196247
197445
|
graphStore_jiraWorkItemCommentHasChildCommentInverse?: Maybe<GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentInverseConnection>;
|
|
197446
|
+
graphStore_jiraWorkItemHasJsmIncidentSeverity?: Maybe<GraphStoreSimplifiedJiraWorkItemHasJsmIncidentSeverityConnection>;
|
|
197447
|
+
graphStore_jiraWorkItemHasJsmIncidentSeverityInverse?: Maybe<GraphStoreSimplifiedJiraWorkItemHasJsmIncidentSeverityInverseConnection>;
|
|
196248
197448
|
graphStore_jiraWorkItemLinksAssetObject?: Maybe<GraphStoreSimplifiedJiraWorkItemLinksAssetObjectConnection>;
|
|
196249
197449
|
graphStore_jiraWorkItemLinksAssetObjectInverse?: Maybe<GraphStoreSimplifiedJiraWorkItemLinksAssetObjectInverseConnection>;
|
|
196250
197450
|
graphStore_jsmProjectAssociatedService?: Maybe<GraphStoreSimplifiedJsmProjectAssociatedServiceConnection>;
|
|
@@ -196930,7 +198130,6 @@ export type Query = {
|
|
|
196930
198130
|
gravity_draft?: Maybe<GravityDraft>;
|
|
196931
198131
|
gravity_drafts?: Maybe<Array<GravityDraft>>;
|
|
196932
198132
|
gravity_exportViewAsTemplate?: Maybe<GravityExportViewAsTemplateResult>;
|
|
196933
|
-
gravity_importIdeas: GravityImportIdeasResult;
|
|
196934
198133
|
gravity_matchDelivery?: Maybe<GravityDeliveryMatchingResult>;
|
|
196935
198134
|
gravity_onViewArrangementChanged?: Maybe<GravityViewArrangementChangedEvent>;
|
|
196936
198135
|
gravity_reactions?: Maybe<GravityReactionsResult>;
|
|
@@ -197062,6 +198261,7 @@ export type Query = {
|
|
|
197062
198261
|
jira_subtaskCreationFields?: Maybe<JiraIssueCreateFieldsResult>;
|
|
197063
198262
|
jira_subtaskCreationLayout?: Maybe<JiraIssueCreateLayoutResult>;
|
|
197064
198263
|
jira_subtaskCreationLayoutWithML?: Maybe<JiraIssueCreateLayoutResult>;
|
|
198264
|
+
jira_summaryAgentSetupTile?: Maybe<JiraSummaryAgentSetupTile>;
|
|
197065
198265
|
jira_userSegRedirectAdvice?: Maybe<JiraUserSegRedirectAdvice>;
|
|
197066
198266
|
jira_versionsForProjectByKey?: Maybe<JiraVersionConnection>;
|
|
197067
198267
|
jira_view?: Maybe<JiraViewResult>;
|
|
@@ -197153,6 +198353,7 @@ export type Query = {
|
|
|
197153
198353
|
kitsune_snippets?: Maybe<Array<Maybe<KitsuneSnippet>>>;
|
|
197154
198354
|
kitsune_spaces?: Maybe<Array<Maybe<KitsuneSpace>>>;
|
|
197155
198355
|
kitsune_spacesForWorkspace?: Maybe<KitsuneSpaceConnection>;
|
|
198356
|
+
kitsune_starredSpacesForWorkspace?: Maybe<KitsuneSpaceConnection>;
|
|
197156
198357
|
kitsune_suggestInsights?: Maybe<Array<KitsuneInsightSuggestion>>;
|
|
197157
198358
|
kitsune_views?: Maybe<Array<Maybe<KitsuneView>>>;
|
|
197158
198359
|
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
@@ -197610,6 +198811,8 @@ export type Query = {
|
|
|
197610
198811
|
supportInquiry_channelsIdentityHash?: Maybe<Scalars['String']['output']>;
|
|
197611
198812
|
supportInquiry_channelsIdentityHashByClientName?: Maybe<Scalars['String']['output']>;
|
|
197612
198813
|
supportInquiry_userContext?: Maybe<SupportInquiryUserContext>;
|
|
198814
|
+
surveys_categories?: Maybe<SurveysCategoriesResult>;
|
|
198815
|
+
surveys_survey?: Maybe<SurveysDetailsResult>;
|
|
197613
198816
|
surveys_surveysByProject?: Maybe<SurveysListResult>;
|
|
197614
198817
|
tags_getAssignedLabels?: Maybe<Array<TagsAssignedLabel>>;
|
|
197615
198818
|
tags_getLabelAssignments?: Maybe<Array<TagsLabelAssignment>>;
|
|
@@ -197631,6 +198834,7 @@ export type Query = {
|
|
|
197631
198834
|
teamworkGraph_userDirectReports?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
197632
198835
|
teamworkGraph_userManager?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
197633
198836
|
teamworkGraph_userReportChain?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
198837
|
+
teamworkGraph_userReportChainV2?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
197634
198838
|
teamworkGraph_userTaggedIn?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
197635
198839
|
teamworkGraph_userTeams?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
197636
198840
|
teamworkGraph_userTopRecentMentioners?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
@@ -197809,9 +199013,9 @@ export type QueryAdmin_AuditLogUsersArgs = {
|
|
|
197809
199013
|
};
|
|
197810
199014
|
export type QueryAdmin_BreachingConnectionsForUnitArgs = {
|
|
197811
199015
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
199016
|
+
filter?: InputMaybe<AdminBreachingConnectionFilter>;
|
|
197812
199017
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
197813
199018
|
orgId: Scalars['ID']['input'];
|
|
197814
|
-
status?: InputMaybe<AdminBreachingConnectionStatus>;
|
|
197815
199019
|
unitId: Scalars['ID']['input'];
|
|
197816
199020
|
};
|
|
197817
199021
|
export type QueryAdmin_CheckLicensesCapacityArgs = {
|
|
@@ -197923,6 +199127,20 @@ export type QueryAdmin_LicenseUsageArgs = {
|
|
|
197923
199127
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
197924
199128
|
orgId: Scalars['ID']['input'];
|
|
197925
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
|
+
};
|
|
197926
199144
|
export type QueryAdmin_OrgArgs = {
|
|
197927
199145
|
id: Scalars['ID']['input'];
|
|
197928
199146
|
};
|
|
@@ -201631,6 +202849,10 @@ export type QueryCsm_TemplateFormsArgs = {
|
|
|
201631
202849
|
export type QueryCsm_WorkItemAiSummaryArgs = {
|
|
201632
202850
|
workItemId: Scalars['ID']['input'];
|
|
201633
202851
|
};
|
|
202852
|
+
export type QueryCsm_WorkItemSupportSiteArgs = {
|
|
202853
|
+
cloudId: Scalars['ID']['input'];
|
|
202854
|
+
workItemKey: Scalars['String']['input'];
|
|
202855
|
+
};
|
|
201634
202856
|
export type QueryCustomer360_CustomerArgs = {
|
|
201635
202857
|
domain: Scalars['String']['input'];
|
|
201636
202858
|
};
|
|
@@ -202467,9 +203689,21 @@ export type QueryGraphInference_InferredProjectSummariesArgs = {
|
|
|
202467
203689
|
firstEntities?: InputMaybe<Scalars['Int']['input']>;
|
|
202468
203690
|
updatedAfter?: InputMaybe<Scalars['DateTime']['input']>;
|
|
202469
203691
|
};
|
|
203692
|
+
export type QueryGraphInference_InlineEvalContractArgs = {
|
|
203693
|
+
input: GraphInferenceInlineEvalContractInput;
|
|
203694
|
+
};
|
|
203695
|
+
export type QueryGraphInference_InlineEvalRunArgs = {
|
|
203696
|
+
runId: Scalars['ID']['input'];
|
|
203697
|
+
};
|
|
202470
203698
|
export type QueryGraphInference_InsightsArgs = {
|
|
202471
203699
|
input: GraphInferenceTargetInsightsInput;
|
|
202472
203700
|
};
|
|
203701
|
+
export type QueryGraphInference_ReviewPackArgs = {
|
|
203702
|
+
id: Scalars['ID']['input'];
|
|
203703
|
+
};
|
|
203704
|
+
export type QueryGraphInference_ReviewPacksArgs = {
|
|
203705
|
+
first?: Scalars['Int']['input'];
|
|
203706
|
+
};
|
|
202473
203707
|
export type QueryGraphIntegration_AvailableTwgCapabilityContainersArgs = {
|
|
202474
203708
|
contextAri: Scalars['ID']['input'];
|
|
202475
203709
|
includeEnabledToolCount?: Scalars['Boolean']['input'];
|
|
@@ -202489,6 +203723,7 @@ export type QueryGraphIntegration_ComponentDirectoryItemsArgs = {
|
|
|
202489
203723
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
202490
203724
|
authTypes?: InputMaybe<Array<GraphIntegrationDirectoryAuthType>>;
|
|
202491
203725
|
cloudId: Scalars['ID']['input'];
|
|
203726
|
+
contextAri?: InputMaybe<Scalars['ID']['input']>;
|
|
202492
203727
|
dimensionIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
202493
203728
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
202494
203729
|
relevantFor?: InputMaybe<Array<GraphIntegrationDirectoryItemType>>;
|
|
@@ -204203,6 +205438,20 @@ export type QueryGraphStoreV2_AtlassianUserReportedJsmIncidentInverseArgs = {
|
|
|
204203
205438
|
id: Scalars['ID']['input'];
|
|
204204
205439
|
sort?: InputMaybe<GraphStoreV2AtlassianUserReportedJsmIncidentSortInput>;
|
|
204205
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
|
+
};
|
|
204206
205455
|
export type QueryGraphStoreV2_AtlassianUserReviewedConfluenceApprovalInverseArgs = {
|
|
204207
205456
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
204208
205457
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -207654,6 +208903,20 @@ export type QueryGraphStoreV2_InferredProjectLinksEntityInverseArgs = {
|
|
|
207654
208903
|
id: Scalars['ID']['input'];
|
|
207655
208904
|
sort?: InputMaybe<GraphStoreV2InferredProjectLinksEntitySortInput>;
|
|
207656
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
|
+
};
|
|
207657
208920
|
export type QueryGraphStoreV2_InferredTeamCollaboratesOnInferredProjectArgs = {
|
|
207658
208921
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
207659
208922
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -208498,6 +209761,20 @@ export type QueryGraphStoreV2_JiraWorkItemHasJiraWorkItemCommentInverseArgs = {
|
|
|
208498
209761
|
id: Scalars['ID']['input'];
|
|
208499
209762
|
sort?: InputMaybe<GraphStoreV2JiraWorkItemHasJiraWorkItemCommentSortInput>;
|
|
208500
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
|
+
};
|
|
208501
209778
|
export type QueryGraphStoreV2_JiraWorkItemHasLinkedKnowledgeBaseEntityArgs = {
|
|
208502
209779
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
208503
209780
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -208512,6 +209789,20 @@ export type QueryGraphStoreV2_JiraWorkItemHasLinkedKnowledgeBaseEntityInverseArg
|
|
|
208512
209789
|
id: Scalars['ID']['input'];
|
|
208513
209790
|
sort?: InputMaybe<GraphStoreV2JiraWorkItemHasLinkedKnowledgeBaseEntitySortInput>;
|
|
208514
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
|
+
};
|
|
208515
209806
|
export type QueryGraphStoreV2_JiraWorkItemLinksAssetsObjectArgs = {
|
|
208516
209807
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
208517
209808
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -210212,6 +211503,22 @@ export type QueryGraphStore_AtlassianUserOwnsInferredProjectInverseArgs = {
|
|
|
210212
211503
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
210213
211504
|
sort?: InputMaybe<GraphStoreAtlassianUserOwnsInferredProjectSortInput>;
|
|
210214
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
|
+
};
|
|
210215
211522
|
export type QueryGraphStore_AtlassianUserReviewedConfluenceApprovalInverseArgs = {
|
|
210216
211523
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
210217
211524
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -212642,6 +213949,22 @@ export type QueryGraphStore_InferredProjectLinksEntityInverseArgs = {
|
|
|
212642
213949
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
212643
213950
|
sort?: InputMaybe<GraphStoreInferredProjectLinksEntitySortInput>;
|
|
212644
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
|
+
};
|
|
212645
213968
|
export type QueryGraphStore_InferredTeamCollaboratesOnInferredProjectArgs = {
|
|
212646
213969
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
212647
213970
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -213498,6 +214821,22 @@ export type QueryGraphStore_JiraWorkItemCommentHasChildCommentInverseArgs = {
|
|
|
213498
214821
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
213499
214822
|
sort?: InputMaybe<GraphStoreJiraWorkItemCommentHasChildCommentSortInput>;
|
|
213500
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
|
+
};
|
|
213501
214840
|
export type QueryGraphStore_JiraWorkItemLinksAssetObjectArgs = {
|
|
213502
214841
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
213503
214842
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -218786,10 +220125,6 @@ export type QueryGravity_ExportViewAsTemplateArgs = {
|
|
|
218786
220125
|
projectId: Scalars['ID']['input'];
|
|
218787
220126
|
viewId: Scalars['ID']['input'];
|
|
218788
220127
|
};
|
|
218789
|
-
export type QueryGravity_ImportIdeasArgs = {
|
|
218790
|
-
cloudId: Scalars['ID']['input'];
|
|
218791
|
-
input: GravityImportIdeasInput;
|
|
218792
|
-
};
|
|
218793
220128
|
export type QueryGravity_MatchDeliveryArgs = {
|
|
218794
220129
|
cloudId: Scalars['ID']['input'];
|
|
218795
220130
|
input: GravityMatchDeliveryInput;
|
|
@@ -219342,6 +220677,10 @@ export type QueryJira_SubtaskCreationLayoutWithMlArgs = {
|
|
|
219342
220677
|
parentId: JiraParentIdInput;
|
|
219343
220678
|
project?: InputMaybe<JiraProjectInput>;
|
|
219344
220679
|
};
|
|
220680
|
+
export type QueryJira_SummaryAgentSetupTileArgs = {
|
|
220681
|
+
cloudId: Scalars['ID']['input'];
|
|
220682
|
+
spaceKey: Scalars['String']['input'];
|
|
220683
|
+
};
|
|
219345
220684
|
export type QueryJira_UserSegRedirectAdviceArgs = {
|
|
219346
220685
|
accountId: Scalars['ID']['input'];
|
|
219347
220686
|
cloudId: Scalars['ID']['input'];
|
|
@@ -219755,6 +221094,11 @@ export type QueryKitsune_SpacesForWorkspaceArgs = {
|
|
|
219755
221094
|
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
219756
221095
|
workspaceAri: Scalars['ID']['input'];
|
|
219757
221096
|
};
|
|
221097
|
+
export type QueryKitsune_StarredSpacesForWorkspaceArgs = {
|
|
221098
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
221099
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
221100
|
+
workspaceAri: Scalars['ID']['input'];
|
|
221101
|
+
};
|
|
219758
221102
|
export type QueryKitsune_SuggestInsightsArgs = {
|
|
219759
221103
|
embeddingType?: InputMaybe<Scalars['String']['input']>;
|
|
219760
221104
|
input?: InputMaybe<KitsuneSearchInsightsInput>;
|
|
@@ -221539,6 +222883,14 @@ export type QuerySuggestedSpacesArgs = {
|
|
|
221539
222883
|
export type QuerySupportInquiry_ChannelsIdentityHashByClientNameArgs = {
|
|
221540
222884
|
request?: InputMaybe<SupportInquiryChannelPlatformIdentityHashRequest>;
|
|
221541
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
|
+
};
|
|
221542
222894
|
export type QuerySurveys_SurveysByProjectArgs = {
|
|
221543
222895
|
jiraProjectARI: Scalars['ID']['input'];
|
|
221544
222896
|
};
|
|
@@ -221629,6 +222981,9 @@ export type QueryTeamworkGraph_UserManagerArgs = {
|
|
|
221629
222981
|
export type QueryTeamworkGraph_UserReportChainArgs = {
|
|
221630
222982
|
userId: Scalars['ID']['input'];
|
|
221631
222983
|
};
|
|
222984
|
+
export type QueryTeamworkGraph_UserReportChainV2Args = {
|
|
222985
|
+
userId: Scalars['ID']['input'];
|
|
222986
|
+
};
|
|
221632
222987
|
export type QueryTeamworkGraph_UserTaggedInArgs = {
|
|
221633
222988
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
221634
222989
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -222695,6 +224050,7 @@ export type RadarSkillAssignmentMetadata = {
|
|
|
222695
224050
|
classificationType?: Maybe<RadarSkillClassificationType>;
|
|
222696
224051
|
reasoning?: Maybe<Scalars['String']['output']>;
|
|
222697
224052
|
skillId: Scalars['ID']['output'];
|
|
224053
|
+
sources?: Maybe<Array<RadarSkillSource>>;
|
|
222698
224054
|
verificationStatus?: Maybe<RadarSkillVerificationStatus>;
|
|
222699
224055
|
verifiedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
222700
224056
|
verifiedByAaid?: Maybe<Scalars['ID']['output']>;
|
|
@@ -222721,6 +224077,12 @@ export type RadarSkillMappingStatusUpdateInput = {
|
|
|
222721
224077
|
status: RadarSkillVerificationStatus;
|
|
222722
224078
|
workerSkill: Scalars['ID']['input'];
|
|
222723
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;
|
|
222724
224086
|
export declare enum RadarSkillVerificationStatus {
|
|
222725
224087
|
Declined = "DECLINED",
|
|
222726
224088
|
Unverified = "UNVERIFIED",
|
|
@@ -223002,6 +224364,7 @@ export type RadarWorkerSkill = Node & {
|
|
|
223002
224364
|
id: Scalars['ID']['output'];
|
|
223003
224365
|
skill?: Maybe<RadarSkill>;
|
|
223004
224366
|
skillId: Scalars['ID']['output'];
|
|
224367
|
+
sources?: Maybe<Array<RadarSkillSource>>;
|
|
223005
224368
|
verificationStatus: RadarSkillVerificationStatus;
|
|
223006
224369
|
verifiedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
223007
224370
|
workerId: Scalars['ID']['output'];
|
|
@@ -224264,6 +225627,7 @@ export type RoleAssignmentPrincipalInput = {
|
|
|
224264
225627
|
};
|
|
224265
225628
|
export declare enum RoleAssignmentPrincipalType {
|
|
224266
225629
|
AccessClass = "ACCESS_CLASS",
|
|
225630
|
+
Agent = "AGENT",
|
|
224267
225631
|
App = "APP",
|
|
224268
225632
|
Group = "GROUP",
|
|
224269
225633
|
User = "USER"
|
|
@@ -234021,6 +235385,11 @@ export declare enum SurveysAccess {
|
|
|
234021
235385
|
ViewEditRestricted = "VIEW_EDIT_RESTRICTED",
|
|
234022
235386
|
ViewOpenEditRestricted = "VIEW_OPEN_EDIT_RESTRICTED"
|
|
234023
235387
|
}
|
|
235388
|
+
export type SurveysCategoriesResponse = {
|
|
235389
|
+
__typename?: 'SurveysCategoriesResponse';
|
|
235390
|
+
categories: Array<Scalars['String']['output']>;
|
|
235391
|
+
};
|
|
235392
|
+
export type SurveysCategoriesResult = SurveysCategoriesResponse | SurveysQueryError;
|
|
234024
235393
|
export type SurveysDetailsResponse = {
|
|
234025
235394
|
__typename?: 'SurveysDetailsResponse';
|
|
234026
235395
|
captureEmail: Scalars['Boolean']['output'];
|
|
@@ -234046,6 +235415,7 @@ export type SurveysDetailsResponse = {
|
|
|
234046
235415
|
uniqueResponses: Scalars['Boolean']['output'];
|
|
234047
235416
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
234048
235417
|
};
|
|
235418
|
+
export type SurveysDetailsResult = SurveysDetailsResponse | SurveysQueryError;
|
|
234049
235419
|
export declare enum SurveysEffectivePermissionLevel {
|
|
234050
235420
|
Edit = "EDIT",
|
|
234051
235421
|
None = "NONE",
|
|
@@ -235978,7 +237348,7 @@ export declare enum TownsquareAccessControlCapability {
|
|
|
235978
237348
|
Administer = "ADMINISTER",
|
|
235979
237349
|
Create = "CREATE"
|
|
235980
237350
|
}
|
|
235981
|
-
export type TownsquareAccessPrincipal = AppUser | AtlassianAccountUser | CustomerUser;
|
|
237351
|
+
export type TownsquareAccessPrincipal = AppUser | AtlassianAccountUser | CustomerUser | TeamV2;
|
|
235982
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;
|
|
235983
237353
|
export type TownsquareActivityItem = {
|
|
235984
237354
|
__typename?: 'TownsquareActivityItem';
|
|
@@ -237092,6 +238462,7 @@ export type TownsquareGoalUpdate = Node & {
|
|
|
237092
238462
|
ari: Scalars['String']['output'];
|
|
237093
238463
|
bundledUpdates?: Maybe<TownsquareGoalBundledUpdateConnection>;
|
|
237094
238464
|
comments?: Maybe<TownsquareCommentConnection>;
|
|
238465
|
+
connectedUpdates?: Maybe<TownsquareConnectedUpdates>;
|
|
237095
238466
|
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
237096
238467
|
creator?: Maybe<User>;
|
|
237097
238468
|
editDate?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -237423,6 +238794,7 @@ export type TownsquareGoalsCreateUpdateInput = {
|
|
|
237423
238794
|
goalId: Scalars['ID']['input'];
|
|
237424
238795
|
highlights?: InputMaybe<Array<InputMaybe<TownsquareUpdateHighlightInput>>>;
|
|
237425
238796
|
isBundledUpdate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
238797
|
+
isConnectedUpdate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
237426
238798
|
metricUpdate?: InputMaybe<Array<InputMaybe<TownsquareMetricUpdateInput>>>;
|
|
237427
238799
|
score?: InputMaybe<Scalars['Int']['input']>;
|
|
237428
238800
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -239374,6 +240746,16 @@ export type TownsquareProjectsEditDecisionPayload = {
|
|
|
239374
240746
|
errors?: Maybe<Array<MutationError>>;
|
|
239375
240747
|
success: Scalars['Boolean']['output'];
|
|
239376
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
|
+
};
|
|
239377
240759
|
export type TownsquareProjectsEditDropdownCustomFieldInput = {
|
|
239378
240760
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
239379
240761
|
projectId: Scalars['ID']['input'];
|
|
@@ -241925,6 +243307,7 @@ export type TrelloBoardViewer = {
|
|
|
241925
243307
|
email?: Maybe<TrelloBoardViewerEmail>;
|
|
241926
243308
|
lastSeenAt?: Maybe<Scalars['DateTime']['output']>;
|
|
241927
243309
|
showCompactMirrorCards?: Maybe<Scalars['Boolean']['output']>;
|
|
243310
|
+
showRefinementCommandCenter?: Maybe<Scalars['Boolean']['output']>;
|
|
241928
243311
|
sidebar?: Maybe<TrelloBoardViewerSidebar>;
|
|
241929
243312
|
starred: Scalars['Boolean']['output'];
|
|
241930
243313
|
subscribed?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -243193,6 +244576,21 @@ export type TrelloCreatePlannerCalendarEventPayload = Payload & {
|
|
|
243193
244576
|
plannerCalendarUpdated?: Maybe<TrelloPlannerCalendar>;
|
|
243194
244577
|
success: Scalars['Boolean']['output'];
|
|
243195
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
|
+
};
|
|
243196
244594
|
export type TrelloCreateWorkspaceTagInput = {
|
|
243197
244595
|
name: Scalars['String']['input'];
|
|
243198
244596
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -243447,6 +244845,15 @@ export type TrelloDisableCardFrontCompleteTogglePayload = Payload & {
|
|
|
243447
244845
|
errors?: Maybe<Array<MutationError>>;
|
|
243448
244846
|
success: Scalars['Boolean']['output'];
|
|
243449
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
|
+
};
|
|
243450
244857
|
export type TrelloEcho = {
|
|
243451
244858
|
__typename?: 'TrelloEcho';
|
|
243452
244859
|
contents?: Maybe<Scalars['String']['output']>;
|
|
@@ -244755,6 +246162,7 @@ export type TrelloMutationApi = {
|
|
|
244755
246162
|
createOAuth2Client?: Maybe<TrelloCreateOAuth2ClientPayload>;
|
|
244756
246163
|
createOrUpdatePlannerCalendar?: Maybe<TrelloCreateOrUpdatePlannerCalendarPayload>;
|
|
244757
246164
|
createPlannerCalendarEvent?: Maybe<TrelloCreatePlannerCalendarEventPayload>;
|
|
246165
|
+
createVoiceCapturedCards?: Maybe<TrelloCreateVoiceCapturedCardsPayload>;
|
|
244758
246166
|
createWorkOverviewDashboard?: Maybe<TrelloWorkOverviewDashboardPayload>;
|
|
244759
246167
|
createWorkspaceTag?: Maybe<TrelloCreateWorkspaceTagPayload>;
|
|
244760
246168
|
deleteAiRule?: Maybe<TrelloDeleteAiRulePayload>;
|
|
@@ -244768,6 +246176,7 @@ export type TrelloMutationApi = {
|
|
|
244768
246176
|
deleteWorkspaceTag?: Maybe<TrelloDeleteWorkspaceTagPayload>;
|
|
244769
246177
|
disableBoardSelfJoin?: Maybe<TrelloDisableBoardSelfJoinPayload>;
|
|
244770
246178
|
disableCardFrontCompleteToggle?: Maybe<TrelloDisableCardFrontCompleteTogglePayload>;
|
|
246179
|
+
dismissRefinementCommandCenter?: Maybe<TrelloDismissRefinementCommandCenterPayload>;
|
|
244771
246180
|
editBoardWithAi?: Maybe<TrelloEditBoardWithAiPayload>;
|
|
244772
246181
|
editPlannerCalendarEvent?: Maybe<TrelloEditPlannerCalendarEventPayload>;
|
|
244773
246182
|
enableBoardSelfJoin?: Maybe<TrelloEnableBoardSelfJoinPayload>;
|
|
@@ -244796,6 +246205,7 @@ export type TrelloMutationApi = {
|
|
|
244796
246205
|
proposePlannerEvents?: Maybe<TrelloProposePlannerEventsPayload>;
|
|
244797
246206
|
refreshCardManifest?: Maybe<TrelloRefreshManifestPayload>;
|
|
244798
246207
|
rejectProposedEvents?: Maybe<TrelloRejectProposedEventsPayload>;
|
|
246208
|
+
rejectRecommendation?: Maybe<TrelloRejectRecommendationPayload>;
|
|
244799
246209
|
removeBoardStar?: Maybe<TrelloRemoveBoardStarPayload>;
|
|
244800
246210
|
removeCardFromPlannerCalendarEvent?: Maybe<TrelloRemoveCardFromPlannerCalendarEventPayload>;
|
|
244801
246211
|
removeLabelsFromCard?: Maybe<TrelloRemoveLabelsFromCardPayload>;
|
|
@@ -245003,6 +246413,9 @@ export type TrelloMutationApiCreateOrUpdatePlannerCalendarArgs = {
|
|
|
245003
246413
|
export type TrelloMutationApiCreatePlannerCalendarEventArgs = {
|
|
245004
246414
|
input: TrelloCreatePlannerCalendarEventInput;
|
|
245005
246415
|
};
|
|
246416
|
+
export type TrelloMutationApiCreateVoiceCapturedCardsArgs = {
|
|
246417
|
+
input: TrelloCreateVoiceCapturedCardsInput;
|
|
246418
|
+
};
|
|
245006
246419
|
export type TrelloMutationApiCreateWorkOverviewDashboardArgs = {
|
|
245007
246420
|
input: TrelloWorkOverviewDashboardInput;
|
|
245008
246421
|
};
|
|
@@ -245042,6 +246455,9 @@ export type TrelloMutationApiDisableBoardSelfJoinArgs = {
|
|
|
245042
246455
|
export type TrelloMutationApiDisableCardFrontCompleteToggleArgs = {
|
|
245043
246456
|
input: TrelloDisableCardFrontCompleteToggleInput;
|
|
245044
246457
|
};
|
|
246458
|
+
export type TrelloMutationApiDismissRefinementCommandCenterArgs = {
|
|
246459
|
+
input: TrelloDismissRefinementCommandCenterInput;
|
|
246460
|
+
};
|
|
245045
246461
|
export type TrelloMutationApiEditBoardWithAiArgs = {
|
|
245046
246462
|
input: TrelloEditBoardWithAiInput;
|
|
245047
246463
|
};
|
|
@@ -245123,6 +246539,9 @@ export type TrelloMutationApiRefreshCardManifestArgs = {
|
|
|
245123
246539
|
export type TrelloMutationApiRejectProposedEventsArgs = {
|
|
245124
246540
|
input: TrelloRejectProposedEventsInput;
|
|
245125
246541
|
};
|
|
246542
|
+
export type TrelloMutationApiRejectRecommendationArgs = {
|
|
246543
|
+
input: TrelloRejectRecommendationInput;
|
|
246544
|
+
};
|
|
245126
246545
|
export type TrelloMutationApiRemoveBoardStarArgs = {
|
|
245127
246546
|
input: TrelloRemoveBoardStarInput;
|
|
245128
246547
|
};
|
|
@@ -246316,6 +247735,7 @@ export type TrelloProviderCalendarInterface = {
|
|
|
246316
247735
|
};
|
|
246317
247736
|
export type TrelloQueryApi = {
|
|
246318
247737
|
__typename?: 'TrelloQueryApi';
|
|
247738
|
+
agentSession?: Maybe<TrelloAgentSession>;
|
|
246319
247739
|
aiPromptInterjectionContract?: Maybe<TrelloAiPromptInterjectionContract>;
|
|
246320
247740
|
aiPromptInterjectionOverrides?: Maybe<Array<TrelloAiPromptInterjectionOverride>>;
|
|
246321
247741
|
application?: Maybe<TrelloApplication>;
|
|
@@ -246365,6 +247785,9 @@ export type TrelloQueryApi = {
|
|
|
246365
247785
|
workspace?: Maybe<TrelloWorkspace>;
|
|
246366
247786
|
workspaceMultiboardView?: Maybe<TrelloWorkspaceMultiboard>;
|
|
246367
247787
|
};
|
|
247788
|
+
export type TrelloQueryApiAgentSessionArgs = {
|
|
247789
|
+
id: Scalars['ID']['input'];
|
|
247790
|
+
};
|
|
246368
247791
|
export type TrelloQueryApiApplicationArgs = {
|
|
246369
247792
|
id: Scalars['ID']['input'];
|
|
246370
247793
|
};
|
|
@@ -246587,6 +248010,14 @@ export type TrelloRecommendationOwner = {
|
|
|
246587
248010
|
id: Scalars['ID']['output'];
|
|
246588
248011
|
name?: Maybe<Scalars['String']['output']>;
|
|
246589
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
|
+
};
|
|
246590
248021
|
export type TrelloRecommendedAction = {
|
|
246591
248022
|
__typename?: 'TrelloRecommendedAction';
|
|
246592
248023
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -246614,6 +248045,15 @@ export type TrelloRejectProposedEventsPayload = Payload & {
|
|
|
246614
248045
|
proposedEvents?: Maybe<Array<TrelloProposedEventDeleted>>;
|
|
246615
248046
|
success: Scalars['Boolean']['output'];
|
|
246616
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
|
+
};
|
|
246617
248057
|
export declare enum TrelloRelativePosition {
|
|
246618
248058
|
Bottom = "BOTTOM",
|
|
246619
248059
|
Top = "TOP"
|
|
@@ -248035,7 +249475,6 @@ export type TrelloWorkspace = Node & {
|
|
|
248035
249475
|
description?: Maybe<Scalars['String']['output']>;
|
|
248036
249476
|
displayBoardCount?: Maybe<Scalars['Int']['output']>;
|
|
248037
249477
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
248038
|
-
eligibleForTrial?: Maybe<Scalars['Boolean']['output']>;
|
|
248039
249478
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
248040
249479
|
entitlement?: Maybe<CcpEntitlement>;
|
|
248041
249480
|
iconEmoji?: Maybe<Scalars['String']['output']>;
|
|
@@ -248054,6 +249493,7 @@ export type TrelloWorkspace = Node & {
|
|
|
248054
249493
|
premiumFeatures?: Maybe<Array<Scalars['String']['output']>>;
|
|
248055
249494
|
products?: Maybe<Array<Scalars['Float']['output']>>;
|
|
248056
249495
|
tags?: Maybe<TrelloTagConnection>;
|
|
249496
|
+
trial?: Maybe<TrelloWorkspaceTrial>;
|
|
248057
249497
|
url?: Maybe<Scalars['URL']['output']>;
|
|
248058
249498
|
website?: Maybe<Scalars['String']['output']>;
|
|
248059
249499
|
};
|
|
@@ -248202,6 +249642,11 @@ export type TrelloWorkspacePrefs = {
|
|
|
248202
249642
|
export declare enum TrelloWorkspaceTier {
|
|
248203
249643
|
Paid = "PAID"
|
|
248204
249644
|
}
|
|
249645
|
+
export type TrelloWorkspaceTrial = {
|
|
249646
|
+
__typename?: 'TrelloWorkspaceTrial';
|
|
249647
|
+
eligible?: Maybe<Scalars['Boolean']['output']>;
|
|
249648
|
+
endDate?: Maybe<Scalars['DateTime']['output']>;
|
|
249649
|
+
};
|
|
248205
249650
|
export type TrelloWorkspaceUpdated = {
|
|
248206
249651
|
__typename?: 'TrelloWorkspaceUpdated';
|
|
248207
249652
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|