@forge/cli-shared 9.6.0-next.7 → 9.6.0-next.8
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 +8 -0
- package/out/graphql/graphql-types.d.ts +813 -47
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +124 -60
- package/package.json +2 -2
|
@@ -4698,6 +4698,11 @@ export type AdminCreateInvitePolicyResponsePayload = {
|
|
|
4698
4698
|
invitePolicy?: Maybe<AdminInvitePolicy>;
|
|
4699
4699
|
success: Scalars['Boolean']['output'];
|
|
4700
4700
|
};
|
|
4701
|
+
export type AdminCreateOAuthClientInput = {
|
|
4702
|
+
name: Scalars['String']['input'];
|
|
4703
|
+
orgId: Scalars['ID']['input'];
|
|
4704
|
+
scopes: Array<Scalars['String']['input']>;
|
|
4705
|
+
};
|
|
4701
4706
|
export type AdminCreateOutboundAuthServicePayload = AdminPayload & {
|
|
4702
4707
|
__typename?: 'AdminCreateOutboundAuthServicePayload';
|
|
4703
4708
|
errors?: Maybe<Array<AdminMutationError>>;
|
|
@@ -4913,7 +4918,7 @@ export type AdminGenericMutationResponse = AdminPayload & {
|
|
|
4913
4918
|
errors?: Maybe<Array<AdminMutationError>>;
|
|
4914
4919
|
success: Scalars['Boolean']['output'];
|
|
4915
4920
|
};
|
|
4916
|
-
export type AdminGroup = {
|
|
4921
|
+
export type AdminGroup = AdminPrincipal & {
|
|
4917
4922
|
__typename?: 'AdminGroup';
|
|
4918
4923
|
counts?: Maybe<AdminGroupCounts>;
|
|
4919
4924
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -5204,6 +5209,73 @@ export type AdminMutationError = {
|
|
|
5204
5209
|
extensions?: Maybe<AdminApplicationErrorExtension>;
|
|
5205
5210
|
message?: Maybe<Scalars['String']['output']>;
|
|
5206
5211
|
};
|
|
5212
|
+
export type AdminOAuthClient = {
|
|
5213
|
+
__typename?: 'AdminOAuthClient';
|
|
5214
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
5215
|
+
createdBy?: Maybe<AdminPrincipal>;
|
|
5216
|
+
createdByAccountId?: Maybe<Scalars['ID']['output']>;
|
|
5217
|
+
expiresAt?: Maybe<Scalars['DateTime']['output']>;
|
|
5218
|
+
id: Scalars['ID']['output'];
|
|
5219
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
5220
|
+
revokedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
5221
|
+
revokedBy?: Maybe<AdminPrincipal>;
|
|
5222
|
+
revokedByAccountId?: Maybe<Scalars['ID']['output']>;
|
|
5223
|
+
scopes?: Maybe<Array<Scalars['String']['output']>>;
|
|
5224
|
+
status?: Maybe<AdminOAuthClientStatus>;
|
|
5225
|
+
};
|
|
5226
|
+
export type AdminOAuthClientConnection = {
|
|
5227
|
+
__typename?: 'AdminOAuthClientConnection';
|
|
5228
|
+
edges?: Maybe<Array<AdminOAuthClientEdge>>;
|
|
5229
|
+
pageInfo: PageInfo;
|
|
5230
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
5231
|
+
};
|
|
5232
|
+
export type AdminOAuthClientEdge = {
|
|
5233
|
+
__typename?: 'AdminOAuthClientEdge';
|
|
5234
|
+
cursor: Scalars['String']['output'];
|
|
5235
|
+
node: AdminOAuthClient;
|
|
5236
|
+
};
|
|
5237
|
+
export type AdminOAuthClientFilter = {
|
|
5238
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
5239
|
+
status?: InputMaybe<AdminOAuthClientStatus>;
|
|
5240
|
+
};
|
|
5241
|
+
export type AdminOAuthClientSecretPayload = AdminPayload & {
|
|
5242
|
+
__typename?: 'AdminOAuthClientSecretPayload';
|
|
5243
|
+
clientId?: Maybe<Scalars['ID']['output']>;
|
|
5244
|
+
clientSecret?: Maybe<Scalars['String']['output']>;
|
|
5245
|
+
errors?: Maybe<Array<AdminMutationError>>;
|
|
5246
|
+
success: Scalars['Boolean']['output'];
|
|
5247
|
+
};
|
|
5248
|
+
export declare enum AdminOAuthClientSortField {
|
|
5249
|
+
CreatedAt = "CREATED_AT",
|
|
5250
|
+
CreatedByName = "CREATED_BY_NAME",
|
|
5251
|
+
Name = "NAME"
|
|
5252
|
+
}
|
|
5253
|
+
export type AdminOAuthClientSortInput = {
|
|
5254
|
+
direction: SortDirection;
|
|
5255
|
+
field: AdminOAuthClientSortField;
|
|
5256
|
+
};
|
|
5257
|
+
export declare enum AdminOAuthClientStatus {
|
|
5258
|
+
Active = "ACTIVE",
|
|
5259
|
+
Revoked = "REVOKED"
|
|
5260
|
+
}
|
|
5261
|
+
export type AdminOAuthScope = {
|
|
5262
|
+
__typename?: 'AdminOAuthScope';
|
|
5263
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
5264
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
5265
|
+
groupDisplayName?: Maybe<Scalars['String']['output']>;
|
|
5266
|
+
id: Scalars['ID']['output'];
|
|
5267
|
+
};
|
|
5268
|
+
export type AdminOAuthScopeConnection = {
|
|
5269
|
+
__typename?: 'AdminOAuthScopeConnection';
|
|
5270
|
+
edges?: Maybe<Array<AdminOAuthScopeEdge>>;
|
|
5271
|
+
pageInfo: PageInfo;
|
|
5272
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
5273
|
+
};
|
|
5274
|
+
export type AdminOAuthScopeEdge = {
|
|
5275
|
+
__typename?: 'AdminOAuthScopeEdge';
|
|
5276
|
+
cursor: Scalars['String']['output'];
|
|
5277
|
+
node: AdminOAuthScope;
|
|
5278
|
+
};
|
|
5207
5279
|
export type AdminOfferingInput = {
|
|
5208
5280
|
byokPolicyId?: InputMaybe<Scalars['ID']['input']>;
|
|
5209
5281
|
chargeElement?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -5326,7 +5398,10 @@ export declare enum AdminPolicyStatus {
|
|
|
5326
5398
|
export type AdminPrimitive = {
|
|
5327
5399
|
field?: InputMaybe<AdminQueryableField>;
|
|
5328
5400
|
};
|
|
5329
|
-
export type AdminPrincipal =
|
|
5401
|
+
export type AdminPrincipal = {
|
|
5402
|
+
id: Scalars['ID']['output'];
|
|
5403
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
5404
|
+
};
|
|
5330
5405
|
export type AdminProductListingResult = {
|
|
5331
5406
|
__typename?: 'AdminProductListingResult';
|
|
5332
5407
|
name: Scalars['String']['output'];
|
|
@@ -5399,6 +5474,16 @@ export type AdminResourceRoleInput = {
|
|
|
5399
5474
|
resourceId: Scalars['ID']['input'];
|
|
5400
5475
|
roleId: Scalars['ID']['input'];
|
|
5401
5476
|
};
|
|
5477
|
+
export type AdminRevokeOAuthClientInput = {
|
|
5478
|
+
clientId: Scalars['ID']['input'];
|
|
5479
|
+
orgId: Scalars['ID']['input'];
|
|
5480
|
+
};
|
|
5481
|
+
export type AdminRevokeOAuthClientPayload = AdminPayload & {
|
|
5482
|
+
__typename?: 'AdminRevokeOAuthClientPayload';
|
|
5483
|
+
clientId?: Maybe<Scalars['ID']['output']>;
|
|
5484
|
+
errors?: Maybe<Array<AdminMutationError>>;
|
|
5485
|
+
success: Scalars['Boolean']['output'];
|
|
5486
|
+
};
|
|
5402
5487
|
export type AdminRevokeRoleInput = {
|
|
5403
5488
|
principalId: Scalars['String']['input'];
|
|
5404
5489
|
resourceId: Scalars['String']['input'];
|
|
@@ -5441,6 +5526,10 @@ export type AdminRoleIdCounts = {
|
|
|
5441
5526
|
count: Scalars['Int']['output'];
|
|
5442
5527
|
roleId: Scalars['String']['output'];
|
|
5443
5528
|
};
|
|
5529
|
+
export type AdminRotateOAuthClientSecretInput = {
|
|
5530
|
+
clientId: Scalars['ID']['input'];
|
|
5531
|
+
orgId: Scalars['ID']['input'];
|
|
5532
|
+
};
|
|
5444
5533
|
export type AdminSamlConfiguration = {
|
|
5445
5534
|
__typename?: 'AdminSamlConfiguration';
|
|
5446
5535
|
identityProviderDirectoryId: Scalars['ID']['output'];
|
|
@@ -5992,7 +6081,7 @@ export type AdminUsageInfo = {
|
|
|
5992
6081
|
usage?: Maybe<Scalars['Float']['output']>;
|
|
5993
6082
|
usageIdentifier?: Maybe<Scalars['String']['output']>;
|
|
5994
6083
|
};
|
|
5995
|
-
export type AdminUser = {
|
|
6084
|
+
export type AdminUser = AdminPrincipal & {
|
|
5996
6085
|
__typename?: 'AdminUser';
|
|
5997
6086
|
accountStatus: Scalars['String']['output'];
|
|
5998
6087
|
accountType?: Maybe<Scalars['String']['output']>;
|
|
@@ -22863,6 +22952,7 @@ export type CommerceExpCcpEntitlement = {
|
|
|
22863
22952
|
actions?: Maybe<CommerceExpEntitlementActions>;
|
|
22864
22953
|
actions2?: Maybe<CommerceExpEntitlementActionsV2>;
|
|
22865
22954
|
aggCcpEntitlement?: Maybe<CcpEntitlement>;
|
|
22955
|
+
aggCcpEntitlementIfEntitlementTypeIsApp?: Maybe<CcpEntitlement>;
|
|
22866
22956
|
aggCcpEntitlementIfHostingTypeIsDataCenter?: Maybe<CcpEntitlement>;
|
|
22867
22957
|
allRelatedEntitlementsForBac?: Maybe<Array<Maybe<CommerceExpCcpEntitlement>>>;
|
|
22868
22958
|
allowanceExemptions?: Maybe<CommerceExpUtsAllowanceExemptionList>;
|
|
@@ -22881,6 +22971,7 @@ export type CommerceExpCcpEntitlement = {
|
|
|
22881
22971
|
contract?: Maybe<CommerceExpCommercialContract>;
|
|
22882
22972
|
currentPromotions?: Maybe<Array<Maybe<CommerceExpCcpPromotion>>>;
|
|
22883
22973
|
currentUserPermissions?: Maybe<Array<Maybe<CommerceExpUserPermission>>>;
|
|
22974
|
+
entitlementIdIfEntitlementTypeIsApp?: Maybe<Scalars['ID']['output']>;
|
|
22884
22975
|
entitlementIdIfHostingTypeIsDataCenter?: Maybe<Scalars['ID']['output']>;
|
|
22885
22976
|
forecastBillEstimates?: Maybe<CommerceExpForecastBillEstimates>;
|
|
22886
22977
|
hasConnectedAnnualProductEntitlements?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -26892,6 +26983,7 @@ export type CommerceExpValidOrderSuccess = {
|
|
|
26892
26983
|
rawOrder?: Maybe<Scalars['JSON']['output']>;
|
|
26893
26984
|
recurringEstimate?: Maybe<CommerceExpOrderIntentEstimate>;
|
|
26894
26985
|
shouldAddPaymentBeforeUpgrade?: Maybe<Scalars['Boolean']['output']>;
|
|
26986
|
+
shouldSkipTrialOnUpgrade?: Maybe<Scalars['Boolean']['output']>;
|
|
26895
26987
|
upgradeServCoProductsAction?: Maybe<CommerceExpServCoUpgradeAction>;
|
|
26896
26988
|
validOrderItems?: Maybe<Array<Maybe<CommerceExpValidOrderItem>>>;
|
|
26897
26989
|
};
|
|
@@ -52085,6 +52177,7 @@ export type ExternalBranch = Node & {
|
|
|
52085
52177
|
__typename?: 'ExternalBranch';
|
|
52086
52178
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52087
52179
|
branchId?: Maybe<Scalars['String']['output']>;
|
|
52180
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52088
52181
|
container?: Maybe<ExternalEntity>;
|
|
52089
52182
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52090
52183
|
createPullRequestUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -52116,6 +52209,7 @@ export type ExternalBuildInfo = Node & {
|
|
|
52116
52209
|
__typename?: 'ExternalBuildInfo';
|
|
52117
52210
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52118
52211
|
buildNumber?: Maybe<Scalars['Long']['output']>;
|
|
52212
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52119
52213
|
container?: Maybe<ExternalEntity>;
|
|
52120
52214
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52121
52215
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -52449,6 +52543,7 @@ export type ExternalCommit = Node & {
|
|
|
52449
52543
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52450
52544
|
author?: Maybe<ExternalUser>;
|
|
52451
52545
|
commitId?: Maybe<Scalars['String']['output']>;
|
|
52546
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52452
52547
|
container?: Maybe<ExternalEntity>;
|
|
52453
52548
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52454
52549
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -52864,6 +52959,7 @@ export type ExternalDealOpportunityAmount = {
|
|
|
52864
52959
|
export type ExternalDeployment = Node & {
|
|
52865
52960
|
__typename?: 'ExternalDeployment';
|
|
52866
52961
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52962
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52867
52963
|
container?: Maybe<ExternalEntity>;
|
|
52868
52964
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52869
52965
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -52901,6 +52997,7 @@ export declare enum ExternalDeploymentState {
|
|
|
52901
52997
|
export type ExternalDesign = Node & {
|
|
52902
52998
|
__typename?: 'ExternalDesign';
|
|
52903
52999
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53000
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52904
53001
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
52905
53002
|
createdBy?: Maybe<ExternalUser>;
|
|
52906
53003
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -53142,6 +53239,7 @@ export type ExternalExportLink = {
|
|
|
53142
53239
|
export type ExternalFeatureFlag = Node & {
|
|
53143
53240
|
__typename?: 'ExternalFeatureFlag';
|
|
53144
53241
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53242
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53145
53243
|
details?: Maybe<Array<Maybe<ExternalFeatureFlagDetail>>>;
|
|
53146
53244
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
53147
53245
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
@@ -53459,6 +53557,7 @@ export type ExternalPullRequest = Node & {
|
|
|
53459
53557
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53460
53558
|
author?: Maybe<ExternalUser>;
|
|
53461
53559
|
commentCount?: Maybe<Scalars['Int']['output']>;
|
|
53560
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53462
53561
|
container?: Maybe<ExternalEntity>;
|
|
53463
53562
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53464
53563
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -53520,6 +53619,7 @@ export type ExternalRemoteLink = Node & {
|
|
|
53520
53619
|
attributeMap?: Maybe<Array<Maybe<ExternalRemoteLinkAttributeTuple>>>;
|
|
53521
53620
|
author?: Maybe<ExternalUser>;
|
|
53522
53621
|
category?: Maybe<Scalars['String']['output']>;
|
|
53622
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53523
53623
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
53524
53624
|
createdBy?: Maybe<ExternalUser>;
|
|
53525
53625
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -53552,6 +53652,7 @@ export type ExternalRepository = Node & {
|
|
|
53552
53652
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53553
53653
|
avatarDescription?: Maybe<Scalars['String']['output']>;
|
|
53554
53654
|
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
53655
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53555
53656
|
createdBy?: Maybe<ExternalUser>;
|
|
53556
53657
|
description?: Maybe<Scalars['String']['output']>;
|
|
53557
53658
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -54005,6 +54106,7 @@ export type ExternalVulnerability = Node & {
|
|
|
54005
54106
|
__typename?: 'ExternalVulnerability';
|
|
54006
54107
|
additionalInfo?: Maybe<ExternalVulnerabilityAdditionalInfo>;
|
|
54007
54108
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
54109
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
54008
54110
|
description?: Maybe<Scalars['String']['output']>;
|
|
54009
54111
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
54010
54112
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
@@ -57120,6 +57222,9 @@ export declare enum GraphInferenceFailureReason {
|
|
|
57120
57222
|
Unavailable = "UNAVAILABLE",
|
|
57121
57223
|
Unknown = "UNKNOWN"
|
|
57122
57224
|
}
|
|
57225
|
+
export type GraphInferenceGenerateReviewPackInput = {
|
|
57226
|
+
requestId: Scalars['String']['input'];
|
|
57227
|
+
};
|
|
57123
57228
|
export type GraphInferenceGetJiraEntityContextInput = {
|
|
57124
57229
|
agentAri?: InputMaybe<Scalars['String']['input']>;
|
|
57125
57230
|
contextTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -57815,6 +57920,122 @@ export type GraphInferenceRelatedReposRoot = {
|
|
|
57815
57920
|
__typename?: 'GraphInferenceRelatedReposRoot';
|
|
57816
57921
|
ari: Scalars['String']['output'];
|
|
57817
57922
|
};
|
|
57923
|
+
export type GraphInferenceReviewEntity = {
|
|
57924
|
+
__typename?: 'GraphInferenceReviewEntity';
|
|
57925
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
57926
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
57927
|
+
id: Scalars['String']['output'];
|
|
57928
|
+
inferred: Scalars['Boolean']['output'];
|
|
57929
|
+
kind: GraphInferenceReviewSubjectKind;
|
|
57930
|
+
title: Scalars['String']['output'];
|
|
57931
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
57932
|
+
};
|
|
57933
|
+
export type GraphInferenceReviewEvidence = {
|
|
57934
|
+
__typename?: 'GraphInferenceReviewEvidence';
|
|
57935
|
+
entity: GraphInferenceReviewEntity;
|
|
57936
|
+
sourceType?: Maybe<Scalars['String']['output']>;
|
|
57937
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
57938
|
+
};
|
|
57939
|
+
export declare enum GraphInferenceReviewIssueLabel {
|
|
57940
|
+
MissingContext = "MISSING_CONTEXT",
|
|
57941
|
+
Outdated = "OUTDATED",
|
|
57942
|
+
UnsupportedEvidence = "UNSUPPORTED_EVIDENCE",
|
|
57943
|
+
WrongEntity = "WRONG_ENTITY",
|
|
57944
|
+
WrongRelationship = "WRONG_RELATIONSHIP"
|
|
57945
|
+
}
|
|
57946
|
+
export type GraphInferenceReviewPackDetail = {
|
|
57947
|
+
__typename?: 'GraphInferenceReviewPackDetail';
|
|
57948
|
+
items: Array<GraphInferenceReviewPackItem>;
|
|
57949
|
+
summary: GraphInferenceReviewPackSummary;
|
|
57950
|
+
};
|
|
57951
|
+
export type GraphInferenceReviewPackItem = {
|
|
57952
|
+
__typename?: 'GraphInferenceReviewPackItem';
|
|
57953
|
+
anchor?: Maybe<GraphInferenceInferenceAppStoredAnchor>;
|
|
57954
|
+
appId: Scalars['String']['output'];
|
|
57955
|
+
available: Scalars['Boolean']['output'];
|
|
57956
|
+
evidence: Array<GraphInferenceReviewEvidence>;
|
|
57957
|
+
explanation?: Maybe<Scalars['String']['output']>;
|
|
57958
|
+
id: Scalars['ID']['output'];
|
|
57959
|
+
inferenceNode?: Maybe<GraphInferenceInferenceAppStoredInferenceNode>;
|
|
57960
|
+
inferenceType: Scalars['String']['output'];
|
|
57961
|
+
linksEntities: Array<GraphInferenceInferenceAppStoredLinkedEntity>;
|
|
57962
|
+
position: Scalars['Int']['output'];
|
|
57963
|
+
response?: Maybe<GraphInferenceReviewResponse>;
|
|
57964
|
+
selectionReason: Scalars['String']['output'];
|
|
57965
|
+
subject?: Maybe<GraphInferenceReviewSubject>;
|
|
57966
|
+
};
|
|
57967
|
+
export declare enum GraphInferenceReviewPackKind {
|
|
57968
|
+
Manual = "MANUAL",
|
|
57969
|
+
Weekly = "WEEKLY"
|
|
57970
|
+
}
|
|
57971
|
+
export declare enum GraphInferenceReviewPackStatus {
|
|
57972
|
+
Completed = "COMPLETED",
|
|
57973
|
+
Failed = "FAILED",
|
|
57974
|
+
Generating = "GENERATING",
|
|
57975
|
+
InReview = "IN_REVIEW",
|
|
57976
|
+
Ready = "READY"
|
|
57977
|
+
}
|
|
57978
|
+
export type GraphInferenceReviewPackSummary = {
|
|
57979
|
+
__typename?: 'GraphInferenceReviewPackSummary';
|
|
57980
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
57981
|
+
failureCode?: Maybe<Scalars['String']['output']>;
|
|
57982
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
57983
|
+
itemCount?: Maybe<Scalars['Int']['output']>;
|
|
57984
|
+
kind?: Maybe<GraphInferenceReviewPackKind>;
|
|
57985
|
+
periodEnd?: Maybe<Scalars['String']['output']>;
|
|
57986
|
+
periodStart?: Maybe<Scalars['String']['output']>;
|
|
57987
|
+
requestedSize?: Maybe<Scalars['Int']['output']>;
|
|
57988
|
+
reviewedCount?: Maybe<Scalars['Int']['output']>;
|
|
57989
|
+
samplingVersion?: Maybe<Scalars['String']['output']>;
|
|
57990
|
+
skippedCount?: Maybe<Scalars['Int']['output']>;
|
|
57991
|
+
status?: Maybe<GraphInferenceReviewPackStatus>;
|
|
57992
|
+
tenantAri?: Maybe<Scalars['String']['output']>;
|
|
57993
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
57994
|
+
userAri?: Maybe<Scalars['String']['output']>;
|
|
57995
|
+
};
|
|
57996
|
+
export type GraphInferenceReviewRelationship = {
|
|
57997
|
+
__typename?: 'GraphInferenceReviewRelationship';
|
|
57998
|
+
relationshipType: Scalars['String']['output'];
|
|
57999
|
+
source: GraphInferenceReviewEntity;
|
|
58000
|
+
target: GraphInferenceReviewEntity;
|
|
58001
|
+
};
|
|
58002
|
+
export type GraphInferenceReviewResponse = {
|
|
58003
|
+
__typename?: 'GraphInferenceReviewResponse';
|
|
58004
|
+
correction?: Maybe<Scalars['String']['output']>;
|
|
58005
|
+
issueLabels: Array<GraphInferenceReviewIssueLabel>;
|
|
58006
|
+
itemId: Scalars['ID']['output'];
|
|
58007
|
+
skipped: Scalars['Boolean']['output'];
|
|
58008
|
+
updatedAt: Scalars['String']['output'];
|
|
58009
|
+
utility?: Maybe<GraphInferenceReviewUtility>;
|
|
58010
|
+
verdict?: Maybe<GraphInferenceReviewVerdict>;
|
|
58011
|
+
};
|
|
58012
|
+
export type GraphInferenceReviewSubject = {
|
|
58013
|
+
__typename?: 'GraphInferenceReviewSubject';
|
|
58014
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
58015
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
58016
|
+
id: Scalars['String']['output'];
|
|
58017
|
+
inferred: Scalars['Boolean']['output'];
|
|
58018
|
+
kind: GraphInferenceReviewSubjectKind;
|
|
58019
|
+
relationship?: Maybe<GraphInferenceReviewRelationship>;
|
|
58020
|
+
title: Scalars['String']['output'];
|
|
58021
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
58022
|
+
};
|
|
58023
|
+
export declare enum GraphInferenceReviewSubjectKind {
|
|
58024
|
+
Artifact = "ARTIFACT",
|
|
58025
|
+
Decision = "DECISION",
|
|
58026
|
+
Project = "PROJECT",
|
|
58027
|
+
Relationship = "RELATIONSHIP",
|
|
58028
|
+
Team = "TEAM"
|
|
58029
|
+
}
|
|
58030
|
+
export declare enum GraphInferenceReviewUtility {
|
|
58031
|
+
NotUseful = "NOT_USEFUL",
|
|
58032
|
+
Useful = "USEFUL"
|
|
58033
|
+
}
|
|
58034
|
+
export declare enum GraphInferenceReviewVerdict {
|
|
58035
|
+
Correct = "CORRECT",
|
|
58036
|
+
NeedsChanges = "NEEDS_CHANGES",
|
|
58037
|
+
Unsure = "UNSURE"
|
|
58038
|
+
}
|
|
57818
58039
|
export type GraphInferenceSimilarJiraItemCandidate = {
|
|
57819
58040
|
__typename?: 'GraphInferenceSimilarJiraItemCandidate';
|
|
57820
58041
|
ari: Scalars['String']['output'];
|
|
@@ -57836,6 +58057,15 @@ export type GraphInferenceSimilarJiraItemsRoot = {
|
|
|
57836
58057
|
__typename?: 'GraphInferenceSimilarJiraItemsRoot';
|
|
57837
58058
|
ari: Scalars['String']['output'];
|
|
57838
58059
|
};
|
|
58060
|
+
export type GraphInferenceSubmitReviewInput = {
|
|
58061
|
+
correction?: InputMaybe<Scalars['String']['input']>;
|
|
58062
|
+
issueLabels?: Array<GraphInferenceReviewIssueLabel>;
|
|
58063
|
+
itemId: Scalars['String']['input'];
|
|
58064
|
+
packId: Scalars['String']['input'];
|
|
58065
|
+
skipped?: Scalars['Boolean']['input'];
|
|
58066
|
+
utility?: InputMaybe<GraphInferenceReviewUtility>;
|
|
58067
|
+
verdict?: InputMaybe<GraphInferenceReviewVerdict>;
|
|
58068
|
+
};
|
|
57839
58069
|
export type GraphInferenceTargetInsightsInput = {
|
|
57840
58070
|
dateRange?: InputMaybe<GraphInferenceInsightDateRangeInput>;
|
|
57841
58071
|
insightTypes?: InputMaybe<Array<GraphInferenceInsightType>>;
|
|
@@ -61916,6 +62146,8 @@ export type GraphStore = {
|
|
|
61916
62146
|
atlassianUserOwnsExternalTestStatusInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInverseConnection>;
|
|
61917
62147
|
atlassianUserOwnsInferredProject?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectConnection>;
|
|
61918
62148
|
atlassianUserOwnsInferredProjectInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseConnection>;
|
|
62149
|
+
atlassianUserRespondsToJiraWorkItem?: Maybe<GraphStoreSimplifiedAtlassianUserRespondsToJiraWorkItemConnection>;
|
|
62150
|
+
atlassianUserRespondsToJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedAtlassianUserRespondsToJiraWorkItemInverseConnection>;
|
|
61919
62151
|
atlassianUserReviewedConfluenceApprovalInverse?: Maybe<GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection>;
|
|
61920
62152
|
atlassianUserTriggeredAtlassianAgentSessionInverse?: Maybe<GraphStoreSimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseConnection>;
|
|
61921
62153
|
atlassianUserUpdatedExternalCampaign?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCampaignConnection>;
|
|
@@ -62345,6 +62577,8 @@ export type GraphStore = {
|
|
|
62345
62577
|
jiraSpaceHasLinkedKnowledgeBaseEntityInverse?: Maybe<GraphStoreSimplifiedJiraSpaceHasLinkedKnowledgeBaseEntityInverseConnection>;
|
|
62346
62578
|
jiraWorkItemCommentHasChildComment?: Maybe<GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentConnection>;
|
|
62347
62579
|
jiraWorkItemCommentHasChildCommentInverse?: Maybe<GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentInverseConnection>;
|
|
62580
|
+
jiraWorkItemHasJsmIncidentSeverity?: Maybe<GraphStoreSimplifiedJiraWorkItemHasJsmIncidentSeverityConnection>;
|
|
62581
|
+
jiraWorkItemHasJsmIncidentSeverityInverse?: Maybe<GraphStoreSimplifiedJiraWorkItemHasJsmIncidentSeverityInverseConnection>;
|
|
62348
62582
|
jiraWorkItemLinksAssetObject?: Maybe<GraphStoreSimplifiedJiraWorkItemLinksAssetObjectConnection>;
|
|
62349
62583
|
jiraWorkItemLinksAssetObjectInverse?: Maybe<GraphStoreSimplifiedJiraWorkItemLinksAssetObjectInverseConnection>;
|
|
62350
62584
|
jsmProjectAssociatedService?: Maybe<GraphStoreSimplifiedJsmProjectAssociatedServiceConnection>;
|
|
@@ -64174,6 +64408,22 @@ export type GraphStoreAtlassianUserOwnsInferredProjectInverseArgs = {
|
|
|
64174
64408
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
64175
64409
|
sort?: InputMaybe<GraphStoreAtlassianUserOwnsInferredProjectSortInput>;
|
|
64176
64410
|
};
|
|
64411
|
+
export type GraphStoreAtlassianUserRespondsToJiraWorkItemArgs = {
|
|
64412
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
64413
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
64414
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
64415
|
+
id: Scalars['ID']['input'];
|
|
64416
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
64417
|
+
sort?: InputMaybe<GraphStoreAtlassianUserRespondsToJiraWorkItemSortInput>;
|
|
64418
|
+
};
|
|
64419
|
+
export type GraphStoreAtlassianUserRespondsToJiraWorkItemInverseArgs = {
|
|
64420
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
64421
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
64422
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
64423
|
+
id: Scalars['ID']['input'];
|
|
64424
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
64425
|
+
sort?: InputMaybe<GraphStoreAtlassianUserRespondsToJiraWorkItemSortInput>;
|
|
64426
|
+
};
|
|
64177
64427
|
export type GraphStoreAtlassianUserReviewedConfluenceApprovalInverseArgs = {
|
|
64178
64428
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
64179
64429
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -67476,6 +67726,22 @@ export type GraphStoreJiraWorkItemCommentHasChildCommentInverseArgs = {
|
|
|
67476
67726
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
67477
67727
|
sort?: InputMaybe<GraphStoreJiraWorkItemCommentHasChildCommentSortInput>;
|
|
67478
67728
|
};
|
|
67729
|
+
export type GraphStoreJiraWorkItemHasJsmIncidentSeverityArgs = {
|
|
67730
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
67731
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67732
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67733
|
+
id: Scalars['ID']['input'];
|
|
67734
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
67735
|
+
sort?: InputMaybe<GraphStoreJiraWorkItemHasJsmIncidentSeveritySortInput>;
|
|
67736
|
+
};
|
|
67737
|
+
export type GraphStoreJiraWorkItemHasJsmIncidentSeverityInverseArgs = {
|
|
67738
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
67739
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67740
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67741
|
+
id: Scalars['ID']['input'];
|
|
67742
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
67743
|
+
sort?: InputMaybe<GraphStoreJiraWorkItemHasJsmIncidentSeveritySortInput>;
|
|
67744
|
+
};
|
|
67479
67745
|
export type GraphStoreJiraWorkItemLinksAssetObjectArgs = {
|
|
67480
67746
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
67481
67747
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -73058,6 +73324,9 @@ export type GraphStoreAtlassianUserOwnsExternalTestStatusSortInput = {
|
|
|
73058
73324
|
export type GraphStoreAtlassianUserOwnsInferredProjectSortInput = {
|
|
73059
73325
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
73060
73326
|
};
|
|
73327
|
+
export type GraphStoreAtlassianUserRespondsToJiraWorkItemSortInput = {
|
|
73328
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
73329
|
+
};
|
|
73061
73330
|
export type GraphStoreAtlassianUserReviewedConfluenceApprovalSortInput = {
|
|
73062
73331
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
73063
73332
|
};
|
|
@@ -80947,6 +81216,9 @@ export type GraphStoreJiraSpaceHasLinkedKnowledgeBaseEntitySortInput = {
|
|
|
80947
81216
|
export type GraphStoreJiraWorkItemCommentHasChildCommentSortInput = {
|
|
80948
81217
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80949
81218
|
};
|
|
81219
|
+
export type GraphStoreJiraWorkItemHasJsmIncidentSeveritySortInput = {
|
|
81220
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
81221
|
+
};
|
|
80950
81222
|
export type GraphStoreJiraWorkItemLinksAssetObjectSortInput = {
|
|
80951
81223
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80952
81224
|
};
|
|
@@ -83898,6 +84170,34 @@ export type GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseEdge = {
|
|
|
83898
84170
|
};
|
|
83899
84171
|
export type GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
83900
84172
|
export type GraphStoreSimplifiedAtlassianUserOwnsInferredProjectUnion = GraphStoreNodeResponse;
|
|
84173
|
+
export type GraphStoreSimplifiedAtlassianUserRespondsToJiraWorkItemConnection = HasPageInfo & {
|
|
84174
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserRespondsToJiraWorkItemConnection';
|
|
84175
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserRespondsToJiraWorkItemEdge>>>;
|
|
84176
|
+
pageInfo: PageInfo;
|
|
84177
|
+
};
|
|
84178
|
+
export type GraphStoreSimplifiedAtlassianUserRespondsToJiraWorkItemEdge = {
|
|
84179
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserRespondsToJiraWorkItemEdge';
|
|
84180
|
+
createdAt: Scalars['DateTime']['output'];
|
|
84181
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
84182
|
+
id: Scalars['ID']['output'];
|
|
84183
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
84184
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserRespondsToJiraWorkItemUnion>;
|
|
84185
|
+
};
|
|
84186
|
+
export type GraphStoreSimplifiedAtlassianUserRespondsToJiraWorkItemInverseConnection = HasPageInfo & {
|
|
84187
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserRespondsToJiraWorkItemInverseConnection';
|
|
84188
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserRespondsToJiraWorkItemInverseEdge>>>;
|
|
84189
|
+
pageInfo: PageInfo;
|
|
84190
|
+
};
|
|
84191
|
+
export type GraphStoreSimplifiedAtlassianUserRespondsToJiraWorkItemInverseEdge = {
|
|
84192
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserRespondsToJiraWorkItemInverseEdge';
|
|
84193
|
+
createdAt: Scalars['DateTime']['output'];
|
|
84194
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
84195
|
+
id: Scalars['ID']['output'];
|
|
84196
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
84197
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserRespondsToJiraWorkItemInverseUnion>;
|
|
84198
|
+
};
|
|
84199
|
+
export type GraphStoreSimplifiedAtlassianUserRespondsToJiraWorkItemInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
84200
|
+
export type GraphStoreSimplifiedAtlassianUserRespondsToJiraWorkItemUnion = JiraIssue;
|
|
83901
84201
|
export type GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection = HasPageInfo & {
|
|
83902
84202
|
__typename?: 'GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection';
|
|
83903
84203
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseEdge>>>;
|
|
@@ -88666,6 +88966,34 @@ export type GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentInverseEdge =
|
|
|
88666
88966
|
};
|
|
88667
88967
|
export type GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentInverseUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
88668
88968
|
export type GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
88969
|
+
export type GraphStoreSimplifiedJiraWorkItemHasJsmIncidentSeverityConnection = HasPageInfo & {
|
|
88970
|
+
__typename?: 'GraphStoreSimplifiedJiraWorkItemHasJsmIncidentSeverityConnection';
|
|
88971
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraWorkItemHasJsmIncidentSeverityEdge>>>;
|
|
88972
|
+
pageInfo: PageInfo;
|
|
88973
|
+
};
|
|
88974
|
+
export type GraphStoreSimplifiedJiraWorkItemHasJsmIncidentSeverityEdge = {
|
|
88975
|
+
__typename?: 'GraphStoreSimplifiedJiraWorkItemHasJsmIncidentSeverityEdge';
|
|
88976
|
+
createdAt: Scalars['DateTime']['output'];
|
|
88977
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
88978
|
+
id: Scalars['ID']['output'];
|
|
88979
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
88980
|
+
node?: Maybe<GraphStoreSimplifiedJiraWorkItemHasJsmIncidentSeverityUnion>;
|
|
88981
|
+
};
|
|
88982
|
+
export type GraphStoreSimplifiedJiraWorkItemHasJsmIncidentSeverityInverseConnection = HasPageInfo & {
|
|
88983
|
+
__typename?: 'GraphStoreSimplifiedJiraWorkItemHasJsmIncidentSeverityInverseConnection';
|
|
88984
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraWorkItemHasJsmIncidentSeverityInverseEdge>>>;
|
|
88985
|
+
pageInfo: PageInfo;
|
|
88986
|
+
};
|
|
88987
|
+
export type GraphStoreSimplifiedJiraWorkItemHasJsmIncidentSeverityInverseEdge = {
|
|
88988
|
+
__typename?: 'GraphStoreSimplifiedJiraWorkItemHasJsmIncidentSeverityInverseEdge';
|
|
88989
|
+
createdAt: Scalars['DateTime']['output'];
|
|
88990
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
88991
|
+
id: Scalars['ID']['output'];
|
|
88992
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
88993
|
+
node?: Maybe<GraphStoreSimplifiedJiraWorkItemHasJsmIncidentSeverityInverseUnion>;
|
|
88994
|
+
};
|
|
88995
|
+
export type GraphStoreSimplifiedJiraWorkItemHasJsmIncidentSeverityInverseUnion = JiraIssue;
|
|
88996
|
+
export type GraphStoreSimplifiedJiraWorkItemHasJsmIncidentSeverityUnion = GraphStoreNodeResponse;
|
|
88669
88997
|
export type GraphStoreSimplifiedJiraWorkItemLinksAssetObjectConnection = HasPageInfo & {
|
|
88670
88998
|
__typename?: 'GraphStoreSimplifiedJiraWorkItemLinksAssetObjectConnection';
|
|
88671
88999
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraWorkItemLinksAssetObjectEdge>>>;
|
|
@@ -97371,6 +97699,8 @@ export type GraphStoreV2 = {
|
|
|
97371
97699
|
atlassianUserReportedJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReportedJiraWorkItemInverseConnection>;
|
|
97372
97700
|
atlassianUserReportedJsmIncident?: Maybe<GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentConnection>;
|
|
97373
97701
|
atlassianUserReportedJsmIncidentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentInverseConnection>;
|
|
97702
|
+
atlassianUserRespondsToJiraWorkItem?: Maybe<GraphStoreV2SimplifiedAtlassianUserRespondsToJiraWorkItemConnection>;
|
|
97703
|
+
atlassianUserRespondsToJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserRespondsToJiraWorkItemInverseConnection>;
|
|
97374
97704
|
atlassianUserReviewedConfluenceApprovalInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection>;
|
|
97375
97705
|
atlassianUserSnapshottedConfluencePage?: Maybe<GraphStoreV2SimplifiedAtlassianUserSnapshottedConfluencePageConnection>;
|
|
97376
97706
|
atlassianUserSnapshottedConfluencePageInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserSnapshottedConfluencePageInverseConnection>;
|
|
@@ -97981,8 +98311,12 @@ export type GraphStoreV2 = {
|
|
|
97981
98311
|
jiraWorkItemHasJiraPriorityInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJiraPriorityInverseConnection>;
|
|
97982
98312
|
jiraWorkItemHasJiraWorkItemComment?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentConnection>;
|
|
97983
98313
|
jiraWorkItemHasJiraWorkItemCommentInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentInverseConnection>;
|
|
98314
|
+
jiraWorkItemHasJsmIncidentSeverity?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJsmIncidentSeverityConnection>;
|
|
98315
|
+
jiraWorkItemHasJsmIncidentSeverityInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJsmIncidentSeverityInverseConnection>;
|
|
97984
98316
|
jiraWorkItemHasLinkedKnowledgeBaseEntity?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityConnection>;
|
|
97985
98317
|
jiraWorkItemHasLinkedKnowledgeBaseEntityInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityInverseConnection>;
|
|
98318
|
+
jiraWorkItemImpactsCompassComponent?: Maybe<GraphStoreV2SimplifiedJiraWorkItemImpactsCompassComponentConnection>;
|
|
98319
|
+
jiraWorkItemImpactsCompassComponentInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemImpactsCompassComponentInverseConnection>;
|
|
97986
98320
|
jiraWorkItemLinksAssetsObject?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectConnection>;
|
|
97987
98321
|
jiraWorkItemLinksAssetsObjectInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectInverseConnection>;
|
|
97988
98322
|
jiraWorkItemLinksConfluenceWhiteboard?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksConfluenceWhiteboardConnection>;
|
|
@@ -99645,6 +99979,20 @@ export type GraphStoreV2AtlassianUserReportedJsmIncidentInverseArgs = {
|
|
|
99645
99979
|
id: Scalars['ID']['input'];
|
|
99646
99980
|
sort?: InputMaybe<GraphStoreV2AtlassianUserReportedJsmIncidentSortInput>;
|
|
99647
99981
|
};
|
|
99982
|
+
export type GraphStoreV2AtlassianUserRespondsToJiraWorkItemArgs = {
|
|
99983
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99984
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
99985
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99986
|
+
id: Scalars['ID']['input'];
|
|
99987
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserRespondsToJiraWorkItemSortInput>;
|
|
99988
|
+
};
|
|
99989
|
+
export type GraphStoreV2AtlassianUserRespondsToJiraWorkItemInverseArgs = {
|
|
99990
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99991
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
99992
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99993
|
+
id: Scalars['ID']['input'];
|
|
99994
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserRespondsToJiraWorkItemSortInput>;
|
|
99995
|
+
};
|
|
99648
99996
|
export type GraphStoreV2AtlassianUserReviewedConfluenceApprovalInverseArgs = {
|
|
99649
99997
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
99650
99998
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -103954,6 +104302,20 @@ export type GraphStoreV2JiraWorkItemHasJiraWorkItemCommentInverseArgs = {
|
|
|
103954
104302
|
id: Scalars['ID']['input'];
|
|
103955
104303
|
sort?: InputMaybe<GraphStoreV2JiraWorkItemHasJiraWorkItemCommentSortInput>;
|
|
103956
104304
|
};
|
|
104305
|
+
export type GraphStoreV2JiraWorkItemHasJsmIncidentSeverityArgs = {
|
|
104306
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
104307
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
104308
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
104309
|
+
id: Scalars['ID']['input'];
|
|
104310
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemHasJsmIncidentSeveritySortInput>;
|
|
104311
|
+
};
|
|
104312
|
+
export type GraphStoreV2JiraWorkItemHasJsmIncidentSeverityInverseArgs = {
|
|
104313
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
104314
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
104315
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
104316
|
+
id: Scalars['ID']['input'];
|
|
104317
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemHasJsmIncidentSeveritySortInput>;
|
|
104318
|
+
};
|
|
103957
104319
|
export type GraphStoreV2JiraWorkItemHasLinkedKnowledgeBaseEntityArgs = {
|
|
103958
104320
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
103959
104321
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -103968,6 +104330,20 @@ export type GraphStoreV2JiraWorkItemHasLinkedKnowledgeBaseEntityInverseArgs = {
|
|
|
103968
104330
|
id: Scalars['ID']['input'];
|
|
103969
104331
|
sort?: InputMaybe<GraphStoreV2JiraWorkItemHasLinkedKnowledgeBaseEntitySortInput>;
|
|
103970
104332
|
};
|
|
104333
|
+
export type GraphStoreV2JiraWorkItemImpactsCompassComponentArgs = {
|
|
104334
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
104335
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
104336
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
104337
|
+
id: Scalars['ID']['input'];
|
|
104338
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemImpactsCompassComponentSortInput>;
|
|
104339
|
+
};
|
|
104340
|
+
export type GraphStoreV2JiraWorkItemImpactsCompassComponentInverseArgs = {
|
|
104341
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
104342
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
104343
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
104344
|
+
id: Scalars['ID']['input'];
|
|
104345
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemImpactsCompassComponentSortInput>;
|
|
104346
|
+
};
|
|
103971
104347
|
export type GraphStoreV2JiraWorkItemLinksAssetsObjectArgs = {
|
|
103972
104348
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
103973
104349
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -104993,6 +105369,9 @@ export type GraphStoreV2AtlassianUserReportedJiraWorkItemSortInput = {
|
|
|
104993
105369
|
export type GraphStoreV2AtlassianUserReportedJsmIncidentSortInput = {
|
|
104994
105370
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
104995
105371
|
};
|
|
105372
|
+
export type GraphStoreV2AtlassianUserRespondsToJiraWorkItemSortInput = {
|
|
105373
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
105374
|
+
};
|
|
104996
105375
|
export type GraphStoreV2AtlassianUserReviewedConfluenceApprovalSortInput = {
|
|
104997
105376
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
104998
105377
|
};
|
|
@@ -105599,6 +105978,46 @@ export type GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityRelationsh
|
|
|
105599
105978
|
export type GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityRelationshipObjectMetadataInput = {
|
|
105600
105979
|
linkSource?: InputMaybe<GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityLinkSourceInput>;
|
|
105601
105980
|
};
|
|
105981
|
+
export type GraphStoreV2CreateJiraWorkItemImpactsCompassComponentAliasInput = {
|
|
105982
|
+
from: Scalars['ID']['input'];
|
|
105983
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
105984
|
+
subjectMetadata?: InputMaybe<GraphStoreV2CreateJiraWorkItemImpactsCompassComponentRelationshipSubjectMetadataInput>;
|
|
105985
|
+
to: Scalars['ID']['input'];
|
|
105986
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
105987
|
+
};
|
|
105988
|
+
export type GraphStoreV2CreateJiraWorkItemImpactsCompassComponentInput = {
|
|
105989
|
+
aliases: Array<GraphStoreV2CreateJiraWorkItemImpactsCompassComponentAliasInput>;
|
|
105990
|
+
};
|
|
105991
|
+
export declare enum GraphStoreV2CreateJiraWorkItemImpactsCompassComponentJiraIncidentPriorityInput {
|
|
105992
|
+
NotSet = "NOT_SET",
|
|
105993
|
+
P1 = "P1",
|
|
105994
|
+
P2 = "P2",
|
|
105995
|
+
P3 = "P3",
|
|
105996
|
+
P4 = "P4",
|
|
105997
|
+
P5 = "P5",
|
|
105998
|
+
Pending = "PENDING",
|
|
105999
|
+
Unknown = "UNKNOWN"
|
|
106000
|
+
}
|
|
106001
|
+
export declare enum GraphStoreV2CreateJiraWorkItemImpactsCompassComponentJiraIncidentStatusInput {
|
|
106002
|
+
Done = "DONE",
|
|
106003
|
+
Indeterminate = "INDETERMINATE",
|
|
106004
|
+
New = "NEW",
|
|
106005
|
+
NotSet = "NOT_SET",
|
|
106006
|
+
Undefined = "UNDEFINED"
|
|
106007
|
+
}
|
|
106008
|
+
export type GraphStoreV2CreateJiraWorkItemImpactsCompassComponentPayload = {
|
|
106009
|
+
__typename?: 'GraphStoreV2CreateJiraWorkItemImpactsCompassComponentPayload';
|
|
106010
|
+
errors?: Maybe<Array<MutationError>>;
|
|
106011
|
+
success: Scalars['Boolean']['output'];
|
|
106012
|
+
};
|
|
106013
|
+
export type GraphStoreV2CreateJiraWorkItemImpactsCompassComponentRelationshipSubjectMetadataInput = {
|
|
106014
|
+
affectedServiceAris?: InputMaybe<Scalars['String']['input']>;
|
|
106015
|
+
assigneeAri?: InputMaybe<Scalars['String']['input']>;
|
|
106016
|
+
majorIncident?: InputMaybe<Scalars['Boolean']['input']>;
|
|
106017
|
+
priority?: InputMaybe<GraphStoreV2CreateJiraWorkItemImpactsCompassComponentJiraIncidentPriorityInput>;
|
|
106018
|
+
reporterAri?: InputMaybe<Scalars['String']['input']>;
|
|
106019
|
+
status?: InputMaybe<GraphStoreV2CreateJiraWorkItemImpactsCompassComponentJiraIncidentStatusInput>;
|
|
106020
|
+
};
|
|
105602
106021
|
export type GraphStoreV2CreateJiraWorkItemLinksConfluenceWhiteboardAliasInput = {
|
|
105603
106022
|
from: Scalars['ID']['input'];
|
|
105604
106023
|
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
@@ -106213,6 +106632,18 @@ export type GraphStoreV2DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityPayload =
|
|
|
106213
106632
|
errors?: Maybe<Array<MutationError>>;
|
|
106214
106633
|
success: Scalars['Boolean']['output'];
|
|
106215
106634
|
};
|
|
106635
|
+
export type GraphStoreV2DeleteJiraWorkItemImpactsCompassComponentAliasInput = {
|
|
106636
|
+
from: Scalars['ID']['input'];
|
|
106637
|
+
to: Scalars['ID']['input'];
|
|
106638
|
+
};
|
|
106639
|
+
export type GraphStoreV2DeleteJiraWorkItemImpactsCompassComponentInput = {
|
|
106640
|
+
aliases: Array<GraphStoreV2DeleteJiraWorkItemImpactsCompassComponentAliasInput>;
|
|
106641
|
+
};
|
|
106642
|
+
export type GraphStoreV2DeleteJiraWorkItemImpactsCompassComponentPayload = {
|
|
106643
|
+
__typename?: 'GraphStoreV2DeleteJiraWorkItemImpactsCompassComponentPayload';
|
|
106644
|
+
errors?: Maybe<Array<MutationError>>;
|
|
106645
|
+
success: Scalars['Boolean']['output'];
|
|
106646
|
+
};
|
|
106216
106647
|
export type GraphStoreV2DeleteJiraWorkItemLinksConfluenceWhiteboardAliasInput = {
|
|
106217
106648
|
from: Scalars['ID']['input'];
|
|
106218
106649
|
to: Scalars['ID']['input'];
|
|
@@ -107994,6 +108425,9 @@ export type GraphStoreV2JiraWorkItemHasJiraPrioritySortInput = {
|
|
|
107994
108425
|
export type GraphStoreV2JiraWorkItemHasJiraWorkItemCommentSortInput = {
|
|
107995
108426
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
107996
108427
|
};
|
|
108428
|
+
export type GraphStoreV2JiraWorkItemHasJsmIncidentSeveritySortInput = {
|
|
108429
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
108430
|
+
};
|
|
107997
108431
|
export type GraphStoreV2JiraWorkItemHasLinkedKnowledgeBaseEntitySortInput = {
|
|
107998
108432
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
107999
108433
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -108003,6 +108437,9 @@ export type GraphStoreV2JiraWorkItemHasLinkedKnowledgeBaseEntitySortInput = {
|
|
|
108003
108437
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
108004
108438
|
to_linkSource?: InputMaybe<GraphStoreSortInput>;
|
|
108005
108439
|
};
|
|
108440
|
+
export type GraphStoreV2JiraWorkItemImpactsCompassComponentSortInput = {
|
|
108441
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
108442
|
+
};
|
|
108006
108443
|
export type GraphStoreV2JiraWorkItemLinksAssetsObjectSortInput = {
|
|
108007
108444
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
108008
108445
|
};
|
|
@@ -108325,6 +108762,7 @@ export type GraphStoreV2Mutation = {
|
|
|
108325
108762
|
createJiraVersionLinksExternalFeatureFlag?: Maybe<GraphStoreV2CreateJiraVersionLinksExternalFeatureFlagPayload>;
|
|
108326
108763
|
createJiraWorkItemDismissedKnowledgeBaseEntity?: Maybe<GraphStoreV2CreateJiraWorkItemDismissedKnowledgeBaseEntityPayload>;
|
|
108327
108764
|
createJiraWorkItemHasLinkedKnowledgeBaseEntity?: Maybe<GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityPayload>;
|
|
108765
|
+
createJiraWorkItemImpactsCompassComponent?: Maybe<GraphStoreV2CreateJiraWorkItemImpactsCompassComponentPayload>;
|
|
108328
108766
|
createJiraWorkItemLinksConfluenceWhiteboard?: Maybe<GraphStoreV2CreateJiraWorkItemLinksConfluenceWhiteboardPayload>;
|
|
108329
108767
|
createJiraWorkItemLinksExternalVulnerability?: Maybe<GraphStoreV2CreateJiraWorkItemLinksExternalVulnerabilityPayload>;
|
|
108330
108768
|
createJiraWorkItemLinksSupportEscalationEntity?: Maybe<GraphStoreV2CreateJiraWorkItemLinksSupportEscalationEntityPayload>;
|
|
@@ -108360,6 +108798,7 @@ export type GraphStoreV2Mutation = {
|
|
|
108360
108798
|
deleteJiraVersionLinksExternalFeatureFlag?: Maybe<GraphStoreV2DeleteJiraVersionLinksExternalFeatureFlagPayload>;
|
|
108361
108799
|
deleteJiraWorkItemDismissedKnowledgeBaseEntity?: Maybe<GraphStoreV2DeleteJiraWorkItemDismissedKnowledgeBaseEntityPayload>;
|
|
108362
108800
|
deleteJiraWorkItemHasLinkedKnowledgeBaseEntity?: Maybe<GraphStoreV2DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityPayload>;
|
|
108801
|
+
deleteJiraWorkItemImpactsCompassComponent?: Maybe<GraphStoreV2DeleteJiraWorkItemImpactsCompassComponentPayload>;
|
|
108363
108802
|
deleteJiraWorkItemLinksConfluenceWhiteboard?: Maybe<GraphStoreV2DeleteJiraWorkItemLinksConfluenceWhiteboardPayload>;
|
|
108364
108803
|
deleteJiraWorkItemLinksExternalVulnerability?: Maybe<GraphStoreV2DeleteJiraWorkItemLinksExternalVulnerabilityPayload>;
|
|
108365
108804
|
deleteJiraWorkItemLinksSupportEscalationEntity?: Maybe<GraphStoreV2DeleteJiraWorkItemLinksSupportEscalationEntityPayload>;
|
|
@@ -108446,6 +108885,9 @@ export type GraphStoreV2MutationCreateJiraWorkItemDismissedKnowledgeBaseEntityAr
|
|
|
108446
108885
|
export type GraphStoreV2MutationCreateJiraWorkItemHasLinkedKnowledgeBaseEntityArgs = {
|
|
108447
108886
|
input?: InputMaybe<GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityInput>;
|
|
108448
108887
|
};
|
|
108888
|
+
export type GraphStoreV2MutationCreateJiraWorkItemImpactsCompassComponentArgs = {
|
|
108889
|
+
input?: InputMaybe<GraphStoreV2CreateJiraWorkItemImpactsCompassComponentInput>;
|
|
108890
|
+
};
|
|
108449
108891
|
export type GraphStoreV2MutationCreateJiraWorkItemLinksConfluenceWhiteboardArgs = {
|
|
108450
108892
|
input?: InputMaybe<GraphStoreV2CreateJiraWorkItemLinksConfluenceWhiteboardInput>;
|
|
108451
108893
|
};
|
|
@@ -108551,6 +108993,9 @@ export type GraphStoreV2MutationDeleteJiraWorkItemDismissedKnowledgeBaseEntityAr
|
|
|
108551
108993
|
export type GraphStoreV2MutationDeleteJiraWorkItemHasLinkedKnowledgeBaseEntityArgs = {
|
|
108552
108994
|
input?: InputMaybe<GraphStoreV2DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityInput>;
|
|
108553
108995
|
};
|
|
108996
|
+
export type GraphStoreV2MutationDeleteJiraWorkItemImpactsCompassComponentArgs = {
|
|
108997
|
+
input?: InputMaybe<GraphStoreV2DeleteJiraWorkItemImpactsCompassComponentInput>;
|
|
108998
|
+
};
|
|
108554
108999
|
export type GraphStoreV2MutationDeleteJiraWorkItemLinksConfluenceWhiteboardArgs = {
|
|
108555
109000
|
input?: InputMaybe<GraphStoreV2DeleteJiraWorkItemLinksConfluenceWhiteboardInput>;
|
|
108556
109001
|
};
|
|
@@ -111794,6 +112239,34 @@ export type GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentInverseEdge =
|
|
|
111794
112239
|
};
|
|
111795
112240
|
export type GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
111796
112241
|
export type GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentUnion = JiraIssue;
|
|
112242
|
+
export type GraphStoreV2SimplifiedAtlassianUserRespondsToJiraWorkItemConnection = HasPageInfo & {
|
|
112243
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserRespondsToJiraWorkItemConnection';
|
|
112244
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserRespondsToJiraWorkItemEdge>>>;
|
|
112245
|
+
pageInfo: PageInfo;
|
|
112246
|
+
};
|
|
112247
|
+
export type GraphStoreV2SimplifiedAtlassianUserRespondsToJiraWorkItemEdge = {
|
|
112248
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserRespondsToJiraWorkItemEdge';
|
|
112249
|
+
createdAt: Scalars['DateTime']['output'];
|
|
112250
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
112251
|
+
id: Scalars['ID']['output'];
|
|
112252
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
112253
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserRespondsToJiraWorkItemUnion>;
|
|
112254
|
+
};
|
|
112255
|
+
export type GraphStoreV2SimplifiedAtlassianUserRespondsToJiraWorkItemInverseConnection = HasPageInfo & {
|
|
112256
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserRespondsToJiraWorkItemInverseConnection';
|
|
112257
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserRespondsToJiraWorkItemInverseEdge>>>;
|
|
112258
|
+
pageInfo: PageInfo;
|
|
112259
|
+
};
|
|
112260
|
+
export type GraphStoreV2SimplifiedAtlassianUserRespondsToJiraWorkItemInverseEdge = {
|
|
112261
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserRespondsToJiraWorkItemInverseEdge';
|
|
112262
|
+
createdAt: Scalars['DateTime']['output'];
|
|
112263
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
112264
|
+
id: Scalars['ID']['output'];
|
|
112265
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
112266
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserRespondsToJiraWorkItemInverseUnion>;
|
|
112267
|
+
};
|
|
112268
|
+
export type GraphStoreV2SimplifiedAtlassianUserRespondsToJiraWorkItemInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
112269
|
+
export type GraphStoreV2SimplifiedAtlassianUserRespondsToJiraWorkItemUnion = JiraIssue;
|
|
111797
112270
|
export type GraphStoreV2SimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection = HasPageInfo & {
|
|
111798
112271
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection';
|
|
111799
112272
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserReviewedConfluenceApprovalInverseEdge>>>;
|
|
@@ -120522,6 +120995,34 @@ export type GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentInverseEdge
|
|
|
120522
120995
|
};
|
|
120523
120996
|
export type GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentInverseUnion = JiraIssue;
|
|
120524
120997
|
export type GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
120998
|
+
export type GraphStoreV2SimplifiedJiraWorkItemHasJsmIncidentSeverityConnection = HasPageInfo & {
|
|
120999
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemHasJsmIncidentSeverityConnection';
|
|
121000
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJsmIncidentSeverityEdge>>>;
|
|
121001
|
+
pageInfo: PageInfo;
|
|
121002
|
+
};
|
|
121003
|
+
export type GraphStoreV2SimplifiedJiraWorkItemHasJsmIncidentSeverityEdge = {
|
|
121004
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemHasJsmIncidentSeverityEdge';
|
|
121005
|
+
createdAt: Scalars['DateTime']['output'];
|
|
121006
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
121007
|
+
id: Scalars['ID']['output'];
|
|
121008
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
121009
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJsmIncidentSeverityUnion>;
|
|
121010
|
+
};
|
|
121011
|
+
export type GraphStoreV2SimplifiedJiraWorkItemHasJsmIncidentSeverityInverseConnection = HasPageInfo & {
|
|
121012
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemHasJsmIncidentSeverityInverseConnection';
|
|
121013
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJsmIncidentSeverityInverseEdge>>>;
|
|
121014
|
+
pageInfo: PageInfo;
|
|
121015
|
+
};
|
|
121016
|
+
export type GraphStoreV2SimplifiedJiraWorkItemHasJsmIncidentSeverityInverseEdge = {
|
|
121017
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemHasJsmIncidentSeverityInverseEdge';
|
|
121018
|
+
createdAt: Scalars['DateTime']['output'];
|
|
121019
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
121020
|
+
id: Scalars['ID']['output'];
|
|
121021
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
121022
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJsmIncidentSeverityInverseUnion>;
|
|
121023
|
+
};
|
|
121024
|
+
export type GraphStoreV2SimplifiedJiraWorkItemHasJsmIncidentSeverityInverseUnion = JiraIssue;
|
|
121025
|
+
export type GraphStoreV2SimplifiedJiraWorkItemHasJsmIncidentSeverityUnion = GraphStoreNodeResponse;
|
|
120525
121026
|
export type GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityConnection = HasPageInfo & HasTotal & {
|
|
120526
121027
|
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityConnection';
|
|
120527
121028
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityEdge>>>;
|
|
@@ -120554,6 +121055,34 @@ export type GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityInvers
|
|
|
120554
121055
|
};
|
|
120555
121056
|
export type GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityInverseUnion = JiraIssue | JiraProject;
|
|
120556
121057
|
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;
|
|
121058
|
+
export type GraphStoreV2SimplifiedJiraWorkItemImpactsCompassComponentConnection = HasPageInfo & {
|
|
121059
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemImpactsCompassComponentConnection';
|
|
121060
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemImpactsCompassComponentEdge>>>;
|
|
121061
|
+
pageInfo: PageInfo;
|
|
121062
|
+
};
|
|
121063
|
+
export type GraphStoreV2SimplifiedJiraWorkItemImpactsCompassComponentEdge = {
|
|
121064
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemImpactsCompassComponentEdge';
|
|
121065
|
+
createdAt: Scalars['DateTime']['output'];
|
|
121066
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
121067
|
+
id: Scalars['ID']['output'];
|
|
121068
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
121069
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraWorkItemImpactsCompassComponentUnion>;
|
|
121070
|
+
};
|
|
121071
|
+
export type GraphStoreV2SimplifiedJiraWorkItemImpactsCompassComponentInverseConnection = HasPageInfo & {
|
|
121072
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemImpactsCompassComponentInverseConnection';
|
|
121073
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemImpactsCompassComponentInverseEdge>>>;
|
|
121074
|
+
pageInfo: PageInfo;
|
|
121075
|
+
};
|
|
121076
|
+
export type GraphStoreV2SimplifiedJiraWorkItemImpactsCompassComponentInverseEdge = {
|
|
121077
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemImpactsCompassComponentInverseEdge';
|
|
121078
|
+
createdAt: Scalars['DateTime']['output'];
|
|
121079
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
121080
|
+
id: Scalars['ID']['output'];
|
|
121081
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
121082
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraWorkItemImpactsCompassComponentInverseUnion>;
|
|
121083
|
+
};
|
|
121084
|
+
export type GraphStoreV2SimplifiedJiraWorkItemImpactsCompassComponentInverseUnion = DevOpsOperationsIncidentDetails | JiraIssue;
|
|
121085
|
+
export type GraphStoreV2SimplifiedJiraWorkItemImpactsCompassComponentUnion = CompassComponent | DevOpsOperationsComponentDetails;
|
|
120557
121086
|
export type GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectConnection = HasPageInfo & {
|
|
120558
121087
|
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectConnection';
|
|
120559
121088
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectEdge>>>;
|
|
@@ -121932,6 +122461,16 @@ export type GravityCreateDraftInput = {
|
|
|
121932
122461
|
type: Scalars['String']['input'];
|
|
121933
122462
|
upsertActions?: InputMaybe<Array<GravityUpsertActionInput>>;
|
|
121934
122463
|
};
|
|
122464
|
+
export type GravityCreateSectionInput = {
|
|
122465
|
+
containerId: Scalars['ID']['input'];
|
|
122466
|
+
name: Scalars['String']['input'];
|
|
122467
|
+
};
|
|
122468
|
+
export type GravityCreateSectionPayload = Payload & {
|
|
122469
|
+
__typename?: 'GravityCreateSectionPayload';
|
|
122470
|
+
errors?: Maybe<Array<MutationError>>;
|
|
122471
|
+
section?: Maybe<GravitySection>;
|
|
122472
|
+
success: Scalars['Boolean']['output'];
|
|
122473
|
+
};
|
|
121935
122474
|
export type GravityCreateViewFromInlinedTemplateInput = {
|
|
121936
122475
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
121937
122476
|
projectId: Scalars['ID']['input'];
|
|
@@ -121976,6 +122515,11 @@ export type GravityDeleteReactionPayload = Payload & {
|
|
|
121976
122515
|
errors?: Maybe<Array<MutationError>>;
|
|
121977
122516
|
success: Scalars['Boolean']['output'];
|
|
121978
122517
|
};
|
|
122518
|
+
export type GravityDeleteSectionPayload = Payload & {
|
|
122519
|
+
__typename?: 'GravityDeleteSectionPayload';
|
|
122520
|
+
errors?: Maybe<Array<MutationError>>;
|
|
122521
|
+
success: Scalars['Boolean']['output'];
|
|
122522
|
+
};
|
|
121979
122523
|
export type GravityDeliveryItemMatch = {
|
|
121980
122524
|
__typename?: 'GravityDeliveryItemMatch';
|
|
121981
122525
|
confidence: Scalars['Float']['output'];
|
|
@@ -121992,6 +122536,7 @@ export type GravityDeliverySettings = {
|
|
|
121992
122536
|
__typename?: 'GravityDeliverySettings';
|
|
121993
122537
|
projectId: Scalars['ID']['output'];
|
|
121994
122538
|
tableLayoutConfig: Array<GravityTableLayoutConfig>;
|
|
122539
|
+
tableSort?: Maybe<GravityDeliveryTableSort>;
|
|
121995
122540
|
visibleFields: Array<Scalars['String']['output']>;
|
|
121996
122541
|
};
|
|
121997
122542
|
export type GravityDeliverySettingsResult = GravityDeliverySettingsSuccess | QueryError;
|
|
@@ -121999,6 +122544,15 @@ export type GravityDeliverySettingsSuccess = {
|
|
|
121999
122544
|
__typename?: 'GravityDeliverySettingsSuccess';
|
|
122000
122545
|
settings: GravityDeliverySettings;
|
|
122001
122546
|
};
|
|
122547
|
+
export type GravityDeliveryTableSort = {
|
|
122548
|
+
__typename?: 'GravityDeliveryTableSort';
|
|
122549
|
+
field: Scalars['String']['output'];
|
|
122550
|
+
order: GravitySortOrder;
|
|
122551
|
+
};
|
|
122552
|
+
export type GravityDeliveryTableSortInput = {
|
|
122553
|
+
field: Scalars['String']['input'];
|
|
122554
|
+
order: GravitySortOrder;
|
|
122555
|
+
};
|
|
122002
122556
|
export type GravityDetailedReactionResult = GravityDetailedReactionSuccess | QueryError;
|
|
122003
122557
|
export type GravityDetailedReactionSuccess = {
|
|
122004
122558
|
__typename?: 'GravityDetailedReactionSuccess';
|
|
@@ -122148,34 +122702,6 @@ export type GravityGetReactionsInput = {
|
|
|
122148
122702
|
entity: GravityReactionEntityType;
|
|
122149
122703
|
entityIds: Array<Scalars['ID']['input']>;
|
|
122150
122704
|
};
|
|
122151
|
-
export type GravityImportIdeasInput = {
|
|
122152
|
-
csvContent?: InputMaybe<Scalars['String']['input']>;
|
|
122153
|
-
imageContent?: InputMaybe<Scalars['String']['input']>;
|
|
122154
|
-
imageMimeType?: InputMaybe<Scalars['String']['input']>;
|
|
122155
|
-
pdfContent?: InputMaybe<Scalars['String']['input']>;
|
|
122156
|
-
projectId?: InputMaybe<Scalars['String']['input']>;
|
|
122157
|
-
sourceLabel?: InputMaybe<Scalars['String']['input']>;
|
|
122158
|
-
sourceType: GravityImportSourceType;
|
|
122159
|
-
textContent?: InputMaybe<Scalars['String']['input']>;
|
|
122160
|
-
};
|
|
122161
|
-
export type GravityImportIdeasMetadata = {
|
|
122162
|
-
__typename?: 'GravityImportIdeasMetadata';
|
|
122163
|
-
aiProcessingTimeMs: Scalars['Int']['output'];
|
|
122164
|
-
itemsProcessed: Scalars['Int']['output'];
|
|
122165
|
-
sourceType: GravityImportSourceType;
|
|
122166
|
-
};
|
|
122167
|
-
export type GravityImportIdeasResult = GravityImportIdeasSuccess | QueryError;
|
|
122168
|
-
export type GravityImportIdeasSuccess = {
|
|
122169
|
-
__typename?: 'GravityImportIdeasSuccess';
|
|
122170
|
-
metadata: GravityImportIdeasMetadata;
|
|
122171
|
-
suggestedIdeas: Array<GravitySuggestedIdea>;
|
|
122172
|
-
};
|
|
122173
|
-
export declare enum GravityImportSourceType {
|
|
122174
|
-
Csv = "CSV",
|
|
122175
|
-
Image = "IMAGE",
|
|
122176
|
-
Pdf = "PDF",
|
|
122177
|
-
Text = "TEXT"
|
|
122178
|
-
}
|
|
122179
122705
|
export type GravityMatchDeliveryInput = {
|
|
122180
122706
|
deliveryIssueIdsOrKeys: Array<Scalars['ID']['input']>;
|
|
122181
122707
|
discoveryIssueIdsOrKeys: Array<Scalars['ID']['input']>;
|
|
@@ -122246,6 +122772,11 @@ export type GravityReviseDraftInput = {
|
|
|
122246
122772
|
resolveCommentIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
122247
122773
|
upsertActions?: InputMaybe<Array<GravityUpsertActionInput>>;
|
|
122248
122774
|
};
|
|
122775
|
+
export type GravitySection = {
|
|
122776
|
+
__typename?: 'GravitySection';
|
|
122777
|
+
id: Scalars['ID']['output'];
|
|
122778
|
+
name: Scalars['String']['output'];
|
|
122779
|
+
};
|
|
122249
122780
|
export type GravitySetActionStatusInput = {
|
|
122250
122781
|
actionId: Scalars['String']['input'];
|
|
122251
122782
|
status: GravityActionStatus;
|
|
@@ -122262,12 +122793,6 @@ export type GravityStartAltaSessionInput = {
|
|
|
122262
122793
|
agent: Scalars['String']['input'];
|
|
122263
122794
|
prompt: Scalars['String']['input'];
|
|
122264
122795
|
};
|
|
122265
|
-
export type GravitySuggestedIdea = {
|
|
122266
|
-
__typename?: 'GravitySuggestedIdea';
|
|
122267
|
-
description: Scalars['String']['output'];
|
|
122268
|
-
sourceReference: Scalars['String']['output'];
|
|
122269
|
-
title: Scalars['String']['output'];
|
|
122270
|
-
};
|
|
122271
122796
|
export type GravityTableLayoutConfig = {
|
|
122272
122797
|
__typename?: 'GravityTableLayoutConfig';
|
|
122273
122798
|
field: Scalars['String']['output'];
|
|
@@ -122287,12 +122812,26 @@ export type GravityUpdateDeliverySettingsSuccess = {
|
|
|
122287
122812
|
__typename?: 'GravityUpdateDeliverySettingsSuccess';
|
|
122288
122813
|
settings: GravityDeliverySettings;
|
|
122289
122814
|
};
|
|
122815
|
+
export type GravityUpdateDeliveryTableSortInput = {
|
|
122816
|
+
projectId: Scalars['ID']['input'];
|
|
122817
|
+
tableSort?: InputMaybe<GravityDeliveryTableSortInput>;
|
|
122818
|
+
};
|
|
122290
122819
|
export type GravityUpdateDraftContentInput = {
|
|
122291
122820
|
content: Scalars['String']['input'];
|
|
122292
122821
|
draftId: Scalars['String']['input'];
|
|
122293
122822
|
expectedRevision: Scalars['Int']['input'];
|
|
122294
122823
|
origin?: InputMaybe<GravityDraftOrigin>;
|
|
122295
122824
|
};
|
|
122825
|
+
export type GravityUpdateSectionInput = {
|
|
122826
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
122827
|
+
sectionId: Scalars['ID']['input'];
|
|
122828
|
+
};
|
|
122829
|
+
export type GravityUpdateSectionPayload = Payload & {
|
|
122830
|
+
__typename?: 'GravityUpdateSectionPayload';
|
|
122831
|
+
errors?: Maybe<Array<MutationError>>;
|
|
122832
|
+
section?: Maybe<GravitySection>;
|
|
122833
|
+
success: Scalars['Boolean']['output'];
|
|
122834
|
+
};
|
|
122296
122835
|
export type GravityUpsertActionInput = {
|
|
122297
122836
|
draftId?: InputMaybe<Scalars['String']['input']>;
|
|
122298
122837
|
id?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -157444,7 +157983,7 @@ export type JpdBoardViewConfig = {
|
|
|
157444
157983
|
__typename?: 'JpdBoardViewConfig';
|
|
157445
157984
|
cardSize?: Maybe<JpdViewCardSize>;
|
|
157446
157985
|
colorConfig?: Maybe<JpdViewColorConfigSimple>;
|
|
157447
|
-
columns?: Maybe<
|
|
157986
|
+
columns?: Maybe<JpdViewColumnsConfig>;
|
|
157448
157987
|
connectionsFilters?: Maybe<JpdViewFilters>;
|
|
157449
157988
|
connectionsLayoutType?: Maybe<JpdViewConnectionsLayoutType>;
|
|
157450
157989
|
enabledAutoSave?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -157460,7 +157999,7 @@ export type JpdBoardViewConfig = {
|
|
|
157460
157999
|
export type JpdBoardViewConfigInput = {
|
|
157461
158000
|
cardSize?: InputMaybe<JpdViewCardSize>;
|
|
157462
158001
|
colorConfig?: InputMaybe<JpdViewColorConfigSimpleInput>;
|
|
157463
|
-
columns?: InputMaybe<
|
|
158002
|
+
columns?: InputMaybe<JpdViewColumnsConfigInput>;
|
|
157464
158003
|
connectionsFilters?: InputMaybe<JpdViewFiltersInput>;
|
|
157465
158004
|
connectionsLayoutType?: InputMaybe<JpdViewConnectionsLayoutType>;
|
|
157466
158005
|
enabledAutoSave?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -157927,6 +158466,15 @@ export declare enum JpdViewColorStyle {
|
|
|
157927
158466
|
Background = "BACKGROUND",
|
|
157928
158467
|
Highlight = "HIGHLIGHT"
|
|
157929
158468
|
}
|
|
158469
|
+
export type JpdViewColumnsConfig = {
|
|
158470
|
+
__typename?: 'JpdViewColumnsConfig';
|
|
158471
|
+
group: JpdViewLayoutGroup;
|
|
158472
|
+
hideEmpty?: Maybe<Scalars['Boolean']['output']>;
|
|
158473
|
+
};
|
|
158474
|
+
export type JpdViewColumnsConfigInput = {
|
|
158475
|
+
group: JpdViewLayoutGroupInput;
|
|
158476
|
+
hideEmpty?: InputMaybe<Scalars['Boolean']['input']>;
|
|
158477
|
+
};
|
|
157930
158478
|
export type JpdViewCommentEvent = {
|
|
157931
158479
|
__typename?: 'JpdViewCommentEvent';
|
|
157932
158480
|
actionMadeAt: Scalars['String']['output'];
|
|
@@ -158019,16 +158567,23 @@ export declare enum JpdViewIssueLayoutTypeWithSummary {
|
|
|
158019
158567
|
}
|
|
158020
158568
|
export type JpdViewLayoutConfig = {
|
|
158021
158569
|
__typename?: 'JpdViewLayoutConfig';
|
|
158570
|
+
groups: Array<JpdViewLayoutGroup>;
|
|
158571
|
+
hideEmpty?: Maybe<Scalars['Boolean']['output']>;
|
|
158572
|
+
};
|
|
158573
|
+
export type JpdViewLayoutConfigInput = {
|
|
158574
|
+
groups: Array<JpdViewLayoutGroupInput>;
|
|
158575
|
+
hideEmpty?: InputMaybe<Scalars['Boolean']['input']>;
|
|
158576
|
+
};
|
|
158577
|
+
export type JpdViewLayoutGroup = {
|
|
158578
|
+
__typename?: 'JpdViewLayoutGroup';
|
|
158022
158579
|
connectionsFilters?: Maybe<JpdViewFilters>;
|
|
158023
158580
|
field?: Maybe<Scalars['String']['output']>;
|
|
158024
|
-
hideEmpty?: Maybe<Scalars['Boolean']['output']>;
|
|
158025
158581
|
showMatchingConnections?: Maybe<Scalars['Boolean']['output']>;
|
|
158026
158582
|
valuesAndOrder?: Maybe<Array<Scalars['String']['output']>>;
|
|
158027
158583
|
};
|
|
158028
|
-
export type
|
|
158584
|
+
export type JpdViewLayoutGroupInput = {
|
|
158029
158585
|
connectionsFilters?: InputMaybe<JpdViewFiltersInput>;
|
|
158030
158586
|
field: Scalars['String']['input'];
|
|
158031
|
-
hideEmpty?: InputMaybe<Scalars['Boolean']['input']>;
|
|
158032
158587
|
showMatchingConnections?: InputMaybe<Scalars['Boolean']['input']>;
|
|
158033
158588
|
valuesAndOrder?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
158034
158589
|
};
|
|
@@ -161694,6 +162249,20 @@ export type KitsuneCreateSnippetPayload = Payload & {
|
|
|
161694
162249
|
snippet?: Maybe<KitsuneSnippet>;
|
|
161695
162250
|
success: Scalars['Boolean']['output'];
|
|
161696
162251
|
};
|
|
162252
|
+
export type KitsuneCreateSnippetsInput = {
|
|
162253
|
+
insightAri: Scalars['ID']['input'];
|
|
162254
|
+
snippets: Array<KitsuneCreateSnippetsItemInput>;
|
|
162255
|
+
};
|
|
162256
|
+
export type KitsuneCreateSnippetsItemInput = {
|
|
162257
|
+
content: Array<Scalars['String']['input']>;
|
|
162258
|
+
feedbackAri: Scalars['ID']['input'];
|
|
162259
|
+
};
|
|
162260
|
+
export type KitsuneCreateSnippetsPayload = Payload & {
|
|
162261
|
+
__typename?: 'KitsuneCreateSnippetsPayload';
|
|
162262
|
+
errors?: Maybe<Array<MutationError>>;
|
|
162263
|
+
job?: Maybe<KitsuneJob>;
|
|
162264
|
+
success: Scalars['Boolean']['output'];
|
|
162265
|
+
};
|
|
161697
162266
|
export type KitsuneCreateSpaceInput = {
|
|
161698
162267
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
161699
162268
|
name: Scalars['String']['input'];
|
|
@@ -162113,6 +162682,7 @@ export declare enum KitsuneJobStatus {
|
|
|
162113
162682
|
}
|
|
162114
162683
|
export declare enum KitsuneJobType {
|
|
162115
162684
|
BackfillAutoTagging = "BACKFILL_AUTO_TAGGING",
|
|
162685
|
+
CreateSnippets = "CREATE_SNIPPETS",
|
|
162116
162686
|
DeleteFeedback = "DELETE_FEEDBACK",
|
|
162117
162687
|
DeleteSpace = "DELETE_SPACE",
|
|
162118
162688
|
ExportFeedback = "EXPORT_FEEDBACK",
|
|
@@ -162549,6 +163119,7 @@ export type KitsuneSpace = Node & {
|
|
|
162549
163119
|
__typename?: 'KitsuneSpace';
|
|
162550
163120
|
accessLevel: KitsuneSpaceAccessLevel;
|
|
162551
163121
|
accessPrincipals: KitsuneSpaceAccessPrincipalConnection;
|
|
163122
|
+
autopilotEnabled: Scalars['Boolean']['output'];
|
|
162552
163123
|
description?: Maybe<Scalars['String']['output']>;
|
|
162553
163124
|
feedbacks: KitsuneFeedbackConnection;
|
|
162554
163125
|
fields: KitsuneFieldConnection;
|
|
@@ -162763,6 +163334,7 @@ export type KitsuneUpdateSnippetPayload = Payload & {
|
|
|
162763
163334
|
};
|
|
162764
163335
|
export type KitsuneUpdateSpaceInput = {
|
|
162765
163336
|
accessLevel?: InputMaybe<KitsuneSpaceAccessLevel>;
|
|
163337
|
+
autopilotEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
162766
163338
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
162767
163339
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
162768
163340
|
};
|
|
@@ -165733,8 +166305,15 @@ export type MarkCommentsAsReadPayload = {
|
|
|
165733
166305
|
};
|
|
165734
166306
|
export type MarketplaceAgentCapabilities = {
|
|
165735
166307
|
__typename?: 'MarketplaceAgentCapabilities';
|
|
166308
|
+
examplePrompts?: Maybe<Array<Scalars['String']['output']>>;
|
|
166309
|
+
skills?: Maybe<Array<MarketplaceAgentSkill>>;
|
|
165736
166310
|
tools?: Maybe<Array<MarketplaceAgentTool>>;
|
|
165737
166311
|
};
|
|
166312
|
+
export type MarketplaceAgentSkill = {
|
|
166313
|
+
__typename?: 'MarketplaceAgentSkill';
|
|
166314
|
+
description: Scalars['String']['output'];
|
|
166315
|
+
name: Scalars['String']['output'];
|
|
166316
|
+
};
|
|
165738
166317
|
export type MarketplaceAgentTool = {
|
|
165739
166318
|
__typename?: 'MarketplaceAgentTool';
|
|
165740
166319
|
accessType: MarketplaceAgentToolAccessType;
|
|
@@ -165751,6 +166330,7 @@ export type MarketplaceApp = {
|
|
|
165751
166330
|
appKey: Scalars['String']['output'];
|
|
165752
166331
|
categories: Array<MarketplaceAppCategory>;
|
|
165753
166332
|
createdAt: Scalars['DateTime']['output'];
|
|
166333
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
165754
166334
|
distribution?: Maybe<MarketplaceAppDistribution>;
|
|
165755
166335
|
entityStatus: MarketplaceEntityStatus;
|
|
165756
166336
|
forumsUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -181779,6 +182359,7 @@ export type Mutation = {
|
|
|
181779
182359
|
admin_createAuditLogBackgroundQuery?: Maybe<AdminAuditLogBackgroundQueryPayload>;
|
|
181780
182360
|
admin_createAuditLogBackgroundQueryV2?: Maybe<AdminAuditLogBackgroundQueryPayload>;
|
|
181781
182361
|
admin_createInvitePolicy?: Maybe<AdminCreateInvitePolicyResponsePayload>;
|
|
182362
|
+
admin_createOAuthClient?: Maybe<AdminOAuthClientSecretPayload>;
|
|
181782
182363
|
admin_createOutboundAuthService?: Maybe<AdminCreateOutboundAuthServicePayload>;
|
|
181783
182364
|
admin_deactivateUser?: Maybe<AdminDeactivateResponsePayload>;
|
|
181784
182365
|
admin_deleteAccessUrl?: Maybe<AdminAccessUrlDeletionResponsePayload>;
|
|
@@ -181790,7 +182371,9 @@ export type Mutation = {
|
|
|
181790
182371
|
admin_registerNewDataSourceId?: Maybe<AdminRegisterNewDataSourceIdPayload>;
|
|
181791
182372
|
admin_releaseImpersonationUser?: Maybe<AdminReleaseImpersonationResponsePayload>;
|
|
181792
182373
|
admin_removeUser?: Maybe<AdminRemoveUserResponsePayload>;
|
|
182374
|
+
admin_revokeOAuthClient?: Maybe<AdminRevokeOAuthClientPayload>;
|
|
181793
182375
|
admin_revokeRole?: Maybe<AdminRevokeRoleResponsePayload>;
|
|
182376
|
+
admin_rotateOAuthClientSecret?: Maybe<AdminOAuthClientSecretPayload>;
|
|
181794
182377
|
admin_scimRuleCreate?: Maybe<AdminScimRuleMutationPayload>;
|
|
181795
182378
|
admin_scimRuleDelete?: Maybe<AdminScimRuleMutationPayload>;
|
|
181796
182379
|
admin_scimRuleUpdate?: Maybe<AdminScimRuleMutationPayload>;
|
|
@@ -182625,6 +183208,8 @@ export type Mutation = {
|
|
|
182625
183208
|
goals_updateAppPermissionPolicies?: Maybe<TownsquareUpdateGoalsAppPermissionPoliciesPayload>;
|
|
182626
183209
|
goals_updateSlackSubscription?: Maybe<TownsquareGoalsUpdateSlackSubscriptionPayload>;
|
|
182627
183210
|
grantContentAccess?: Maybe<GrantContentAccessPayload>;
|
|
183211
|
+
graphInference_ensureWeeklyReviewPack?: Maybe<GraphInferenceReviewPackSummary>;
|
|
183212
|
+
graphInference_generateReviewPack?: Maybe<GraphInferenceReviewPackSummary>;
|
|
182628
183213
|
graphInference_inferenceAppAdd?: Maybe<GraphInferenceInferenceAppMutationPayload>;
|
|
182629
183214
|
graphInference_inferenceAppAddV2?: Maybe<GraphInferenceInferenceAppMutationPayloadV2>;
|
|
182630
183215
|
graphInference_inferenceAppAddV3?: Maybe<GraphInferenceInferenceAppMutationPayloadV3>;
|
|
@@ -182638,6 +183223,7 @@ export type Mutation = {
|
|
|
182638
183223
|
graphInference_inferenceEvalStart?: Maybe<GraphInferenceInferenceEvalStartResponse>;
|
|
182639
183224
|
graphInference_inferencePreview?: Maybe<GraphInferenceInferencePreviewResponse>;
|
|
182640
183225
|
graphInference_inlineEvalStart?: Maybe<GraphInferenceInlineEvalStartResponse>;
|
|
183226
|
+
graphInference_submitReview?: Maybe<GraphInferenceReviewPackSummary>;
|
|
182641
183227
|
graphIntegration_actionAdminManagementUpdateActionConfiguration?: Maybe<GraphIntegrationActionAdminManagementUpdateActionConfigurationPayload>;
|
|
182642
183228
|
graphIntegration_addTwgCapabilityContainer?: Maybe<GraphIntegrationAddTwgCapabilityContainerPayload>;
|
|
182643
183229
|
graphIntegration_createDataConnectorConnection?: Maybe<GraphIntegrationCreateConnectionPayload>;
|
|
@@ -182692,6 +183278,7 @@ export type Mutation = {
|
|
|
182692
183278
|
graphStoreV2_createJiraVersionLinksExternalFeatureFlag?: Maybe<GraphStoreV2CreateJiraVersionLinksExternalFeatureFlagPayload>;
|
|
182693
183279
|
graphStoreV2_createJiraWorkItemDismissedKnowledgeBaseEntity?: Maybe<GraphStoreV2CreateJiraWorkItemDismissedKnowledgeBaseEntityPayload>;
|
|
182694
183280
|
graphStoreV2_createJiraWorkItemHasLinkedKnowledgeBaseEntity?: Maybe<GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityPayload>;
|
|
183281
|
+
graphStoreV2_createJiraWorkItemImpactsCompassComponent?: Maybe<GraphStoreV2CreateJiraWorkItemImpactsCompassComponentPayload>;
|
|
182695
183282
|
graphStoreV2_createJiraWorkItemLinksConfluenceWhiteboard?: Maybe<GraphStoreV2CreateJiraWorkItemLinksConfluenceWhiteboardPayload>;
|
|
182696
183283
|
graphStoreV2_createJiraWorkItemLinksExternalVulnerability?: Maybe<GraphStoreV2CreateJiraWorkItemLinksExternalVulnerabilityPayload>;
|
|
182697
183284
|
graphStoreV2_createJiraWorkItemLinksSupportEscalationEntity?: Maybe<GraphStoreV2CreateJiraWorkItemLinksSupportEscalationEntityPayload>;
|
|
@@ -182727,6 +183314,7 @@ export type Mutation = {
|
|
|
182727
183314
|
graphStoreV2_deleteJiraVersionLinksExternalFeatureFlag?: Maybe<GraphStoreV2DeleteJiraVersionLinksExternalFeatureFlagPayload>;
|
|
182728
183315
|
graphStoreV2_deleteJiraWorkItemDismissedKnowledgeBaseEntity?: Maybe<GraphStoreV2DeleteJiraWorkItemDismissedKnowledgeBaseEntityPayload>;
|
|
182729
183316
|
graphStoreV2_deleteJiraWorkItemHasLinkedKnowledgeBaseEntity?: Maybe<GraphStoreV2DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityPayload>;
|
|
183317
|
+
graphStoreV2_deleteJiraWorkItemImpactsCompassComponent?: Maybe<GraphStoreV2DeleteJiraWorkItemImpactsCompassComponentPayload>;
|
|
182730
183318
|
graphStoreV2_deleteJiraWorkItemLinksConfluenceWhiteboard?: Maybe<GraphStoreV2DeleteJiraWorkItemLinksConfluenceWhiteboardPayload>;
|
|
182731
183319
|
graphStoreV2_deleteJiraWorkItemLinksExternalVulnerability?: Maybe<GraphStoreV2DeleteJiraWorkItemLinksExternalVulnerabilityPayload>;
|
|
182732
183320
|
graphStoreV2_deleteJiraWorkItemLinksSupportEscalationEntity?: Maybe<GraphStoreV2DeleteJiraWorkItemLinksSupportEscalationEntityPayload>;
|
|
@@ -182823,11 +183411,13 @@ export type Mutation = {
|
|
|
182823
183411
|
gravity_applyDraft?: Maybe<GravityDraftPayload>;
|
|
182824
183412
|
gravity_cloneView?: Maybe<JpdView>;
|
|
182825
183413
|
gravity_createDraft?: Maybe<GravityDraftPayload>;
|
|
183414
|
+
gravity_createSection?: Maybe<GravityCreateSectionPayload>;
|
|
182826
183415
|
gravity_createView?: Maybe<JpdView>;
|
|
182827
183416
|
gravity_createViewFromInlinedTemplate?: Maybe<GravityCreateViewFromTemplatePayload>;
|
|
182828
183417
|
gravity_createViewFromTemplate: GravityCreateViewFromTemplatePayload;
|
|
182829
183418
|
gravity_createViewFromUserPrompt?: Maybe<GravityCreateViewFromUserPromptPayload>;
|
|
182830
183419
|
gravity_deleteReaction?: Maybe<GravityDeleteReactionPayload>;
|
|
183420
|
+
gravity_deleteSection?: Maybe<GravityDeleteSectionPayload>;
|
|
182831
183421
|
gravity_deleteView?: Maybe<JpdViewDeleted>;
|
|
182832
183422
|
gravity_discardDraft?: Maybe<GravityDraftPayload>;
|
|
182833
183423
|
gravity_generateViewTemplateFromUserPrompt?: Maybe<GravityGenerateViewTemplateFromUserPromptPayload>;
|
|
@@ -182837,7 +183427,9 @@ export type Mutation = {
|
|
|
182837
183427
|
gravity_setViewArrangement?: Maybe<GravityViewArrangementPayload>;
|
|
182838
183428
|
gravity_startAltaSession?: Maybe<GravityAltaSessionPayload>;
|
|
182839
183429
|
gravity_updateDeliverySettings?: Maybe<GravityUpdateDeliverySettingsPayload>;
|
|
183430
|
+
gravity_updateDeliveryTableSort?: Maybe<GravityUpdateDeliverySettingsPayload>;
|
|
182840
183431
|
gravity_updateDraftContent?: Maybe<GravityDraftPayload>;
|
|
183432
|
+
gravity_updateSection?: Maybe<GravityUpdateSectionPayload>;
|
|
182841
183433
|
gravity_updateView?: Maybe<JpdView>;
|
|
182842
183434
|
gravity_upsertAction?: Maybe<GravityActionPayload>;
|
|
182843
183435
|
growthUnifiedProfile_createEntitlementProfile?: Maybe<GrowthUnifiedProfileCreateEntitlementProfileResponse>;
|
|
@@ -183088,6 +183680,7 @@ export type Mutation = {
|
|
|
183088
183680
|
kitsune_createSectionV2?: Maybe<KitsuneSectionPayload>;
|
|
183089
183681
|
kitsune_createSnippet?: Maybe<KitsuneSnippet>;
|
|
183090
183682
|
kitsune_createSnippetV2?: Maybe<KitsuneCreateSnippetPayload>;
|
|
183683
|
+
kitsune_createSnippets?: Maybe<KitsuneCreateSnippetsPayload>;
|
|
183091
183684
|
kitsune_createSpace?: Maybe<KitsuneSpace>;
|
|
183092
183685
|
kitsune_createSpaceV2?: Maybe<KitsuneCreateSpacePayload>;
|
|
183093
183686
|
kitsune_createView?: Maybe<KitsuneView>;
|
|
@@ -183320,6 +183913,7 @@ export type Mutation = {
|
|
|
183320
183913
|
projects_edit?: Maybe<TownsquareProjectsEditPayload>;
|
|
183321
183914
|
projects_editComment?: Maybe<TownsquareProjectsEditCommentPayload>;
|
|
183322
183915
|
projects_editDecision?: Maybe<TownsquareProjectsEditDecisionPayload>;
|
|
183916
|
+
projects_editDraftUpdate?: Maybe<TownsquareProjectsEditDraftUpdatePayload>;
|
|
183323
183917
|
projects_editDropdownCustomField?: Maybe<TownsquareProjectsEditDropdownCustomFieldPayload>;
|
|
183324
183918
|
projects_editLearning?: Maybe<TownsquareProjectsEditLearningPayload>;
|
|
183325
183919
|
projects_editLink?: Maybe<TownsquareProjectsEditLinkPayload>;
|
|
@@ -183738,6 +184332,9 @@ export type MutationAdmin_CreateInvitePolicyArgs = {
|
|
|
183738
184332
|
createInvitePolicyInput?: InputMaybe<AdminCreateInvitePolicyInput>;
|
|
183739
184333
|
orgId: Scalars['ID']['input'];
|
|
183740
184334
|
};
|
|
184335
|
+
export type MutationAdmin_CreateOAuthClientArgs = {
|
|
184336
|
+
input: AdminCreateOAuthClientInput;
|
|
184337
|
+
};
|
|
183741
184338
|
export type MutationAdmin_CreateOutboundAuthServiceArgs = {
|
|
183742
184339
|
connectorSyncType?: InputMaybe<Scalars['String']['input']>;
|
|
183743
184340
|
datasourceId: Scalars['ID']['input'];
|
|
@@ -183782,11 +184379,17 @@ export type MutationAdmin_RemoveUserArgs = {
|
|
|
183782
184379
|
directoryId: Scalars['String']['input'];
|
|
183783
184380
|
orgId: Scalars['String']['input'];
|
|
183784
184381
|
};
|
|
184382
|
+
export type MutationAdmin_RevokeOAuthClientArgs = {
|
|
184383
|
+
input: AdminRevokeOAuthClientInput;
|
|
184384
|
+
};
|
|
183785
184385
|
export type MutationAdmin_RevokeRoleArgs = {
|
|
183786
184386
|
directoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
183787
184387
|
orgId: Scalars['ID']['input'];
|
|
183788
184388
|
revokeRoleInput?: InputMaybe<AdminRevokeRoleInput>;
|
|
183789
184389
|
};
|
|
184390
|
+
export type MutationAdmin_RotateOAuthClientSecretArgs = {
|
|
184391
|
+
input: AdminRotateOAuthClientSecretInput;
|
|
184392
|
+
};
|
|
183790
184393
|
export type MutationAdmin_ScimRuleCreateArgs = {
|
|
183791
184394
|
input: AdminScimRuleCreateInput;
|
|
183792
184395
|
orgId: Scalars['ID']['input'];
|
|
@@ -186836,6 +187439,9 @@ export type MutationGoals_UpdateSlackSubscriptionArgs = {
|
|
|
186836
187439
|
export type MutationGrantContentAccessArgs = {
|
|
186837
187440
|
grantContentAccessInput: GrantContentAccessInput;
|
|
186838
187441
|
};
|
|
187442
|
+
export type MutationGraphInference_GenerateReviewPackArgs = {
|
|
187443
|
+
input: GraphInferenceGenerateReviewPackInput;
|
|
187444
|
+
};
|
|
186839
187445
|
export type MutationGraphInference_InferenceAppAddArgs = {
|
|
186840
187446
|
input: GraphInferenceInferenceAppAddInput;
|
|
186841
187447
|
};
|
|
@@ -186875,6 +187481,9 @@ export type MutationGraphInference_InferencePreviewArgs = {
|
|
|
186875
187481
|
export type MutationGraphInference_InlineEvalStartArgs = {
|
|
186876
187482
|
input: GraphInferenceInlineEvalStartInput;
|
|
186877
187483
|
};
|
|
187484
|
+
export type MutationGraphInference_SubmitReviewArgs = {
|
|
187485
|
+
input: GraphInferenceSubmitReviewInput;
|
|
187486
|
+
};
|
|
186878
187487
|
export type MutationGraphIntegration_ActionAdminManagementUpdateActionConfigurationArgs = {
|
|
186879
187488
|
input: GraphIntegrationActionAdminManagementUpdateActionConfigurationInput;
|
|
186880
187489
|
};
|
|
@@ -187032,6 +187641,9 @@ export type MutationGraphStoreV2_CreateJiraWorkItemDismissedKnowledgeBaseEntityA
|
|
|
187032
187641
|
export type MutationGraphStoreV2_CreateJiraWorkItemHasLinkedKnowledgeBaseEntityArgs = {
|
|
187033
187642
|
input?: InputMaybe<GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityInput>;
|
|
187034
187643
|
};
|
|
187644
|
+
export type MutationGraphStoreV2_CreateJiraWorkItemImpactsCompassComponentArgs = {
|
|
187645
|
+
input?: InputMaybe<GraphStoreV2CreateJiraWorkItemImpactsCompassComponentInput>;
|
|
187646
|
+
};
|
|
187035
187647
|
export type MutationGraphStoreV2_CreateJiraWorkItemLinksConfluenceWhiteboardArgs = {
|
|
187036
187648
|
input?: InputMaybe<GraphStoreV2CreateJiraWorkItemLinksConfluenceWhiteboardInput>;
|
|
187037
187649
|
};
|
|
@@ -187137,6 +187749,9 @@ export type MutationGraphStoreV2_DeleteJiraWorkItemDismissedKnowledgeBaseEntityA
|
|
|
187137
187749
|
export type MutationGraphStoreV2_DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityArgs = {
|
|
187138
187750
|
input?: InputMaybe<GraphStoreV2DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityInput>;
|
|
187139
187751
|
};
|
|
187752
|
+
export type MutationGraphStoreV2_DeleteJiraWorkItemImpactsCompassComponentArgs = {
|
|
187753
|
+
input?: InputMaybe<GraphStoreV2DeleteJiraWorkItemImpactsCompassComponentInput>;
|
|
187754
|
+
};
|
|
187140
187755
|
export type MutationGraphStoreV2_DeleteJiraWorkItemLinksConfluenceWhiteboardArgs = {
|
|
187141
187756
|
input?: InputMaybe<GraphStoreV2DeleteJiraWorkItemLinksConfluenceWhiteboardInput>;
|
|
187142
187757
|
};
|
|
@@ -187431,6 +188046,10 @@ export type MutationGravity_CreateDraftArgs = {
|
|
|
187431
188046
|
cloudId: Scalars['ID']['input'];
|
|
187432
188047
|
input: GravityCreateDraftInput;
|
|
187433
188048
|
};
|
|
188049
|
+
export type MutationGravity_CreateSectionArgs = {
|
|
188050
|
+
cloudId: Scalars['ID']['input'];
|
|
188051
|
+
input: GravityCreateSectionInput;
|
|
188052
|
+
};
|
|
187434
188053
|
export type MutationGravity_CreateViewArgs = {
|
|
187435
188054
|
cloudId: Scalars['ID']['input'];
|
|
187436
188055
|
input: JpdCreateViewInput;
|
|
@@ -187451,6 +188070,10 @@ export type MutationGravity_DeleteReactionArgs = {
|
|
|
187451
188070
|
cloudId: Scalars['ID']['input'];
|
|
187452
188071
|
input: GravityDeleteReactionInput;
|
|
187453
188072
|
};
|
|
188073
|
+
export type MutationGravity_DeleteSectionArgs = {
|
|
188074
|
+
cloudId: Scalars['ID']['input'];
|
|
188075
|
+
sectionId: Scalars['ID']['input'];
|
|
188076
|
+
};
|
|
187454
188077
|
export type MutationGravity_DeleteViewArgs = {
|
|
187455
188078
|
cloudId: Scalars['ID']['input'];
|
|
187456
188079
|
viewId: Scalars['ID']['input'];
|
|
@@ -187487,10 +188110,18 @@ export type MutationGravity_UpdateDeliverySettingsArgs = {
|
|
|
187487
188110
|
cloudId: Scalars['ID']['input'];
|
|
187488
188111
|
input: GravityUpdateDeliverySettingsInput;
|
|
187489
188112
|
};
|
|
188113
|
+
export type MutationGravity_UpdateDeliveryTableSortArgs = {
|
|
188114
|
+
cloudId: Scalars['ID']['input'];
|
|
188115
|
+
input: GravityUpdateDeliveryTableSortInput;
|
|
188116
|
+
};
|
|
187490
188117
|
export type MutationGravity_UpdateDraftContentArgs = {
|
|
187491
188118
|
cloudId: Scalars['ID']['input'];
|
|
187492
188119
|
input: GravityUpdateDraftContentInput;
|
|
187493
188120
|
};
|
|
188121
|
+
export type MutationGravity_UpdateSectionArgs = {
|
|
188122
|
+
cloudId: Scalars['ID']['input'];
|
|
188123
|
+
input: GravityUpdateSectionInput;
|
|
188124
|
+
};
|
|
187494
188125
|
export type MutationGravity_UpdateViewArgs = {
|
|
187495
188126
|
cloudId: Scalars['ID']['input'];
|
|
187496
188127
|
input: JpdUpdateViewInput;
|
|
@@ -188350,6 +188981,9 @@ export type MutationKitsune_CreateSnippetArgs = {
|
|
|
188350
188981
|
export type MutationKitsune_CreateSnippetV2Args = {
|
|
188351
188982
|
input: KitsuneCreateSnippetInput;
|
|
188352
188983
|
};
|
|
188984
|
+
export type MutationKitsune_CreateSnippetsArgs = {
|
|
188985
|
+
input: KitsuneCreateSnippetsInput;
|
|
188986
|
+
};
|
|
188353
188987
|
export type MutationKitsune_CreateSpaceArgs = {
|
|
188354
188988
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
188355
188989
|
name: Scalars['String']['input'];
|
|
@@ -189088,6 +189722,9 @@ export type MutationProjects_EditCommentArgs = {
|
|
|
189088
189722
|
export type MutationProjects_EditDecisionArgs = {
|
|
189089
189723
|
input: TownsquareProjectsEditDecisionInput;
|
|
189090
189724
|
};
|
|
189725
|
+
export type MutationProjects_EditDraftUpdateArgs = {
|
|
189726
|
+
input: TownsquareProjectsEditDraftUpdateInput;
|
|
189727
|
+
};
|
|
189091
189728
|
export type MutationProjects_EditDropdownCustomFieldArgs = {
|
|
189092
189729
|
input: TownsquareProjectsEditDropdownCustomFieldInput;
|
|
189093
189730
|
};
|
|
@@ -194094,6 +194731,8 @@ export type Query = {
|
|
|
194094
194731
|
admin_identityProviderDirectorySamlConfiguration?: Maybe<AdminSamlConfiguration>;
|
|
194095
194732
|
admin_invitePolicies?: Maybe<AdminInvitePolicyConnection>;
|
|
194096
194733
|
admin_licenseUsage?: Maybe<AdminLicenseDataConnection>;
|
|
194734
|
+
admin_oauthClients?: Maybe<AdminOAuthClientConnection>;
|
|
194735
|
+
admin_oauthScopes?: Maybe<AdminOAuthScopeConnection>;
|
|
194097
194736
|
admin_org?: Maybe<AdminOrganization>;
|
|
194098
194737
|
admin_orgDetails?: Maybe<AdminOrgDetails>;
|
|
194099
194738
|
admin_orgPolicies?: Maybe<AdminOrgPolicyConnection>;
|
|
@@ -195056,6 +195695,8 @@ export type Query = {
|
|
|
195056
195695
|
graphInference_inlineEvalContract?: Maybe<GraphInferenceInlineEvalContractResponse>;
|
|
195057
195696
|
graphInference_inlineEvalRun?: Maybe<GraphInferenceInlineEvalRunResponse>;
|
|
195058
195697
|
graphInference_insights?: Maybe<GraphInferenceInsightsResponse>;
|
|
195698
|
+
graphInference_reviewPack?: Maybe<GraphInferenceReviewPackDetail>;
|
|
195699
|
+
graphInference_reviewPacks?: Maybe<Array<GraphInferenceReviewPackSummary>>;
|
|
195059
195700
|
graphIntegration_availableTwgCapabilityContainers?: Maybe<Array<Maybe<GraphIntegrationTwgCapabilityContainerMeta>>>;
|
|
195060
195701
|
graphIntegration_cloneCandidateSkill?: Maybe<GraphIntegrationSkill>;
|
|
195061
195702
|
graphIntegration_componentDirectoryDimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
|
|
@@ -195315,6 +195956,8 @@ export type Query = {
|
|
|
195315
195956
|
graphStoreV2_atlassianUserReportedJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReportedJiraWorkItemInverseConnection>;
|
|
195316
195957
|
graphStoreV2_atlassianUserReportedJsmIncident?: Maybe<GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentConnection>;
|
|
195317
195958
|
graphStoreV2_atlassianUserReportedJsmIncidentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentInverseConnection>;
|
|
195959
|
+
graphStoreV2_atlassianUserRespondsToJiraWorkItem?: Maybe<GraphStoreV2SimplifiedAtlassianUserRespondsToJiraWorkItemConnection>;
|
|
195960
|
+
graphStoreV2_atlassianUserRespondsToJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserRespondsToJiraWorkItemInverseConnection>;
|
|
195318
195961
|
graphStoreV2_atlassianUserReviewedConfluenceApprovalInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection>;
|
|
195319
195962
|
graphStoreV2_atlassianUserSnapshottedConfluencePage?: Maybe<GraphStoreV2SimplifiedAtlassianUserSnapshottedConfluencePageConnection>;
|
|
195320
195963
|
graphStoreV2_atlassianUserSnapshottedConfluencePageInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserSnapshottedConfluencePageInverseConnection>;
|
|
@@ -195925,8 +196568,12 @@ export type Query = {
|
|
|
195925
196568
|
graphStoreV2_jiraWorkItemHasJiraPriorityInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJiraPriorityInverseConnection>;
|
|
195926
196569
|
graphStoreV2_jiraWorkItemHasJiraWorkItemComment?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentConnection>;
|
|
195927
196570
|
graphStoreV2_jiraWorkItemHasJiraWorkItemCommentInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentInverseConnection>;
|
|
196571
|
+
graphStoreV2_jiraWorkItemHasJsmIncidentSeverity?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJsmIncidentSeverityConnection>;
|
|
196572
|
+
graphStoreV2_jiraWorkItemHasJsmIncidentSeverityInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJsmIncidentSeverityInverseConnection>;
|
|
195928
196573
|
graphStoreV2_jiraWorkItemHasLinkedKnowledgeBaseEntity?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityConnection>;
|
|
195929
196574
|
graphStoreV2_jiraWorkItemHasLinkedKnowledgeBaseEntityInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityInverseConnection>;
|
|
196575
|
+
graphStoreV2_jiraWorkItemImpactsCompassComponent?: Maybe<GraphStoreV2SimplifiedJiraWorkItemImpactsCompassComponentConnection>;
|
|
196576
|
+
graphStoreV2_jiraWorkItemImpactsCompassComponentInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemImpactsCompassComponentInverseConnection>;
|
|
195930
196577
|
graphStoreV2_jiraWorkItemLinksAssetsObject?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectConnection>;
|
|
195931
196578
|
graphStoreV2_jiraWorkItemLinksAssetsObjectInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectInverseConnection>;
|
|
195932
196579
|
graphStoreV2_jiraWorkItemLinksConfluenceWhiteboard?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksConfluenceWhiteboardConnection>;
|
|
@@ -196152,6 +196799,8 @@ export type Query = {
|
|
|
196152
196799
|
graphStore_atlassianUserOwnsExternalTestStatusInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInverseConnection>;
|
|
196153
196800
|
graphStore_atlassianUserOwnsInferredProject?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectConnection>;
|
|
196154
196801
|
graphStore_atlassianUserOwnsInferredProjectInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseConnection>;
|
|
196802
|
+
graphStore_atlassianUserRespondsToJiraWorkItem?: Maybe<GraphStoreSimplifiedAtlassianUserRespondsToJiraWorkItemConnection>;
|
|
196803
|
+
graphStore_atlassianUserRespondsToJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedAtlassianUserRespondsToJiraWorkItemInverseConnection>;
|
|
196155
196804
|
graphStore_atlassianUserReviewedConfluenceApprovalInverse?: Maybe<GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection>;
|
|
196156
196805
|
graphStore_atlassianUserTriggeredAtlassianAgentSessionInverse?: Maybe<GraphStoreSimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseConnection>;
|
|
196157
196806
|
graphStore_atlassianUserUpdatedExternalCampaign?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCampaignConnection>;
|
|
@@ -196581,6 +197230,8 @@ export type Query = {
|
|
|
196581
197230
|
graphStore_jiraSpaceHasLinkedKnowledgeBaseEntityInverse?: Maybe<GraphStoreSimplifiedJiraSpaceHasLinkedKnowledgeBaseEntityInverseConnection>;
|
|
196582
197231
|
graphStore_jiraWorkItemCommentHasChildComment?: Maybe<GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentConnection>;
|
|
196583
197232
|
graphStore_jiraWorkItemCommentHasChildCommentInverse?: Maybe<GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentInverseConnection>;
|
|
197233
|
+
graphStore_jiraWorkItemHasJsmIncidentSeverity?: Maybe<GraphStoreSimplifiedJiraWorkItemHasJsmIncidentSeverityConnection>;
|
|
197234
|
+
graphStore_jiraWorkItemHasJsmIncidentSeverityInverse?: Maybe<GraphStoreSimplifiedJiraWorkItemHasJsmIncidentSeverityInverseConnection>;
|
|
196584
197235
|
graphStore_jiraWorkItemLinksAssetObject?: Maybe<GraphStoreSimplifiedJiraWorkItemLinksAssetObjectConnection>;
|
|
196585
197236
|
graphStore_jiraWorkItemLinksAssetObjectInverse?: Maybe<GraphStoreSimplifiedJiraWorkItemLinksAssetObjectInverseConnection>;
|
|
196586
197237
|
graphStore_jsmProjectAssociatedService?: Maybe<GraphStoreSimplifiedJsmProjectAssociatedServiceConnection>;
|
|
@@ -197266,7 +197917,6 @@ export type Query = {
|
|
|
197266
197917
|
gravity_draft?: Maybe<GravityDraft>;
|
|
197267
197918
|
gravity_drafts?: Maybe<Array<GravityDraft>>;
|
|
197268
197919
|
gravity_exportViewAsTemplate?: Maybe<GravityExportViewAsTemplateResult>;
|
|
197269
|
-
gravity_importIdeas: GravityImportIdeasResult;
|
|
197270
197920
|
gravity_matchDelivery?: Maybe<GravityDeliveryMatchingResult>;
|
|
197271
197921
|
gravity_onViewArrangementChanged?: Maybe<GravityViewArrangementChangedEvent>;
|
|
197272
197922
|
gravity_reactions?: Maybe<GravityReactionsResult>;
|
|
@@ -197489,6 +198139,7 @@ export type Query = {
|
|
|
197489
198139
|
kitsune_snippets?: Maybe<Array<Maybe<KitsuneSnippet>>>;
|
|
197490
198140
|
kitsune_spaces?: Maybe<Array<Maybe<KitsuneSpace>>>;
|
|
197491
198141
|
kitsune_spacesForWorkspace?: Maybe<KitsuneSpaceConnection>;
|
|
198142
|
+
kitsune_starredSpacesForWorkspace?: Maybe<KitsuneSpaceConnection>;
|
|
197492
198143
|
kitsune_suggestInsights?: Maybe<Array<KitsuneInsightSuggestion>>;
|
|
197493
198144
|
kitsune_views?: Maybe<Array<Maybe<KitsuneView>>>;
|
|
197494
198145
|
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
@@ -197946,6 +198597,7 @@ export type Query = {
|
|
|
197946
198597
|
supportInquiry_channelsIdentityHash?: Maybe<Scalars['String']['output']>;
|
|
197947
198598
|
supportInquiry_channelsIdentityHashByClientName?: Maybe<Scalars['String']['output']>;
|
|
197948
198599
|
supportInquiry_userContext?: Maybe<SupportInquiryUserContext>;
|
|
198600
|
+
surveys_categories?: Maybe<SurveysCategoriesResult>;
|
|
197949
198601
|
surveys_survey?: Maybe<SurveysDetailsResult>;
|
|
197950
198602
|
surveys_surveysByProject?: Maybe<SurveysListResult>;
|
|
197951
198603
|
tags_getAssignedLabels?: Maybe<Array<TagsAssignedLabel>>;
|
|
@@ -198261,6 +198913,20 @@ export type QueryAdmin_LicenseUsageArgs = {
|
|
|
198261
198913
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
198262
198914
|
orgId: Scalars['ID']['input'];
|
|
198263
198915
|
};
|
|
198916
|
+
export type QueryAdmin_OauthClientsArgs = {
|
|
198917
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
198918
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
198919
|
+
filter?: InputMaybe<AdminOAuthClientFilter>;
|
|
198920
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
198921
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
198922
|
+
orgId: Scalars['ID']['input'];
|
|
198923
|
+
sortBy?: InputMaybe<AdminOAuthClientSortInput>;
|
|
198924
|
+
};
|
|
198925
|
+
export type QueryAdmin_OauthScopesArgs = {
|
|
198926
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
198927
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
198928
|
+
orgId: Scalars['ID']['input'];
|
|
198929
|
+
};
|
|
198264
198930
|
export type QueryAdmin_OrgArgs = {
|
|
198265
198931
|
id: Scalars['ID']['input'];
|
|
198266
198932
|
};
|
|
@@ -202818,6 +203484,12 @@ export type QueryGraphInference_InlineEvalRunArgs = {
|
|
|
202818
203484
|
export type QueryGraphInference_InsightsArgs = {
|
|
202819
203485
|
input: GraphInferenceTargetInsightsInput;
|
|
202820
203486
|
};
|
|
203487
|
+
export type QueryGraphInference_ReviewPackArgs = {
|
|
203488
|
+
id: Scalars['ID']['input'];
|
|
203489
|
+
};
|
|
203490
|
+
export type QueryGraphInference_ReviewPacksArgs = {
|
|
203491
|
+
first?: Scalars['Int']['input'];
|
|
203492
|
+
};
|
|
202821
203493
|
export type QueryGraphIntegration_AvailableTwgCapabilityContainersArgs = {
|
|
202822
203494
|
contextAri: Scalars['ID']['input'];
|
|
202823
203495
|
includeEnabledToolCount?: Scalars['Boolean']['input'];
|
|
@@ -204552,6 +205224,20 @@ export type QueryGraphStoreV2_AtlassianUserReportedJsmIncidentInverseArgs = {
|
|
|
204552
205224
|
id: Scalars['ID']['input'];
|
|
204553
205225
|
sort?: InputMaybe<GraphStoreV2AtlassianUserReportedJsmIncidentSortInput>;
|
|
204554
205226
|
};
|
|
205227
|
+
export type QueryGraphStoreV2_AtlassianUserRespondsToJiraWorkItemArgs = {
|
|
205228
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
205229
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
205230
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
205231
|
+
id: Scalars['ID']['input'];
|
|
205232
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserRespondsToJiraWorkItemSortInput>;
|
|
205233
|
+
};
|
|
205234
|
+
export type QueryGraphStoreV2_AtlassianUserRespondsToJiraWorkItemInverseArgs = {
|
|
205235
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
205236
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
205237
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
205238
|
+
id: Scalars['ID']['input'];
|
|
205239
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserRespondsToJiraWorkItemSortInput>;
|
|
205240
|
+
};
|
|
204555
205241
|
export type QueryGraphStoreV2_AtlassianUserReviewedConfluenceApprovalInverseArgs = {
|
|
204556
205242
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
204557
205243
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -208861,6 +209547,20 @@ export type QueryGraphStoreV2_JiraWorkItemHasJiraWorkItemCommentInverseArgs = {
|
|
|
208861
209547
|
id: Scalars['ID']['input'];
|
|
208862
209548
|
sort?: InputMaybe<GraphStoreV2JiraWorkItemHasJiraWorkItemCommentSortInput>;
|
|
208863
209549
|
};
|
|
209550
|
+
export type QueryGraphStoreV2_JiraWorkItemHasJsmIncidentSeverityArgs = {
|
|
209551
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
209552
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
209553
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
209554
|
+
id: Scalars['ID']['input'];
|
|
209555
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemHasJsmIncidentSeveritySortInput>;
|
|
209556
|
+
};
|
|
209557
|
+
export type QueryGraphStoreV2_JiraWorkItemHasJsmIncidentSeverityInverseArgs = {
|
|
209558
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
209559
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
209560
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
209561
|
+
id: Scalars['ID']['input'];
|
|
209562
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemHasJsmIncidentSeveritySortInput>;
|
|
209563
|
+
};
|
|
208864
209564
|
export type QueryGraphStoreV2_JiraWorkItemHasLinkedKnowledgeBaseEntityArgs = {
|
|
208865
209565
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
208866
209566
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -208875,6 +209575,20 @@ export type QueryGraphStoreV2_JiraWorkItemHasLinkedKnowledgeBaseEntityInverseArg
|
|
|
208875
209575
|
id: Scalars['ID']['input'];
|
|
208876
209576
|
sort?: InputMaybe<GraphStoreV2JiraWorkItemHasLinkedKnowledgeBaseEntitySortInput>;
|
|
208877
209577
|
};
|
|
209578
|
+
export type QueryGraphStoreV2_JiraWorkItemImpactsCompassComponentArgs = {
|
|
209579
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
209580
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
209581
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
209582
|
+
id: Scalars['ID']['input'];
|
|
209583
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemImpactsCompassComponentSortInput>;
|
|
209584
|
+
};
|
|
209585
|
+
export type QueryGraphStoreV2_JiraWorkItemImpactsCompassComponentInverseArgs = {
|
|
209586
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
209587
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
209588
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
209589
|
+
id: Scalars['ID']['input'];
|
|
209590
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemImpactsCompassComponentSortInput>;
|
|
209591
|
+
};
|
|
208878
209592
|
export type QueryGraphStoreV2_JiraWorkItemLinksAssetsObjectArgs = {
|
|
208879
209593
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
208880
209594
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -210575,6 +211289,22 @@ export type QueryGraphStore_AtlassianUserOwnsInferredProjectInverseArgs = {
|
|
|
210575
211289
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
210576
211290
|
sort?: InputMaybe<GraphStoreAtlassianUserOwnsInferredProjectSortInput>;
|
|
210577
211291
|
};
|
|
211292
|
+
export type QueryGraphStore_AtlassianUserRespondsToJiraWorkItemArgs = {
|
|
211293
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
211294
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
211295
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
211296
|
+
id: Scalars['ID']['input'];
|
|
211297
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
211298
|
+
sort?: InputMaybe<GraphStoreAtlassianUserRespondsToJiraWorkItemSortInput>;
|
|
211299
|
+
};
|
|
211300
|
+
export type QueryGraphStore_AtlassianUserRespondsToJiraWorkItemInverseArgs = {
|
|
211301
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
211302
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
211303
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
211304
|
+
id: Scalars['ID']['input'];
|
|
211305
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
211306
|
+
sort?: InputMaybe<GraphStoreAtlassianUserRespondsToJiraWorkItemSortInput>;
|
|
211307
|
+
};
|
|
210578
211308
|
export type QueryGraphStore_AtlassianUserReviewedConfluenceApprovalInverseArgs = {
|
|
210579
211309
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
210580
211310
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -213877,6 +214607,22 @@ export type QueryGraphStore_JiraWorkItemCommentHasChildCommentInverseArgs = {
|
|
|
213877
214607
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
213878
214608
|
sort?: InputMaybe<GraphStoreJiraWorkItemCommentHasChildCommentSortInput>;
|
|
213879
214609
|
};
|
|
214610
|
+
export type QueryGraphStore_JiraWorkItemHasJsmIncidentSeverityArgs = {
|
|
214611
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
214612
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
214613
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
214614
|
+
id: Scalars['ID']['input'];
|
|
214615
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
214616
|
+
sort?: InputMaybe<GraphStoreJiraWorkItemHasJsmIncidentSeveritySortInput>;
|
|
214617
|
+
};
|
|
214618
|
+
export type QueryGraphStore_JiraWorkItemHasJsmIncidentSeverityInverseArgs = {
|
|
214619
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
214620
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
214621
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
214622
|
+
id: Scalars['ID']['input'];
|
|
214623
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
214624
|
+
sort?: InputMaybe<GraphStoreJiraWorkItemHasJsmIncidentSeveritySortInput>;
|
|
214625
|
+
};
|
|
213880
214626
|
export type QueryGraphStore_JiraWorkItemLinksAssetObjectArgs = {
|
|
213881
214627
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
213882
214628
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -219165,10 +219911,6 @@ export type QueryGravity_ExportViewAsTemplateArgs = {
|
|
|
219165
219911
|
projectId: Scalars['ID']['input'];
|
|
219166
219912
|
viewId: Scalars['ID']['input'];
|
|
219167
219913
|
};
|
|
219168
|
-
export type QueryGravity_ImportIdeasArgs = {
|
|
219169
|
-
cloudId: Scalars['ID']['input'];
|
|
219170
|
-
input: GravityImportIdeasInput;
|
|
219171
|
-
};
|
|
219172
219914
|
export type QueryGravity_MatchDeliveryArgs = {
|
|
219173
219915
|
cloudId: Scalars['ID']['input'];
|
|
219174
219916
|
input: GravityMatchDeliveryInput;
|
|
@@ -220134,6 +220876,11 @@ export type QueryKitsune_SpacesForWorkspaceArgs = {
|
|
|
220134
220876
|
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
220135
220877
|
workspaceAri: Scalars['ID']['input'];
|
|
220136
220878
|
};
|
|
220879
|
+
export type QueryKitsune_StarredSpacesForWorkspaceArgs = {
|
|
220880
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
220881
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
220882
|
+
workspaceAri: Scalars['ID']['input'];
|
|
220883
|
+
};
|
|
220137
220884
|
export type QueryKitsune_SuggestInsightsArgs = {
|
|
220138
220885
|
embeddingType?: InputMaybe<Scalars['String']['input']>;
|
|
220139
220886
|
input?: InputMaybe<KitsuneSearchInsightsInput>;
|
|
@@ -221918,6 +222665,10 @@ export type QuerySuggestedSpacesArgs = {
|
|
|
221918
222665
|
export type QuerySupportInquiry_ChannelsIdentityHashByClientNameArgs = {
|
|
221919
222666
|
request?: InputMaybe<SupportInquiryChannelPlatformIdentityHashRequest>;
|
|
221920
222667
|
};
|
|
222668
|
+
export type QuerySurveys_CategoriesArgs = {
|
|
222669
|
+
jiraProjectARI: Scalars['ID']['input'];
|
|
222670
|
+
usedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
222671
|
+
};
|
|
221921
222672
|
export type QuerySurveys_SurveyArgs = {
|
|
221922
222673
|
jiraProjectARI: Scalars['ID']['input'];
|
|
221923
222674
|
surveyId: Scalars['ID']['input'];
|
|
@@ -234416,6 +235167,11 @@ export declare enum SurveysAccess {
|
|
|
234416
235167
|
ViewEditRestricted = "VIEW_EDIT_RESTRICTED",
|
|
234417
235168
|
ViewOpenEditRestricted = "VIEW_OPEN_EDIT_RESTRICTED"
|
|
234418
235169
|
}
|
|
235170
|
+
export type SurveysCategoriesResponse = {
|
|
235171
|
+
__typename?: 'SurveysCategoriesResponse';
|
|
235172
|
+
categories: Array<Scalars['String']['output']>;
|
|
235173
|
+
};
|
|
235174
|
+
export type SurveysCategoriesResult = SurveysCategoriesResponse | SurveysQueryError;
|
|
234419
235175
|
export type SurveysDetailsResponse = {
|
|
234420
235176
|
__typename?: 'SurveysDetailsResponse';
|
|
234421
235177
|
captureEmail: Scalars['Boolean']['output'];
|
|
@@ -239771,6 +240527,16 @@ export type TownsquareProjectsEditDecisionPayload = {
|
|
|
239771
240527
|
errors?: Maybe<Array<MutationError>>;
|
|
239772
240528
|
success: Scalars['Boolean']['output'];
|
|
239773
240529
|
};
|
|
240530
|
+
export type TownsquareProjectsEditDraftUpdateInput = {
|
|
240531
|
+
draftId: Scalars['ID']['input'];
|
|
240532
|
+
values?: InputMaybe<TownsquareProjectsCreateUpdateInput>;
|
|
240533
|
+
};
|
|
240534
|
+
export type TownsquareProjectsEditDraftUpdatePayload = {
|
|
240535
|
+
__typename?: 'TownsquareProjectsEditDraftUpdatePayload';
|
|
240536
|
+
draftUpdate?: Maybe<TownsquareProjectDraftUpdate>;
|
|
240537
|
+
errors?: Maybe<Array<MutationError>>;
|
|
240538
|
+
success: Scalars['Boolean']['output'];
|
|
240539
|
+
};
|
|
239774
240540
|
export type TownsquareProjectsEditDropdownCustomFieldInput = {
|
|
239775
240541
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
239776
240542
|
projectId: Scalars['ID']['input'];
|