@forge/cli-shared 9.6.0-next.6 → 9.6.0-next.7-experimental-6664e2b

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.
@@ -2276,6 +2276,7 @@ export type AvpDashboard = Node & {
2276
2276
  filterExpression?: Maybe<AvpFilterExpression>;
2277
2277
  fromTemplate?: Maybe<Scalars['String']['output']>;
2278
2278
  id: Scalars['ID']['output'];
2279
+ integrationId?: Maybe<AvpIntegrationId>;
2279
2280
  isReadOnly?: Maybe<Scalars['Boolean']['output']>;
2280
2281
  isStarred?: Maybe<Scalars['Boolean']['output']>;
2281
2282
  isWrapper?: Maybe<Scalars['Boolean']['output']>;
@@ -4697,6 +4698,11 @@ export type AdminCreateInvitePolicyResponsePayload = {
4697
4698
  invitePolicy?: Maybe<AdminInvitePolicy>;
4698
4699
  success: Scalars['Boolean']['output'];
4699
4700
  };
4701
+ export type AdminCreateOAuthClientInput = {
4702
+ name: Scalars['String']['input'];
4703
+ orgId: Scalars['ID']['input'];
4704
+ scopes: Array<Scalars['String']['input']>;
4705
+ };
4700
4706
  export type AdminCreateOutboundAuthServicePayload = AdminPayload & {
4701
4707
  __typename?: 'AdminCreateOutboundAuthServicePayload';
4702
4708
  errors?: Maybe<Array<AdminMutationError>>;
@@ -4912,7 +4918,7 @@ export type AdminGenericMutationResponse = AdminPayload & {
4912
4918
  errors?: Maybe<Array<AdminMutationError>>;
4913
4919
  success: Scalars['Boolean']['output'];
4914
4920
  };
4915
- export type AdminGroup = {
4921
+ export type AdminGroup = AdminPrincipal & {
4916
4922
  __typename?: 'AdminGroup';
4917
4923
  counts?: Maybe<AdminGroupCounts>;
4918
4924
  description?: Maybe<Scalars['String']['output']>;
@@ -5203,6 +5209,73 @@ export type AdminMutationError = {
5203
5209
  extensions?: Maybe<AdminApplicationErrorExtension>;
5204
5210
  message?: Maybe<Scalars['String']['output']>;
5205
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
+ };
5206
5279
  export type AdminOfferingInput = {
5207
5280
  byokPolicyId?: InputMaybe<Scalars['ID']['input']>;
5208
5281
  chargeElement?: InputMaybe<Scalars['String']['input']>;
@@ -5325,7 +5398,10 @@ export declare enum AdminPolicyStatus {
5325
5398
  export type AdminPrimitive = {
5326
5399
  field?: InputMaybe<AdminQueryableField>;
5327
5400
  };
5328
- export type AdminPrincipal = AdminGroup | AdminUser;
5401
+ export type AdminPrincipal = {
5402
+ id: Scalars['ID']['output'];
5403
+ name?: Maybe<Scalars['String']['output']>;
5404
+ };
5329
5405
  export type AdminProductListingResult = {
5330
5406
  __typename?: 'AdminProductListingResult';
5331
5407
  name: Scalars['String']['output'];
@@ -5398,6 +5474,16 @@ export type AdminResourceRoleInput = {
5398
5474
  resourceId: Scalars['ID']['input'];
5399
5475
  roleId: Scalars['ID']['input'];
5400
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
+ };
5401
5487
  export type AdminRevokeRoleInput = {
5402
5488
  principalId: Scalars['String']['input'];
5403
5489
  resourceId: Scalars['String']['input'];
@@ -5440,6 +5526,10 @@ export type AdminRoleIdCounts = {
5440
5526
  count: Scalars['Int']['output'];
5441
5527
  roleId: Scalars['String']['output'];
5442
5528
  };
5529
+ export type AdminRotateOAuthClientSecretInput = {
5530
+ clientId: Scalars['ID']['input'];
5531
+ orgId: Scalars['ID']['input'];
5532
+ };
5443
5533
  export type AdminSamlConfiguration = {
5444
5534
  __typename?: 'AdminSamlConfiguration';
5445
5535
  identityProviderDirectoryId: Scalars['ID']['output'];
@@ -5959,6 +6049,15 @@ export type AdminUpdateAiPolicyResponsePayload = AdminPayload & {
5959
6049
  errors?: Maybe<Array<AdminMutationError>>;
5960
6050
  success: Scalars['Boolean']['output'];
5961
6051
  };
6052
+ export type AdminUpdateEnforceBoundarySettingInput = {
6053
+ boundaryEnforced: Scalars['Boolean']['input'];
6054
+ orgId: Scalars['ID']['input'];
6055
+ };
6056
+ export type AdminUpdateEnforceBoundarySettingPayload = {
6057
+ __typename?: 'AdminUpdateEnforceBoundarySettingPayload';
6058
+ errors?: Maybe<Array<AdminMutationError>>;
6059
+ success: Scalars['Boolean']['output'];
6060
+ };
5962
6061
  export type AdminUpdateInvitePolicyInput = {
5963
6062
  allowedAction?: InputMaybe<AdminInviteAllowedAction>;
5964
6063
  appliesTo?: InputMaybe<Array<AdminResourceRoleInput>>;
@@ -5982,7 +6081,7 @@ export type AdminUsageInfo = {
5982
6081
  usage?: Maybe<Scalars['Float']['output']>;
5983
6082
  usageIdentifier?: Maybe<Scalars['String']['output']>;
5984
6083
  };
5985
- export type AdminUser = {
6084
+ export type AdminUser = AdminPrincipal & {
5986
6085
  __typename?: 'AdminUser';
5987
6086
  accountStatus: Scalars['String']['output'];
5988
6087
  accountType?: Maybe<Scalars['String']['output']>;
@@ -9080,6 +9179,7 @@ export type AgentWorkspaceProjectRoutingHistoryEventsArgs = {
9080
9179
  first?: InputMaybe<Scalars['Int']['input']>;
9081
9180
  kinds?: InputMaybe<Array<AgentWorkspaceRoutingHistoryEventKind>>;
9082
9181
  statuses?: InputMaybe<Array<AgentWorkspaceRoutingHistoryStatus>>;
9182
+ triggers?: InputMaybe<Array<AgentWorkspaceConfigurableRoutingTrigger>>;
9083
9183
  };
9084
9184
  export type AgentWorkspaceProjectSkill = {
9085
9185
  __typename?: 'AgentWorkspaceProjectSkill';
@@ -12904,6 +13004,21 @@ export type ArtifactTokenReference = {
12904
13004
  family: Scalars['String']['output'];
12905
13005
  tokens: Array<ArtifactDesignToken>;
12906
13006
  };
13007
+ export type ArtifactUpdateInput = {
13008
+ access?: InputMaybe<ArtifactAccess>;
13009
+ contentId?: InputMaybe<Scalars['ID']['input']>;
13010
+ contextId: Scalars['ID']['input'];
13011
+ description?: InputMaybe<Scalars['String']['input']>;
13012
+ id: Scalars['ID']['input'];
13013
+ name: Scalars['String']['input'];
13014
+ type?: InputMaybe<Scalars['String']['input']>;
13015
+ };
13016
+ export type ArtifactUpdatePayload = Payload & {
13017
+ __typename?: 'ArtifactUpdatePayload';
13018
+ artifact?: Maybe<Artifact>;
13019
+ errors?: Maybe<Array<MutationError>>;
13020
+ success: Scalars['Boolean']['output'];
13021
+ };
12907
13022
  export type ArtifactUploadTarget = {
12908
13023
  __typename?: 'ArtifactUploadTarget';
12909
13024
  contentId: Scalars['ID']['output'];
@@ -22837,6 +22952,7 @@ export type CommerceExpCcpEntitlement = {
22837
22952
  actions?: Maybe<CommerceExpEntitlementActions>;
22838
22953
  actions2?: Maybe<CommerceExpEntitlementActionsV2>;
22839
22954
  aggCcpEntitlement?: Maybe<CcpEntitlement>;
22955
+ aggCcpEntitlementIfEntitlementTypeIsApp?: Maybe<CcpEntitlement>;
22840
22956
  aggCcpEntitlementIfHostingTypeIsDataCenter?: Maybe<CcpEntitlement>;
22841
22957
  allRelatedEntitlementsForBac?: Maybe<Array<Maybe<CommerceExpCcpEntitlement>>>;
22842
22958
  allowanceExemptions?: Maybe<CommerceExpUtsAllowanceExemptionList>;
@@ -22855,6 +22971,7 @@ export type CommerceExpCcpEntitlement = {
22855
22971
  contract?: Maybe<CommerceExpCommercialContract>;
22856
22972
  currentPromotions?: Maybe<Array<Maybe<CommerceExpCcpPromotion>>>;
22857
22973
  currentUserPermissions?: Maybe<Array<Maybe<CommerceExpUserPermission>>>;
22974
+ entitlementIdIfEntitlementTypeIsApp?: Maybe<Scalars['ID']['output']>;
22858
22975
  entitlementIdIfHostingTypeIsDataCenter?: Maybe<Scalars['ID']['output']>;
22859
22976
  forecastBillEstimates?: Maybe<CommerceExpForecastBillEstimates>;
22860
22977
  hasConnectedAnnualProductEntitlements?: Maybe<Scalars['Boolean']['output']>;
@@ -26866,6 +26983,7 @@ export type CommerceExpValidOrderSuccess = {
26866
26983
  rawOrder?: Maybe<Scalars['JSON']['output']>;
26867
26984
  recurringEstimate?: Maybe<CommerceExpOrderIntentEstimate>;
26868
26985
  shouldAddPaymentBeforeUpgrade?: Maybe<Scalars['Boolean']['output']>;
26986
+ shouldSkipTrialOnUpgrade?: Maybe<Scalars['Boolean']['output']>;
26869
26987
  upgradeServCoProductsAction?: Maybe<CommerceExpServCoUpgradeAction>;
26870
26988
  validOrderItems?: Maybe<Array<Maybe<CommerceExpValidOrderItem>>>;
26871
26989
  };
@@ -36947,6 +37065,7 @@ export type ConfluencePermissionTransitionPrincipalPageInfo = {
36947
37065
  };
36948
37066
  export declare enum ConfluencePermissionTransitionPrincipalType {
36949
37067
  AccessClass = "ACCESS_CLASS",
37068
+ Agent = "AGENT",
36950
37069
  Anonymous = "ANONYMOUS",
36951
37070
  App = "APP",
36952
37071
  Group = "GROUP",
@@ -47454,6 +47573,7 @@ export type DevAiAutodevNextWorkItemClassification = {
47454
47573
  codingAgentPromptContext?: Maybe<Scalars['String']['output']>;
47455
47574
  enrichedContext?: Maybe<DevAiAutodevNextWorkItemEnrichedContext>;
47456
47575
  feedback?: Maybe<Scalars['String']['output']>;
47576
+ openPullRequestAsDraft?: Maybe<Scalars['Boolean']['output']>;
47457
47577
  repositories?: Maybe<Array<Scalars['String']['output']>>;
47458
47578
  status?: Maybe<Scalars['ID']['output']>;
47459
47579
  tShirtSize?: Maybe<Scalars['ID']['output']>;
@@ -50686,6 +50806,7 @@ export type DlpFalsePositive = {
50686
50806
  contentHash?: Maybe<Scalars['String']['output']>;
50687
50807
  contentType?: Maybe<Scalars['String']['output']>;
50688
50808
  detectorId?: Maybe<Scalars['String']['output']>;
50809
+ detectorType?: Maybe<Scalars['String']['output']>;
50689
50810
  excludedAt?: Maybe<Scalars['String']['output']>;
50690
50811
  excludedBy?: Maybe<Scalars['String']['output']>;
50691
50812
  findingId?: Maybe<Scalars['String']['output']>;
@@ -50695,6 +50816,7 @@ export type DlpFalsePositive = {
50695
50816
  objectTitle?: Maybe<Scalars['String']['output']>;
50696
50817
  parentResourceId?: Maybe<Scalars['String']['output']>;
50697
50818
  resourceId?: Maybe<Scalars['String']['output']>;
50819
+ scope?: Maybe<DlpFalsePositiveScope>;
50698
50820
  source?: Maybe<Scalars['String']['output']>;
50699
50821
  workspaceId?: Maybe<Scalars['String']['output']>;
50700
50822
  };
@@ -50716,15 +50838,21 @@ export type DlpFalsePositiveInput = {
50716
50838
  contentHash: Scalars['String']['input'];
50717
50839
  contentType: Scalars['String']['input'];
50718
50840
  detectorId: Scalars['String']['input'];
50841
+ detectorType?: InputMaybe<Scalars['String']['input']>;
50719
50842
  findingId: Scalars['String']['input'];
50720
50843
  lastDetectedAt?: InputMaybe<Scalars['String']['input']>;
50721
50844
  location?: InputMaybe<Scalars['String']['input']>;
50722
50845
  objectTitle?: InputMaybe<Scalars['String']['input']>;
50723
50846
  parentResourceId: Scalars['String']['input'];
50724
50847
  resourceId: Scalars['String']['input'];
50848
+ scope?: InputMaybe<DlpFalsePositiveScope>;
50725
50849
  source?: InputMaybe<Scalars['String']['input']>;
50726
50850
  workspaceId: Scalars['String']['input'];
50727
50851
  };
50852
+ export declare enum DlpFalsePositiveScope {
50853
+ Object = "OBJECT",
50854
+ Org = "ORG"
50855
+ }
50728
50856
  export type DlpFalsePositivesListResponse = {
50729
50857
  __typename?: 'DlpFalsePositivesListResponse';
50730
50858
  cursor?: Maybe<Scalars['String']['output']>;
@@ -52049,6 +52177,7 @@ export type ExternalBranch = Node & {
52049
52177
  __typename?: 'ExternalBranch';
52050
52178
  associatedWith?: Maybe<ExternalAssociationConnection>;
52051
52179
  branchId?: Maybe<Scalars['String']['output']>;
52180
+ connectorType?: Maybe<ExternalConnectorType>;
52052
52181
  container?: Maybe<ExternalEntity>;
52053
52182
  containerId?: Maybe<Scalars['ID']['output']>;
52054
52183
  createPullRequestUrl?: Maybe<Scalars['String']['output']>;
@@ -52080,6 +52209,7 @@ export type ExternalBuildInfo = Node & {
52080
52209
  __typename?: 'ExternalBuildInfo';
52081
52210
  associatedWith?: Maybe<ExternalAssociationConnection>;
52082
52211
  buildNumber?: Maybe<Scalars['Long']['output']>;
52212
+ connectorType?: Maybe<ExternalConnectorType>;
52083
52213
  container?: Maybe<ExternalEntity>;
52084
52214
  containerId?: Maybe<Scalars['ID']['output']>;
52085
52215
  createdAt?: Maybe<Scalars['String']['output']>;
@@ -52413,6 +52543,7 @@ export type ExternalCommit = Node & {
52413
52543
  associatedWith?: Maybe<ExternalAssociationConnection>;
52414
52544
  author?: Maybe<ExternalUser>;
52415
52545
  commitId?: Maybe<Scalars['String']['output']>;
52546
+ connectorType?: Maybe<ExternalConnectorType>;
52416
52547
  container?: Maybe<ExternalEntity>;
52417
52548
  containerId?: Maybe<Scalars['ID']['output']>;
52418
52549
  createdAt?: Maybe<Scalars['String']['output']>;
@@ -52828,6 +52959,7 @@ export type ExternalDealOpportunityAmount = {
52828
52959
  export type ExternalDeployment = Node & {
52829
52960
  __typename?: 'ExternalDeployment';
52830
52961
  associatedWith?: Maybe<ExternalAssociationConnection>;
52962
+ connectorType?: Maybe<ExternalConnectorType>;
52831
52963
  container?: Maybe<ExternalEntity>;
52832
52964
  containerId?: Maybe<Scalars['ID']['output']>;
52833
52965
  createdAt?: Maybe<Scalars['String']['output']>;
@@ -52865,6 +52997,7 @@ export declare enum ExternalDeploymentState {
52865
52997
  export type ExternalDesign = Node & {
52866
52998
  __typename?: 'ExternalDesign';
52867
52999
  associatedWith?: Maybe<ExternalAssociationConnection>;
53000
+ connectorType?: Maybe<ExternalConnectorType>;
52868
53001
  createdAt?: Maybe<Scalars['String']['output']>;
52869
53002
  createdBy?: Maybe<ExternalUser>;
52870
53003
  description?: Maybe<Scalars['String']['output']>;
@@ -53106,6 +53239,7 @@ export type ExternalExportLink = {
53106
53239
  export type ExternalFeatureFlag = Node & {
53107
53240
  __typename?: 'ExternalFeatureFlag';
53108
53241
  associatedWith?: Maybe<ExternalAssociationConnection>;
53242
+ connectorType?: Maybe<ExternalConnectorType>;
53109
53243
  details?: Maybe<Array<Maybe<ExternalFeatureFlagDetail>>>;
53110
53244
  displayName?: Maybe<Scalars['String']['output']>;
53111
53245
  externalId?: Maybe<Scalars['String']['output']>;
@@ -53423,6 +53557,7 @@ export type ExternalPullRequest = Node & {
53423
53557
  associatedWith?: Maybe<ExternalAssociationConnection>;
53424
53558
  author?: Maybe<ExternalUser>;
53425
53559
  commentCount?: Maybe<Scalars['Int']['output']>;
53560
+ connectorType?: Maybe<ExternalConnectorType>;
53426
53561
  container?: Maybe<ExternalEntity>;
53427
53562
  containerId?: Maybe<Scalars['ID']['output']>;
53428
53563
  createdAt?: Maybe<Scalars['String']['output']>;
@@ -53484,6 +53619,7 @@ export type ExternalRemoteLink = Node & {
53484
53619
  attributeMap?: Maybe<Array<Maybe<ExternalRemoteLinkAttributeTuple>>>;
53485
53620
  author?: Maybe<ExternalUser>;
53486
53621
  category?: Maybe<Scalars['String']['output']>;
53622
+ connectorType?: Maybe<ExternalConnectorType>;
53487
53623
  createdAt?: Maybe<Scalars['String']['output']>;
53488
53624
  createdBy?: Maybe<ExternalUser>;
53489
53625
  description?: Maybe<Scalars['String']['output']>;
@@ -53516,6 +53652,7 @@ export type ExternalRepository = Node & {
53516
53652
  associatedWith?: Maybe<ExternalAssociationConnection>;
53517
53653
  avatarDescription?: Maybe<Scalars['String']['output']>;
53518
53654
  avatarUrl?: Maybe<Scalars['String']['output']>;
53655
+ connectorType?: Maybe<ExternalConnectorType>;
53519
53656
  createdBy?: Maybe<ExternalUser>;
53520
53657
  description?: Maybe<Scalars['String']['output']>;
53521
53658
  displayName?: Maybe<Scalars['String']['output']>;
@@ -53969,6 +54106,7 @@ export type ExternalVulnerability = Node & {
53969
54106
  __typename?: 'ExternalVulnerability';
53970
54107
  additionalInfo?: Maybe<ExternalVulnerabilityAdditionalInfo>;
53971
54108
  associatedWith?: Maybe<ExternalAssociationConnection>;
54109
+ connectorType?: Maybe<ExternalConnectorType>;
53972
54110
  description?: Maybe<Scalars['String']['output']>;
53973
54111
  displayName?: Maybe<Scalars['String']['output']>;
53974
54112
  externalId?: Maybe<Scalars['String']['output']>;
@@ -57084,6 +57222,9 @@ export declare enum GraphInferenceFailureReason {
57084
57222
  Unavailable = "UNAVAILABLE",
57085
57223
  Unknown = "UNKNOWN"
57086
57224
  }
57225
+ export type GraphInferenceGenerateReviewPackInput = {
57226
+ requestId: Scalars['String']['input'];
57227
+ };
57087
57228
  export type GraphInferenceGetJiraEntityContextInput = {
57088
57229
  agentAri?: InputMaybe<Scalars['String']['input']>;
57089
57230
  contextTypes?: InputMaybe<Array<Scalars['String']['input']>>;
@@ -57354,6 +57495,7 @@ export type GraphInferenceInferenceAppV3 = {
57354
57495
  source: Scalars['String']['output'];
57355
57496
  };
57356
57497
  export type GraphInferenceInferenceEvalInput = {
57498
+ activationId?: InputMaybe<Scalars['String']['input']>;
57357
57499
  appId: Scalars['String']['input'];
57358
57500
  historyFixture?: InputMaybe<Scalars['JSON']['input']>;
57359
57501
  promptTemplate?: InputMaybe<Scalars['String']['input']>;
@@ -57552,6 +57694,74 @@ export type GraphInferenceInferredProjectViewer = {
57552
57694
  __typename?: 'GraphInferenceInferredProjectViewer';
57553
57695
  accountId: Scalars['String']['output'];
57554
57696
  };
57697
+ export type GraphInferenceInlineEvalContractInput = {
57698
+ appId: Scalars['String']['input'];
57699
+ };
57700
+ export type GraphInferenceInlineEvalContractResponse = {
57701
+ __typename?: 'GraphInferenceInlineEvalContractResponse';
57702
+ appConfigurationFingerprint: Scalars['String']['output'];
57703
+ appId: Scalars['String']['output'];
57704
+ sourceCapabilityId: Scalars['String']['output'];
57705
+ stages: Array<GraphInferenceInlineEvalStageContract>;
57706
+ supported: Scalars['Boolean']['output'];
57707
+ targetCapabilityIds: Array<Scalars['String']['output']>;
57708
+ unsupportedReason?: Maybe<Scalars['String']['output']>;
57709
+ };
57710
+ export type GraphInferenceInlineEvalCost = {
57711
+ __typename?: 'GraphInferenceInlineEvalCost';
57712
+ amountUsd?: Maybe<Scalars['String']['output']>;
57713
+ status: Scalars['String']['output'];
57714
+ };
57715
+ export type GraphInferenceInlineEvalRunResponse = {
57716
+ __typename?: 'GraphInferenceInlineEvalRunResponse';
57717
+ appConfigurationFingerprint: Scalars['String']['output'];
57718
+ appId: Scalars['String']['output'];
57719
+ cost: GraphInferenceInlineEvalCost;
57720
+ createdAtUnixSeconds: Scalars['Long']['output'];
57721
+ expiresAtUnixSeconds: Scalars['Long']['output'];
57722
+ failureCode?: Maybe<Scalars['String']['output']>;
57723
+ result?: Maybe<Scalars['JSON']['output']>;
57724
+ runId: Scalars['ID']['output'];
57725
+ stages: Array<GraphInferenceInlineEvalStageTelemetry>;
57726
+ status: Scalars['String']['output'];
57727
+ };
57728
+ export type GraphInferenceInlineEvalStageContract = {
57729
+ __typename?: 'GraphInferenceInlineEvalStageContract';
57730
+ id: Scalars['String']['output'];
57731
+ modelOverrideSupported: Scalars['Boolean']['output'];
57732
+ optionalInputIds: Array<Scalars['String']['output']>;
57733
+ promptOverrideSupported: Scalars['Boolean']['output'];
57734
+ reasoningLevelOverrideSupported: Scalars['Boolean']['output'];
57735
+ };
57736
+ export type GraphInferenceInlineEvalStageTelemetry = {
57737
+ __typename?: 'GraphInferenceInlineEvalStageTelemetry';
57738
+ cachedReadTokens?: Maybe<Scalars['Long']['output']>;
57739
+ cachedWriteTokens?: Maybe<Scalars['Long']['output']>;
57740
+ configuredModel?: Maybe<Scalars['String']['output']>;
57741
+ inputTokens?: Maybe<Scalars['Long']['output']>;
57742
+ latencyMs?: Maybe<Scalars['Long']['output']>;
57743
+ outputTokens?: Maybe<Scalars['Long']['output']>;
57744
+ promptVersion: Scalars['String']['output'];
57745
+ responseBytes?: Maybe<Scalars['Long']['output']>;
57746
+ stageId: Scalars['String']['output'];
57747
+ thoughtTokens?: Maybe<Scalars['Long']['output']>;
57748
+ totalTokens?: Maybe<Scalars['Long']['output']>;
57749
+ };
57750
+ export type GraphInferenceInlineEvalStartInput = {
57751
+ appConfigurationFingerprint: Scalars['String']['input'];
57752
+ appId: Scalars['String']['input'];
57753
+ clientRequestId: Scalars['String']['input'];
57754
+ executionOverrides?: InputMaybe<Scalars['JSON']['input']>;
57755
+ inlinePayload: Scalars['JSON']['input'];
57756
+ stageInputs?: InputMaybe<Scalars['JSON']['input']>;
57757
+ };
57758
+ export type GraphInferenceInlineEvalStartResponse = {
57759
+ __typename?: 'GraphInferenceInlineEvalStartResponse';
57760
+ createdAtUnixSeconds: Scalars['Long']['output'];
57761
+ expiresAtUnixSeconds: Scalars['Long']['output'];
57762
+ runId: Scalars['ID']['output'];
57763
+ status: Scalars['String']['output'];
57764
+ };
57555
57765
  export type GraphInferenceInsight = {
57556
57766
  associatedEntities: Array<GraphInferenceInsightEntity>;
57557
57767
  confidenceScore?: Maybe<Scalars['Float']['output']>;
@@ -57710,6 +57920,122 @@ export type GraphInferenceRelatedReposRoot = {
57710
57920
  __typename?: 'GraphInferenceRelatedReposRoot';
57711
57921
  ari: Scalars['String']['output'];
57712
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
+ }
57713
58039
  export type GraphInferenceSimilarJiraItemCandidate = {
57714
58040
  __typename?: 'GraphInferenceSimilarJiraItemCandidate';
57715
58041
  ari: Scalars['String']['output'];
@@ -57731,6 +58057,15 @@ export type GraphInferenceSimilarJiraItemsRoot = {
57731
58057
  __typename?: 'GraphInferenceSimilarJiraItemsRoot';
57732
58058
  ari: Scalars['String']['output'];
57733
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
+ };
57734
58069
  export type GraphInferenceTargetInsightsInput = {
57735
58070
  dateRange?: InputMaybe<GraphInferenceInsightDateRangeInput>;
57736
58071
  insightTypes?: InputMaybe<Array<GraphInferenceInsightType>>;
@@ -62124,6 +62459,8 @@ export type GraphStore = {
62124
62459
  inferredProjectHasRelatedEntityInverse?: Maybe<GraphStoreSimplifiedInferredProjectHasRelatedEntityInverseConnection>;
62125
62460
  inferredProjectLinksEntity?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityConnection>;
62126
62461
  inferredProjectLinksEntityInverse?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityInverseConnection>;
62462
+ inferredProjectPromotedToAtlassianProject?: Maybe<GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectConnection>;
62463
+ inferredProjectPromotedToAtlassianProjectInverse?: Maybe<GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectInverseConnection>;
62127
62464
  inferredTeamCollaboratesOnInferredProject?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectConnection>;
62128
62465
  inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
62129
62466
  inferredTeamLinksEntity?: Maybe<GraphStoreSimplifiedInferredTeamLinksEntityConnection>;
@@ -66497,6 +66834,22 @@ export type GraphStoreInferredProjectLinksEntityInverseArgs = {
66497
66834
  queryContext?: InputMaybe<Scalars['String']['input']>;
66498
66835
  sort?: InputMaybe<GraphStoreInferredProjectLinksEntitySortInput>;
66499
66836
  };
66837
+ export type GraphStoreInferredProjectPromotedToAtlassianProjectArgs = {
66838
+ after?: InputMaybe<Scalars['String']['input']>;
66839
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
66840
+ first?: InputMaybe<Scalars['Int']['input']>;
66841
+ id: Scalars['ID']['input'];
66842
+ queryContext?: InputMaybe<Scalars['String']['input']>;
66843
+ sort?: InputMaybe<GraphStoreInferredProjectPromotedToAtlassianProjectSortInput>;
66844
+ };
66845
+ export type GraphStoreInferredProjectPromotedToAtlassianProjectInverseArgs = {
66846
+ after?: InputMaybe<Scalars['String']['input']>;
66847
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
66848
+ first?: InputMaybe<Scalars['Int']['input']>;
66849
+ id: Scalars['ID']['input'];
66850
+ queryContext?: InputMaybe<Scalars['String']['input']>;
66851
+ sort?: InputMaybe<GraphStoreInferredProjectPromotedToAtlassianProjectSortInput>;
66852
+ };
66500
66853
  export type GraphStoreInferredTeamCollaboratesOnInferredProjectArgs = {
66501
66854
  after?: InputMaybe<Scalars['String']['input']>;
66502
66855
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -80454,6 +80807,9 @@ export type GraphStoreInferredProjectNodeMetadata = {
80454
80807
  summary?: Maybe<Scalars['String']['output']>;
80455
80808
  title?: Maybe<Scalars['String']['output']>;
80456
80809
  };
80810
+ export type GraphStoreInferredProjectPromotedToAtlassianProjectSortInput = {
80811
+ lastModified?: InputMaybe<GraphStoreSortInput>;
80812
+ };
80457
80813
  export declare enum GraphStoreInferredRiskNodeInferredRiskLevelOutput {
80458
80814
  Critical = "CRITICAL",
80459
80815
  High = "HIGH",
@@ -87345,7 +87701,7 @@ export type GraphStoreSimplifiedInferredDecisionSourceLineageEntityInverseEdge =
87345
87701
  node?: Maybe<GraphStoreSimplifiedInferredDecisionSourceLineageEntityInverseUnion>;
87346
87702
  };
87347
87703
  export type GraphStoreSimplifiedInferredDecisionSourceLineageEntityInverseUnion = GraphStoreNodeResponse;
87348
- export type GraphStoreSimplifiedInferredDecisionSourceLineageEntityUnion = ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | ExternalVideo | LoomVideo;
87704
+ export type GraphStoreSimplifiedInferredDecisionSourceLineageEntityUnion = ConfluencePage | DevOpsDocument | DevOpsPullRequestDetails | ExternalDocument | ExternalPullRequest | ExternalVideo | LoomVideo;
87349
87705
  export type GraphStoreSimplifiedInferredProjectHasRelatedEntityConnection = HasPageInfo & {
87350
87706
  __typename?: 'GraphStoreSimplifiedInferredProjectHasRelatedEntityConnection';
87351
87707
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredProjectHasRelatedEntityEdge>>>;
@@ -87402,6 +87758,34 @@ export type GraphStoreSimplifiedInferredProjectLinksEntityInverseEdge = {
87402
87758
  };
87403
87759
  export type GraphStoreSimplifiedInferredProjectLinksEntityInverseUnion = GraphStoreNodeResponse;
87404
87760
  export type GraphStoreSimplifiedInferredProjectLinksEntityUnion = ConfluencePage | JiraIssue | JiraProject;
87761
+ export type GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectConnection = HasPageInfo & {
87762
+ __typename?: 'GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectConnection';
87763
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectEdge>>>;
87764
+ pageInfo: PageInfo;
87765
+ };
87766
+ export type GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectEdge = {
87767
+ __typename?: 'GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectEdge';
87768
+ createdAt: Scalars['DateTime']['output'];
87769
+ cursor?: Maybe<Scalars['String']['output']>;
87770
+ id: Scalars['ID']['output'];
87771
+ lastUpdated: Scalars['DateTime']['output'];
87772
+ node?: Maybe<GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectUnion>;
87773
+ };
87774
+ export type GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectInverseConnection = HasPageInfo & {
87775
+ __typename?: 'GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectInverseConnection';
87776
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectInverseEdge>>>;
87777
+ pageInfo: PageInfo;
87778
+ };
87779
+ export type GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectInverseEdge = {
87780
+ __typename?: 'GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectInverseEdge';
87781
+ createdAt: Scalars['DateTime']['output'];
87782
+ cursor?: Maybe<Scalars['String']['output']>;
87783
+ id: Scalars['ID']['output'];
87784
+ lastUpdated: Scalars['DateTime']['output'];
87785
+ node?: Maybe<GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectInverseUnion>;
87786
+ };
87787
+ export type GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectInverseUnion = GraphStoreNodeResponse;
87788
+ export type GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectUnion = TownsquareProject;
87405
87789
  export type GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectConnection = HasPageInfo & {
87406
87790
  __typename?: 'GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectConnection';
87407
87791
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectEdge>>>;
@@ -97709,6 +98093,8 @@ export type GraphStoreV2 = {
97709
98093
  inferredProjectHasRelatedEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectHasRelatedEntityInverseConnection>;
97710
98094
  inferredProjectLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityConnection>;
97711
98095
  inferredProjectLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityInverseConnection>;
98096
+ inferredProjectPromotedToAtlassianProject?: Maybe<GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectConnection>;
98097
+ inferredProjectPromotedToAtlassianProjectInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectInverseConnection>;
97712
98098
  inferredTeamCollaboratesOnInferredProject?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectConnection>;
97713
98099
  inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
97714
98100
  inferredTeamLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredTeamLinksEntityConnection>;
@@ -102940,6 +103326,20 @@ export type GraphStoreV2InferredProjectLinksEntityInverseArgs = {
102940
103326
  id: Scalars['ID']['input'];
102941
103327
  sort?: InputMaybe<GraphStoreV2InferredProjectLinksEntitySortInput>;
102942
103328
  };
103329
+ export type GraphStoreV2InferredProjectPromotedToAtlassianProjectArgs = {
103330
+ after?: InputMaybe<Scalars['String']['input']>;
103331
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
103332
+ first?: InputMaybe<Scalars['Int']['input']>;
103333
+ id: Scalars['ID']['input'];
103334
+ sort?: InputMaybe<GraphStoreV2InferredProjectPromotedToAtlassianProjectSortInput>;
103335
+ };
103336
+ export type GraphStoreV2InferredProjectPromotedToAtlassianProjectInverseArgs = {
103337
+ after?: InputMaybe<Scalars['String']['input']>;
103338
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
103339
+ first?: InputMaybe<Scalars['Int']['input']>;
103340
+ id: Scalars['ID']['input'];
103341
+ sort?: InputMaybe<GraphStoreV2InferredProjectPromotedToAtlassianProjectSortInput>;
103342
+ };
102943
103343
  export type GraphStoreV2InferredTeamCollaboratesOnInferredProjectArgs = {
102944
103344
  after?: InputMaybe<Scalars['String']['input']>;
102945
103345
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -106822,6 +107222,9 @@ export type GraphStoreV2InferredProjectHasRelatedEntitySortInput = {
106822
107222
  export type GraphStoreV2InferredProjectLinksEntitySortInput = {
106823
107223
  lastModified?: InputMaybe<GraphStoreSortInput>;
106824
107224
  };
107225
+ export type GraphStoreV2InferredProjectPromotedToAtlassianProjectSortInput = {
107226
+ lastModified?: InputMaybe<GraphStoreSortInput>;
107227
+ };
106825
107228
  export type GraphStoreV2InferredTeamCollaboratesOnInferredProjectSortInput = {
106826
107229
  lastModified?: InputMaybe<GraphStoreSortInput>;
106827
107230
  };
@@ -118446,7 +118849,7 @@ export type GraphStoreV2SimplifiedInferredDecisionLinksEntityInverseEdge = {
118446
118849
  node?: Maybe<GraphStoreV2SimplifiedInferredDecisionLinksEntityInverseUnion>;
118447
118850
  };
118448
118851
  export type GraphStoreV2SimplifiedInferredDecisionLinksEntityInverseUnion = GraphStoreNodeResponse;
118449
- export type GraphStoreV2SimplifiedInferredDecisionLinksEntityUnion = ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | ExternalVideo | LoomVideo;
118852
+ export type GraphStoreV2SimplifiedInferredDecisionLinksEntityUnion = ConfluencePage | DevOpsDocument | DevOpsPullRequestDetails | ExternalDocument | ExternalPullRequest | ExternalVideo | LoomVideo;
118450
118853
  export type GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityConnection = HasPageInfo & {
118451
118854
  __typename?: 'GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityConnection';
118452
118855
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityEdge>>>;
@@ -118474,7 +118877,7 @@ export type GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityInverseEdge
118474
118877
  node?: Maybe<GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityInverseUnion>;
118475
118878
  };
118476
118879
  export type GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityInverseUnion = GraphStoreNodeResponse;
118477
- export type GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityUnion = ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | ExternalVideo | LoomVideo;
118880
+ export type GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityUnion = ConfluencePage | DevOpsDocument | DevOpsPullRequestDetails | ExternalDocument | ExternalPullRequest | ExternalVideo | LoomVideo;
118478
118881
  export type GraphStoreV2SimplifiedInferredProjectHasRelatedEntityConnection = HasPageInfo & {
118479
118882
  __typename?: 'GraphStoreV2SimplifiedInferredProjectHasRelatedEntityConnection';
118480
118883
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredProjectHasRelatedEntityEdge>>>;
@@ -118531,6 +118934,34 @@ export type GraphStoreV2SimplifiedInferredProjectLinksEntityInverseEdge = {
118531
118934
  };
118532
118935
  export type GraphStoreV2SimplifiedInferredProjectLinksEntityInverseUnion = GraphStoreNodeResponse;
118533
118936
  export type GraphStoreV2SimplifiedInferredProjectLinksEntityUnion = ConfluencePage | JiraIssue | JiraProject;
118937
+ export type GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectConnection = HasPageInfo & {
118938
+ __typename?: 'GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectConnection';
118939
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectEdge>>>;
118940
+ pageInfo: PageInfo;
118941
+ };
118942
+ export type GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectEdge = {
118943
+ __typename?: 'GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectEdge';
118944
+ createdAt: Scalars['DateTime']['output'];
118945
+ cursor?: Maybe<Scalars['String']['output']>;
118946
+ id: Scalars['ID']['output'];
118947
+ lastUpdated: Scalars['DateTime']['output'];
118948
+ node?: Maybe<GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectUnion>;
118949
+ };
118950
+ export type GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectInverseConnection = HasPageInfo & {
118951
+ __typename?: 'GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectInverseConnection';
118952
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectInverseEdge>>>;
118953
+ pageInfo: PageInfo;
118954
+ };
118955
+ export type GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectInverseEdge = {
118956
+ __typename?: 'GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectInverseEdge';
118957
+ createdAt: Scalars['DateTime']['output'];
118958
+ cursor?: Maybe<Scalars['String']['output']>;
118959
+ id: Scalars['ID']['output'];
118960
+ lastUpdated: Scalars['DateTime']['output'];
118961
+ node?: Maybe<GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectInverseUnion>;
118962
+ };
118963
+ export type GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectInverseUnion = GraphStoreNodeResponse;
118964
+ export type GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectUnion = TownsquareProject;
118534
118965
  export type GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectConnection = HasPageInfo & {
118535
118966
  __typename?: 'GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectConnection';
118536
118967
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectEdge>>>;
@@ -121791,6 +122222,7 @@ export type GravityDeliverySettings = {
121791
122222
  __typename?: 'GravityDeliverySettings';
121792
122223
  projectId: Scalars['ID']['output'];
121793
122224
  tableLayoutConfig: Array<GravityTableLayoutConfig>;
122225
+ tableSort?: Maybe<GravityDeliveryTableSort>;
121794
122226
  visibleFields: Array<Scalars['String']['output']>;
121795
122227
  };
121796
122228
  export type GravityDeliverySettingsResult = GravityDeliverySettingsSuccess | QueryError;
@@ -121798,6 +122230,15 @@ export type GravityDeliverySettingsSuccess = {
121798
122230
  __typename?: 'GravityDeliverySettingsSuccess';
121799
122231
  settings: GravityDeliverySettings;
121800
122232
  };
122233
+ export type GravityDeliveryTableSort = {
122234
+ __typename?: 'GravityDeliveryTableSort';
122235
+ field: Scalars['String']['output'];
122236
+ order: GravitySortOrder;
122237
+ };
122238
+ export type GravityDeliveryTableSortInput = {
122239
+ field: Scalars['String']['input'];
122240
+ order: GravitySortOrder;
122241
+ };
121801
122242
  export type GravityDetailedReactionResult = GravityDetailedReactionSuccess | QueryError;
121802
122243
  export type GravityDetailedReactionSuccess = {
121803
122244
  __typename?: 'GravityDetailedReactionSuccess';
@@ -121947,34 +122388,6 @@ export type GravityGetReactionsInput = {
121947
122388
  entity: GravityReactionEntityType;
121948
122389
  entityIds: Array<Scalars['ID']['input']>;
121949
122390
  };
121950
- export type GravityImportIdeasInput = {
121951
- csvContent?: InputMaybe<Scalars['String']['input']>;
121952
- imageContent?: InputMaybe<Scalars['String']['input']>;
121953
- imageMimeType?: InputMaybe<Scalars['String']['input']>;
121954
- pdfContent?: InputMaybe<Scalars['String']['input']>;
121955
- projectId?: InputMaybe<Scalars['String']['input']>;
121956
- sourceLabel?: InputMaybe<Scalars['String']['input']>;
121957
- sourceType: GravityImportSourceType;
121958
- textContent?: InputMaybe<Scalars['String']['input']>;
121959
- };
121960
- export type GravityImportIdeasMetadata = {
121961
- __typename?: 'GravityImportIdeasMetadata';
121962
- aiProcessingTimeMs: Scalars['Int']['output'];
121963
- itemsProcessed: Scalars['Int']['output'];
121964
- sourceType: GravityImportSourceType;
121965
- };
121966
- export type GravityImportIdeasResult = GravityImportIdeasSuccess | QueryError;
121967
- export type GravityImportIdeasSuccess = {
121968
- __typename?: 'GravityImportIdeasSuccess';
121969
- metadata: GravityImportIdeasMetadata;
121970
- suggestedIdeas: Array<GravitySuggestedIdea>;
121971
- };
121972
- export declare enum GravityImportSourceType {
121973
- Csv = "CSV",
121974
- Image = "IMAGE",
121975
- Pdf = "PDF",
121976
- Text = "TEXT"
121977
- }
121978
122391
  export type GravityMatchDeliveryInput = {
121979
122392
  deliveryIssueIdsOrKeys: Array<Scalars['ID']['input']>;
121980
122393
  discoveryIssueIdsOrKeys: Array<Scalars['ID']['input']>;
@@ -122061,12 +122474,6 @@ export type GravityStartAltaSessionInput = {
122061
122474
  agent: Scalars['String']['input'];
122062
122475
  prompt: Scalars['String']['input'];
122063
122476
  };
122064
- export type GravitySuggestedIdea = {
122065
- __typename?: 'GravitySuggestedIdea';
122066
- description: Scalars['String']['output'];
122067
- sourceReference: Scalars['String']['output'];
122068
- title: Scalars['String']['output'];
122069
- };
122070
122477
  export type GravityTableLayoutConfig = {
122071
122478
  __typename?: 'GravityTableLayoutConfig';
122072
122479
  field: Scalars['String']['output'];
@@ -122086,6 +122493,10 @@ export type GravityUpdateDeliverySettingsSuccess = {
122086
122493
  __typename?: 'GravityUpdateDeliverySettingsSuccess';
122087
122494
  settings: GravityDeliverySettings;
122088
122495
  };
122496
+ export type GravityUpdateDeliveryTableSortInput = {
122497
+ projectId: Scalars['ID']['input'];
122498
+ tableSort?: InputMaybe<GravityDeliveryTableSortInput>;
122499
+ };
122089
122500
  export type GravityUpdateDraftContentInput = {
122090
122501
  content: Scalars['String']['input'];
122091
122502
  draftId: Scalars['String']['input'];
@@ -157243,7 +157654,7 @@ export type JpdBoardViewConfig = {
157243
157654
  __typename?: 'JpdBoardViewConfig';
157244
157655
  cardSize?: Maybe<JpdViewCardSize>;
157245
157656
  colorConfig?: Maybe<JpdViewColorConfigSimple>;
157246
- columns?: Maybe<JpdViewLayoutConfig>;
157657
+ columns?: Maybe<JpdViewColumnsConfig>;
157247
157658
  connectionsFilters?: Maybe<JpdViewFilters>;
157248
157659
  connectionsLayoutType?: Maybe<JpdViewConnectionsLayoutType>;
157249
157660
  enabledAutoSave?: Maybe<Scalars['Boolean']['output']>;
@@ -157259,7 +157670,7 @@ export type JpdBoardViewConfig = {
157259
157670
  export type JpdBoardViewConfigInput = {
157260
157671
  cardSize?: InputMaybe<JpdViewCardSize>;
157261
157672
  colorConfig?: InputMaybe<JpdViewColorConfigSimpleInput>;
157262
- columns?: InputMaybe<JpdViewLayoutConfigInput>;
157673
+ columns?: InputMaybe<JpdViewColumnsConfigInput>;
157263
157674
  connectionsFilters?: InputMaybe<JpdViewFiltersInput>;
157264
157675
  connectionsLayoutType?: InputMaybe<JpdViewConnectionsLayoutType>;
157265
157676
  enabledAutoSave?: InputMaybe<Scalars['Boolean']['input']>;
@@ -157726,6 +158137,15 @@ export declare enum JpdViewColorStyle {
157726
158137
  Background = "BACKGROUND",
157727
158138
  Highlight = "HIGHLIGHT"
157728
158139
  }
158140
+ export type JpdViewColumnsConfig = {
158141
+ __typename?: 'JpdViewColumnsConfig';
158142
+ group: JpdViewLayoutGroup;
158143
+ hideEmpty?: Maybe<Scalars['Boolean']['output']>;
158144
+ };
158145
+ export type JpdViewColumnsConfigInput = {
158146
+ group: JpdViewLayoutGroupInput;
158147
+ hideEmpty?: InputMaybe<Scalars['Boolean']['input']>;
158148
+ };
157729
158149
  export type JpdViewCommentEvent = {
157730
158150
  __typename?: 'JpdViewCommentEvent';
157731
158151
  actionMadeAt: Scalars['String']['output'];
@@ -157818,16 +158238,23 @@ export declare enum JpdViewIssueLayoutTypeWithSummary {
157818
158238
  }
157819
158239
  export type JpdViewLayoutConfig = {
157820
158240
  __typename?: 'JpdViewLayoutConfig';
158241
+ groups: Array<JpdViewLayoutGroup>;
158242
+ hideEmpty?: Maybe<Scalars['Boolean']['output']>;
158243
+ };
158244
+ export type JpdViewLayoutConfigInput = {
158245
+ groups: Array<JpdViewLayoutGroupInput>;
158246
+ hideEmpty?: InputMaybe<Scalars['Boolean']['input']>;
158247
+ };
158248
+ export type JpdViewLayoutGroup = {
158249
+ __typename?: 'JpdViewLayoutGroup';
157821
158250
  connectionsFilters?: Maybe<JpdViewFilters>;
157822
158251
  field?: Maybe<Scalars['String']['output']>;
157823
- hideEmpty?: Maybe<Scalars['Boolean']['output']>;
157824
158252
  showMatchingConnections?: Maybe<Scalars['Boolean']['output']>;
157825
158253
  valuesAndOrder?: Maybe<Array<Scalars['String']['output']>>;
157826
158254
  };
157827
- export type JpdViewLayoutConfigInput = {
158255
+ export type JpdViewLayoutGroupInput = {
157828
158256
  connectionsFilters?: InputMaybe<JpdViewFiltersInput>;
157829
158257
  field: Scalars['String']['input'];
157830
- hideEmpty?: InputMaybe<Scalars['Boolean']['input']>;
157831
158258
  showMatchingConnections?: InputMaybe<Scalars['Boolean']['input']>;
157832
158259
  valuesAndOrder?: InputMaybe<Array<Scalars['String']['input']>>;
157833
158260
  };
@@ -172402,7 +172829,9 @@ export type MercuryCreateDateCustomFieldDefinitionInput = {
172402
172829
  };
172403
172830
  export type MercuryCreateDraftPlanInput = {
172404
172831
  fiscalYearStart: Scalars['String']['input'];
172832
+ name?: InputMaybe<Scalars['String']['input']>;
172405
172833
  organizationId: Scalars['ID']['input'];
172834
+ sourcePlanId?: InputMaybe<Scalars['ID']['input']>;
172406
172835
  };
172407
172836
  export type MercuryCreateDraftPlanPayload = Payload & {
172408
172837
  __typename?: 'MercuryCreateDraftPlanPayload';
@@ -175844,6 +176273,8 @@ export type MercuryMutationApi = {
175844
176273
  updateFocusAreaTargetDate?: Maybe<MercuryUpdateFocusAreaPayload>;
175845
176274
  updateFocusAreaTypeFieldConfigurations?: Maybe<MercuryUpdateFieldConfigurationsPayload>;
175846
176275
  updatePortfolioName?: Maybe<MercuryUpdatePortfolioPayload>;
176276
+ updatePortfolioPublishingState?: Maybe<MercuryUpdatePortfolioPublishingStatePayload>;
176277
+ updatePortfolioSettings?: Maybe<MercuryUpdatePortfolioSettingsPayload>;
175847
176278
  updateUserNotificationSettings?: Maybe<MercuryUpdateUserNotificationSettingsPayload>;
175848
176279
  validateFocusAreaArchival?: Maybe<MercuryArchiveFocusAreaValidationPayload>;
175849
176280
  validateFocusAreasForRanking?: Maybe<MercuryValidateFocusAreasForRankingPayload>;
@@ -176037,6 +176468,12 @@ export type MercuryMutationApiUpdateFocusAreaTypeFieldConfigurationsArgs = {
176037
176468
  export type MercuryMutationApiUpdatePortfolioNameArgs = {
176038
176469
  input: MercuryUpdatePortfolioNameInput;
176039
176470
  };
176471
+ export type MercuryMutationApiUpdatePortfolioPublishingStateArgs = {
176472
+ input: MercuryUpdatePortfolioPublishingStateInput;
176473
+ };
176474
+ export type MercuryMutationApiUpdatePortfolioSettingsArgs = {
176475
+ input: MercuryUpdatePortfolioSettingsInput;
176476
+ };
176040
176477
  export type MercuryMutationApiUpdateUserNotificationSettingsArgs = {
176041
176478
  input: MercuryUpdateUserNotificationSettingsInput;
176042
176479
  };
@@ -177354,6 +177791,7 @@ export type MercuryPlan = Node & {
177354
177791
  id: Scalars['ID']['output'];
177355
177792
  isSystemManaged: Scalars['Boolean']['output'];
177356
177793
  memberCountAllocationTotals: Array<MercuryPlanMemberCountAllocationComputedByPlan>;
177794
+ name?: Maybe<Scalars['String']['output']>;
177357
177795
  organizationId: Scalars['ID']['output'];
177358
177796
  organizationPlanAuthority?: Maybe<MercuryPlanOrganizationAuthority>;
177359
177797
  startDate: Scalars['Date']['output'];
@@ -177521,6 +177959,8 @@ export type MercuryPortfolio = {
177521
177959
  linkedFocusAreaSummary?: Maybe<MercuryPortfolioFocusAreaSummary>;
177522
177960
  name: Scalars['String']['output'];
177523
177961
  owner?: Maybe<User>;
177962
+ publishingState?: Maybe<MercuryPortfolioPublishingState>;
177963
+ settings?: Maybe<MercuryPortfolioSettings>;
177524
177964
  starred?: Maybe<Scalars['Boolean']['output']>;
177525
177965
  updatedBy?: Maybe<User>;
177526
177966
  updatedDate?: Maybe<Scalars['String']['output']>;
@@ -177574,6 +178014,24 @@ export type MercuryPortfolioHumanResourceAllocations = {
177574
178014
  totalAsPercentageOfBudget?: Maybe<Scalars['BigDecimal']['output']>;
177575
178015
  totalPositions?: Maybe<Scalars['BigDecimal']['output']>;
177576
178016
  };
178017
+ export declare enum MercuryPortfolioPublishingState {
178018
+ Archived = "ARCHIVED",
178019
+ Draft = "DRAFT",
178020
+ Published = "PUBLISHED"
178021
+ }
178022
+ export type MercuryPortfolioSettings = {
178023
+ __typename?: 'MercuryPortfolioSettings';
178024
+ filter?: Maybe<Scalars['String']['output']>;
178025
+ sort?: Maybe<Scalars['String']['output']>;
178026
+ visualizationSettings?: Maybe<Scalars['String']['output']>;
178027
+ visualizationType?: Maybe<Scalars['String']['output']>;
178028
+ };
178029
+ export type MercuryPortfolioSettingsInput = {
178030
+ filter?: InputMaybe<Scalars['String']['input']>;
178031
+ sort?: InputMaybe<Scalars['String']['input']>;
178032
+ visualizationSettings?: InputMaybe<Scalars['String']['input']>;
178033
+ visualizationType?: InputMaybe<Scalars['String']['input']>;
178034
+ };
177577
178035
  export type MercuryPortfolioSort = {
177578
178036
  field: MercuryPortfolioSortField;
177579
178037
  order: SortOrder;
@@ -180759,6 +181217,26 @@ export type MercuryUpdatePortfolioPayload = Payload & {
180759
181217
  success: Scalars['Boolean']['output'];
180760
181218
  updatedPortfolio?: Maybe<MercuryPortfolio>;
180761
181219
  };
181220
+ export type MercuryUpdatePortfolioPublishingStateInput = {
181221
+ id: Scalars['ID']['input'];
181222
+ publishingState: MercuryPortfolioPublishingState;
181223
+ };
181224
+ export type MercuryUpdatePortfolioPublishingStatePayload = Payload & {
181225
+ __typename?: 'MercuryUpdatePortfolioPublishingStatePayload';
181226
+ errors?: Maybe<Array<MutationError>>;
181227
+ success: Scalars['Boolean']['output'];
181228
+ updatedPortfolio?: Maybe<MercuryPortfolio>;
181229
+ };
181230
+ export type MercuryUpdatePortfolioSettingsInput = {
181231
+ id: Scalars['ID']['input'];
181232
+ settings: MercuryPortfolioSettingsInput;
181233
+ };
181234
+ export type MercuryUpdatePortfolioSettingsPayload = Payload & {
181235
+ __typename?: 'MercuryUpdatePortfolioSettingsPayload';
181236
+ errors?: Maybe<Array<MutationError>>;
181237
+ success: Scalars['Boolean']['output'];
181238
+ updatedPortfolio?: Maybe<MercuryPortfolio>;
181239
+ };
180762
181240
  export type MercuryUpdateRateCardChangeInput = {
180763
181241
  cloudId: Scalars['ID']['input'];
180764
181242
  effectiveStartDate?: InputMaybe<Scalars['Date']['input']>;
@@ -181527,6 +182005,7 @@ export type Mutation = {
181527
182005
  admin_createAuditLogBackgroundQuery?: Maybe<AdminAuditLogBackgroundQueryPayload>;
181528
182006
  admin_createAuditLogBackgroundQueryV2?: Maybe<AdminAuditLogBackgroundQueryPayload>;
181529
182007
  admin_createInvitePolicy?: Maybe<AdminCreateInvitePolicyResponsePayload>;
182008
+ admin_createOAuthClient?: Maybe<AdminOAuthClientSecretPayload>;
181530
182009
  admin_createOutboundAuthService?: Maybe<AdminCreateOutboundAuthServicePayload>;
181531
182010
  admin_deactivateUser?: Maybe<AdminDeactivateResponsePayload>;
181532
182011
  admin_deleteAccessUrl?: Maybe<AdminAccessUrlDeletionResponsePayload>;
@@ -181538,7 +182017,9 @@ export type Mutation = {
181538
182017
  admin_registerNewDataSourceId?: Maybe<AdminRegisterNewDataSourceIdPayload>;
181539
182018
  admin_releaseImpersonationUser?: Maybe<AdminReleaseImpersonationResponsePayload>;
181540
182019
  admin_removeUser?: Maybe<AdminRemoveUserResponsePayload>;
182020
+ admin_revokeOAuthClient?: Maybe<AdminRevokeOAuthClientPayload>;
181541
182021
  admin_revokeRole?: Maybe<AdminRevokeRoleResponsePayload>;
182022
+ admin_rotateOAuthClientSecret?: Maybe<AdminOAuthClientSecretPayload>;
181542
182023
  admin_scimRuleCreate?: Maybe<AdminScimRuleMutationPayload>;
181543
182024
  admin_scimRuleDelete?: Maybe<AdminScimRuleMutationPayload>;
181544
182025
  admin_scimRuleUpdate?: Maybe<AdminScimRuleMutationPayload>;
@@ -181550,6 +182031,7 @@ export type Mutation = {
181550
182031
  admin_updateAiPolicy?: Maybe<AdminUpdateAiPolicyResponsePayload>;
181551
182032
  admin_updateAuditLogBackgroundQuery?: Maybe<AdminAuditLogBackgroundQueryPayload>;
181552
182033
  admin_updateAuditLogBackgroundQueryV2?: Maybe<AdminAuditLogBackgroundQueryPayload>;
182034
+ admin_updateEnforceBoundarySetting?: Maybe<AdminUpdateEnforceBoundarySettingPayload>;
181553
182035
  admin_updateInvitePolicy?: Maybe<AdminUpdateInvitePolicyResponsePayload>;
181554
182036
  agentAI_panelRefresh?: Maybe<AgentAiPanelRefreshResult>;
181555
182037
  agentStudio_addGroupsToCreatePermission?: Maybe<AgentStudioAddGroupsToCreatePermissionPayload>;
@@ -181672,6 +182154,7 @@ export type Mutation = {
181672
182154
  artifact_authorContent?: Maybe<ArtifactAuthorContentPayload>;
181673
182155
  artifact_createArtifact?: Maybe<ArtifactCreatePayload>;
181674
182156
  artifact_createContent?: Maybe<ArtifactCreateContentPayload>;
182157
+ artifact_updateArtifact?: Maybe<ArtifactUpdatePayload>;
181675
182158
  assetsDM_addDataDictionary?: Maybe<AssetsDmAddDataDictionaryResponse>;
181676
182159
  assetsDM_addDefaultAttributeMapping?: Maybe<AssetsDmAddDefaultAttributeMappingResponse>;
181677
182160
  assetsDM_associateObjectTag?: Maybe<AssetsDmObjectTagAssociateResponse>;
@@ -182371,6 +182854,8 @@ export type Mutation = {
182371
182854
  goals_updateAppPermissionPolicies?: Maybe<TownsquareUpdateGoalsAppPermissionPoliciesPayload>;
182372
182855
  goals_updateSlackSubscription?: Maybe<TownsquareGoalsUpdateSlackSubscriptionPayload>;
182373
182856
  grantContentAccess?: Maybe<GrantContentAccessPayload>;
182857
+ graphInference_ensureWeeklyReviewPack?: Maybe<GraphInferenceReviewPackSummary>;
182858
+ graphInference_generateReviewPack?: Maybe<GraphInferenceReviewPackSummary>;
182374
182859
  graphInference_inferenceAppAdd?: Maybe<GraphInferenceInferenceAppMutationPayload>;
182375
182860
  graphInference_inferenceAppAddV2?: Maybe<GraphInferenceInferenceAppMutationPayloadV2>;
182376
182861
  graphInference_inferenceAppAddV3?: Maybe<GraphInferenceInferenceAppMutationPayloadV3>;
@@ -182383,6 +182868,8 @@ export type Mutation = {
182383
182868
  graphInference_inferenceEval?: Maybe<GraphInferenceInferenceEvalResponse>;
182384
182869
  graphInference_inferenceEvalStart?: Maybe<GraphInferenceInferenceEvalStartResponse>;
182385
182870
  graphInference_inferencePreview?: Maybe<GraphInferenceInferencePreviewResponse>;
182871
+ graphInference_inlineEvalStart?: Maybe<GraphInferenceInlineEvalStartResponse>;
182872
+ graphInference_submitReview?: Maybe<GraphInferenceReviewPackSummary>;
182386
182873
  graphIntegration_actionAdminManagementUpdateActionConfiguration?: Maybe<GraphIntegrationActionAdminManagementUpdateActionConfigurationPayload>;
182387
182874
  graphIntegration_addTwgCapabilityContainer?: Maybe<GraphIntegrationAddTwgCapabilityContainerPayload>;
182388
182875
  graphIntegration_createDataConnectorConnection?: Maybe<GraphIntegrationCreateConnectionPayload>;
@@ -182582,6 +183069,7 @@ export type Mutation = {
182582
183069
  gravity_setViewArrangement?: Maybe<GravityViewArrangementPayload>;
182583
183070
  gravity_startAltaSession?: Maybe<GravityAltaSessionPayload>;
182584
183071
  gravity_updateDeliverySettings?: Maybe<GravityUpdateDeliverySettingsPayload>;
183072
+ gravity_updateDeliveryTableSort?: Maybe<GravityUpdateDeliverySettingsPayload>;
182585
183073
  gravity_updateDraftContent?: Maybe<GravityDraftPayload>;
182586
183074
  gravity_updateView?: Maybe<JpdView>;
182587
183075
  gravity_upsertAction?: Maybe<GravityActionPayload>;
@@ -183065,6 +183553,7 @@ export type Mutation = {
183065
183553
  projects_edit?: Maybe<TownsquareProjectsEditPayload>;
183066
183554
  projects_editComment?: Maybe<TownsquareProjectsEditCommentPayload>;
183067
183555
  projects_editDecision?: Maybe<TownsquareProjectsEditDecisionPayload>;
183556
+ projects_editDraftUpdate?: Maybe<TownsquareProjectsEditDraftUpdatePayload>;
183068
183557
  projects_editDropdownCustomField?: Maybe<TownsquareProjectsEditDropdownCustomFieldPayload>;
183069
183558
  projects_editLearning?: Maybe<TownsquareProjectsEditLearningPayload>;
183070
183559
  projects_editLink?: Maybe<TownsquareProjectsEditLinkPayload>;
@@ -183483,6 +183972,9 @@ export type MutationAdmin_CreateInvitePolicyArgs = {
183483
183972
  createInvitePolicyInput?: InputMaybe<AdminCreateInvitePolicyInput>;
183484
183973
  orgId: Scalars['ID']['input'];
183485
183974
  };
183975
+ export type MutationAdmin_CreateOAuthClientArgs = {
183976
+ input: AdminCreateOAuthClientInput;
183977
+ };
183486
183978
  export type MutationAdmin_CreateOutboundAuthServiceArgs = {
183487
183979
  connectorSyncType?: InputMaybe<Scalars['String']['input']>;
183488
183980
  datasourceId: Scalars['ID']['input'];
@@ -183527,11 +184019,17 @@ export type MutationAdmin_RemoveUserArgs = {
183527
184019
  directoryId: Scalars['String']['input'];
183528
184020
  orgId: Scalars['String']['input'];
183529
184021
  };
184022
+ export type MutationAdmin_RevokeOAuthClientArgs = {
184023
+ input: AdminRevokeOAuthClientInput;
184024
+ };
183530
184025
  export type MutationAdmin_RevokeRoleArgs = {
183531
184026
  directoryId?: InputMaybe<Scalars['ID']['input']>;
183532
184027
  orgId: Scalars['ID']['input'];
183533
184028
  revokeRoleInput?: InputMaybe<AdminRevokeRoleInput>;
183534
184029
  };
184030
+ export type MutationAdmin_RotateOAuthClientSecretArgs = {
184031
+ input: AdminRotateOAuthClientSecretInput;
184032
+ };
183535
184033
  export type MutationAdmin_ScimRuleCreateArgs = {
183536
184034
  input: AdminScimRuleCreateInput;
183537
184035
  orgId: Scalars['ID']['input'];
@@ -183577,6 +184075,9 @@ export type MutationAdmin_UpdateAuditLogBackgroundQueryArgs = {
183577
184075
  export type MutationAdmin_UpdateAuditLogBackgroundQueryV2Args = {
183578
184076
  input: AdminAuditLogUpdateBackgroundQueryInput;
183579
184077
  };
184078
+ export type MutationAdmin_UpdateEnforceBoundarySettingArgs = {
184079
+ input: AdminUpdateEnforceBoundarySettingInput;
184080
+ };
183580
184081
  export type MutationAdmin_UpdateInvitePolicyArgs = {
183581
184082
  orgId: Scalars['ID']['input'];
183582
184083
  policyId: Scalars['ID']['input'];
@@ -184011,6 +184512,9 @@ export type MutationArtifact_CreateArtifactArgs = {
184011
184512
  export type MutationArtifact_CreateContentArgs = {
184012
184513
  input: ArtifactCreateContentInput;
184013
184514
  };
184515
+ export type MutationArtifact_UpdateArtifactArgs = {
184516
+ input: ArtifactUpdateInput;
184517
+ };
184014
184518
  export type MutationAssetsDm_AddDataDictionaryArgs = {
184015
184519
  cloudId: Scalars['ID']['input'];
184016
184520
  payload: AssetsDmAddDataDictionaryInput;
@@ -186575,6 +187079,9 @@ export type MutationGoals_UpdateSlackSubscriptionArgs = {
186575
187079
  export type MutationGrantContentAccessArgs = {
186576
187080
  grantContentAccessInput: GrantContentAccessInput;
186577
187081
  };
187082
+ export type MutationGraphInference_GenerateReviewPackArgs = {
187083
+ input: GraphInferenceGenerateReviewPackInput;
187084
+ };
186578
187085
  export type MutationGraphInference_InferenceAppAddArgs = {
186579
187086
  input: GraphInferenceInferenceAppAddInput;
186580
187087
  };
@@ -186611,6 +187118,12 @@ export type MutationGraphInference_InferenceEvalStartArgs = {
186611
187118
  export type MutationGraphInference_InferencePreviewArgs = {
186612
187119
  input: GraphInferenceInferencePreviewInput;
186613
187120
  };
187121
+ export type MutationGraphInference_InlineEvalStartArgs = {
187122
+ input: GraphInferenceInlineEvalStartInput;
187123
+ };
187124
+ export type MutationGraphInference_SubmitReviewArgs = {
187125
+ input: GraphInferenceSubmitReviewInput;
187126
+ };
186614
187127
  export type MutationGraphIntegration_ActionAdminManagementUpdateActionConfigurationArgs = {
186615
187128
  input: GraphIntegrationActionAdminManagementUpdateActionConfigurationInput;
186616
187129
  };
@@ -187223,6 +187736,10 @@ export type MutationGravity_UpdateDeliverySettingsArgs = {
187223
187736
  cloudId: Scalars['ID']['input'];
187224
187737
  input: GravityUpdateDeliverySettingsInput;
187225
187738
  };
187739
+ export type MutationGravity_UpdateDeliveryTableSortArgs = {
187740
+ cloudId: Scalars['ID']['input'];
187741
+ input: GravityUpdateDeliveryTableSortInput;
187742
+ };
187226
187743
  export type MutationGravity_UpdateDraftContentArgs = {
187227
187744
  cloudId: Scalars['ID']['input'];
187228
187745
  input: GravityUpdateDraftContentInput;
@@ -188824,6 +189341,9 @@ export type MutationProjects_EditCommentArgs = {
188824
189341
  export type MutationProjects_EditDecisionArgs = {
188825
189342
  input: TownsquareProjectsEditDecisionInput;
188826
189343
  };
189344
+ export type MutationProjects_EditDraftUpdateArgs = {
189345
+ input: TownsquareProjectsEditDraftUpdateInput;
189346
+ };
188827
189347
  export type MutationProjects_EditDropdownCustomFieldArgs = {
188828
189348
  input: TownsquareProjectsEditDropdownCustomFieldInput;
188829
189349
  };
@@ -193830,6 +194350,8 @@ export type Query = {
193830
194350
  admin_identityProviderDirectorySamlConfiguration?: Maybe<AdminSamlConfiguration>;
193831
194351
  admin_invitePolicies?: Maybe<AdminInvitePolicyConnection>;
193832
194352
  admin_licenseUsage?: Maybe<AdminLicenseDataConnection>;
194353
+ admin_oauthClients?: Maybe<AdminOAuthClientConnection>;
194354
+ admin_oauthScopes?: Maybe<AdminOAuthScopeConnection>;
193833
194355
  admin_org?: Maybe<AdminOrganization>;
193834
194356
  admin_orgDetails?: Maybe<AdminOrgDetails>;
193835
194357
  admin_orgPolicies?: Maybe<AdminOrgPolicyConnection>;
@@ -194789,7 +195311,11 @@ export type Query = {
194789
195311
  graphInference_inferenceQualityMetrics?: Maybe<GraphInferenceInferenceQualityMetricsResponse>;
194790
195312
  graphInference_inferredProjectMe?: Maybe<GraphInferenceInferredProjectMeResponse>;
194791
195313
  graphInference_inferredProjectSummaries?: Maybe<GraphInferenceInferredProjectSummariesResponse>;
195314
+ graphInference_inlineEvalContract?: Maybe<GraphInferenceInlineEvalContractResponse>;
195315
+ graphInference_inlineEvalRun?: Maybe<GraphInferenceInlineEvalRunResponse>;
194792
195316
  graphInference_insights?: Maybe<GraphInferenceInsightsResponse>;
195317
+ graphInference_reviewPack?: Maybe<GraphInferenceReviewPackDetail>;
195318
+ graphInference_reviewPacks?: Maybe<Array<GraphInferenceReviewPackSummary>>;
194793
195319
  graphIntegration_availableTwgCapabilityContainers?: Maybe<Array<Maybe<GraphIntegrationTwgCapabilityContainerMeta>>>;
194794
195320
  graphIntegration_cloneCandidateSkill?: Maybe<GraphIntegrationSkill>;
194795
195321
  graphIntegration_componentDirectoryDimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
@@ -195541,6 +196067,8 @@ export type Query = {
195541
196067
  graphStoreV2_inferredProjectHasRelatedEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectHasRelatedEntityInverseConnection>;
195542
196068
  graphStoreV2_inferredProjectLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityConnection>;
195543
196069
  graphStoreV2_inferredProjectLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityInverseConnection>;
196070
+ graphStoreV2_inferredProjectPromotedToAtlassianProject?: Maybe<GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectConnection>;
196071
+ graphStoreV2_inferredProjectPromotedToAtlassianProjectInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectInverseConnection>;
195544
196072
  graphStoreV2_inferredTeamCollaboratesOnInferredProject?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectConnection>;
195545
196073
  graphStoreV2_inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
195546
196074
  graphStoreV2_inferredTeamLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredTeamLinksEntityConnection>;
@@ -196197,6 +196725,8 @@ export type Query = {
196197
196725
  graphStore_inferredProjectHasRelatedEntityInverse?: Maybe<GraphStoreSimplifiedInferredProjectHasRelatedEntityInverseConnection>;
196198
196726
  graphStore_inferredProjectLinksEntity?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityConnection>;
196199
196727
  graphStore_inferredProjectLinksEntityInverse?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityInverseConnection>;
196728
+ graphStore_inferredProjectPromotedToAtlassianProject?: Maybe<GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectConnection>;
196729
+ graphStore_inferredProjectPromotedToAtlassianProjectInverse?: Maybe<GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectInverseConnection>;
196200
196730
  graphStore_inferredTeamCollaboratesOnInferredProject?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectConnection>;
196201
196731
  graphStore_inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
196202
196732
  graphStore_inferredTeamLinksEntity?: Maybe<GraphStoreSimplifiedInferredTeamLinksEntityConnection>;
@@ -196996,7 +197526,6 @@ export type Query = {
196996
197526
  gravity_draft?: Maybe<GravityDraft>;
196997
197527
  gravity_drafts?: Maybe<Array<GravityDraft>>;
196998
197528
  gravity_exportViewAsTemplate?: Maybe<GravityExportViewAsTemplateResult>;
196999
- gravity_importIdeas: GravityImportIdeasResult;
197000
197529
  gravity_matchDelivery?: Maybe<GravityDeliveryMatchingResult>;
197001
197530
  gravity_onViewArrangementChanged?: Maybe<GravityViewArrangementChangedEvent>;
197002
197531
  gravity_reactions?: Maybe<GravityReactionsResult>;
@@ -197676,6 +198205,8 @@ export type Query = {
197676
198205
  supportInquiry_channelsIdentityHash?: Maybe<Scalars['String']['output']>;
197677
198206
  supportInquiry_channelsIdentityHashByClientName?: Maybe<Scalars['String']['output']>;
197678
198207
  supportInquiry_userContext?: Maybe<SupportInquiryUserContext>;
198208
+ surveys_categories?: Maybe<SurveysCategoriesResult>;
198209
+ surveys_survey?: Maybe<SurveysDetailsResult>;
197679
198210
  surveys_surveysByProject?: Maybe<SurveysListResult>;
197680
198211
  tags_getAssignedLabels?: Maybe<Array<TagsAssignedLabel>>;
197681
198212
  tags_getLabelAssignments?: Maybe<Array<TagsLabelAssignment>>;
@@ -197697,6 +198228,7 @@ export type Query = {
197697
198228
  teamworkGraph_userDirectReports?: Maybe<GraphStoreCypherQueryV2Connection>;
197698
198229
  teamworkGraph_userManager?: Maybe<GraphStoreCypherQueryV2Connection>;
197699
198230
  teamworkGraph_userReportChain?: Maybe<GraphStoreCypherQueryV2Connection>;
198231
+ teamworkGraph_userReportChainV2?: Maybe<GraphStoreCypherQueryV2Connection>;
197700
198232
  teamworkGraph_userTaggedIn?: Maybe<GraphStoreCypherQueryV2Connection>;
197701
198233
  teamworkGraph_userTeams?: Maybe<GraphStoreCypherQueryV2Connection>;
197702
198234
  teamworkGraph_userTopRecentMentioners?: Maybe<GraphStoreCypherQueryV2Connection>;
@@ -197989,6 +198521,20 @@ export type QueryAdmin_LicenseUsageArgs = {
197989
198521
  last?: InputMaybe<Scalars['Int']['input']>;
197990
198522
  orgId: Scalars['ID']['input'];
197991
198523
  };
198524
+ export type QueryAdmin_OauthClientsArgs = {
198525
+ after?: InputMaybe<Scalars['String']['input']>;
198526
+ before?: InputMaybe<Scalars['String']['input']>;
198527
+ filter?: InputMaybe<AdminOAuthClientFilter>;
198528
+ first?: InputMaybe<Scalars['Int']['input']>;
198529
+ last?: InputMaybe<Scalars['Int']['input']>;
198530
+ orgId: Scalars['ID']['input'];
198531
+ sortBy?: InputMaybe<AdminOAuthClientSortInput>;
198532
+ };
198533
+ export type QueryAdmin_OauthScopesArgs = {
198534
+ after?: InputMaybe<Scalars['String']['input']>;
198535
+ first?: InputMaybe<Scalars['Int']['input']>;
198536
+ orgId: Scalars['ID']['input'];
198537
+ };
197992
198538
  export type QueryAdmin_OrgArgs = {
197993
198539
  id: Scalars['ID']['input'];
197994
198540
  };
@@ -202537,9 +203083,21 @@ export type QueryGraphInference_InferredProjectSummariesArgs = {
202537
203083
  firstEntities?: InputMaybe<Scalars['Int']['input']>;
202538
203084
  updatedAfter?: InputMaybe<Scalars['DateTime']['input']>;
202539
203085
  };
203086
+ export type QueryGraphInference_InlineEvalContractArgs = {
203087
+ input: GraphInferenceInlineEvalContractInput;
203088
+ };
203089
+ export type QueryGraphInference_InlineEvalRunArgs = {
203090
+ runId: Scalars['ID']['input'];
203091
+ };
202540
203092
  export type QueryGraphInference_InsightsArgs = {
202541
203093
  input: GraphInferenceTargetInsightsInput;
202542
203094
  };
203095
+ export type QueryGraphInference_ReviewPackArgs = {
203096
+ id: Scalars['ID']['input'];
203097
+ };
203098
+ export type QueryGraphInference_ReviewPacksArgs = {
203099
+ first?: Scalars['Int']['input'];
203100
+ };
202543
203101
  export type QueryGraphIntegration_AvailableTwgCapabilityContainersArgs = {
202544
203102
  contextAri: Scalars['ID']['input'];
202545
203103
  includeEnabledToolCount?: Scalars['Boolean']['input'];
@@ -202559,6 +203117,7 @@ export type QueryGraphIntegration_ComponentDirectoryItemsArgs = {
202559
203117
  after?: InputMaybe<Scalars['String']['input']>;
202560
203118
  authTypes?: InputMaybe<Array<GraphIntegrationDirectoryAuthType>>;
202561
203119
  cloudId: Scalars['ID']['input'];
203120
+ contextAri?: InputMaybe<Scalars['ID']['input']>;
202562
203121
  dimensionIds?: InputMaybe<Array<Scalars['ID']['input']>>;
202563
203122
  first?: InputMaybe<Scalars['Int']['input']>;
202564
203123
  relevantFor?: InputMaybe<Array<GraphIntegrationDirectoryItemType>>;
@@ -207724,6 +208283,20 @@ export type QueryGraphStoreV2_InferredProjectLinksEntityInverseArgs = {
207724
208283
  id: Scalars['ID']['input'];
207725
208284
  sort?: InputMaybe<GraphStoreV2InferredProjectLinksEntitySortInput>;
207726
208285
  };
208286
+ export type QueryGraphStoreV2_InferredProjectPromotedToAtlassianProjectArgs = {
208287
+ after?: InputMaybe<Scalars['String']['input']>;
208288
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
208289
+ first?: InputMaybe<Scalars['Int']['input']>;
208290
+ id: Scalars['ID']['input'];
208291
+ sort?: InputMaybe<GraphStoreV2InferredProjectPromotedToAtlassianProjectSortInput>;
208292
+ };
208293
+ export type QueryGraphStoreV2_InferredProjectPromotedToAtlassianProjectInverseArgs = {
208294
+ after?: InputMaybe<Scalars['String']['input']>;
208295
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
208296
+ first?: InputMaybe<Scalars['Int']['input']>;
208297
+ id: Scalars['ID']['input'];
208298
+ sort?: InputMaybe<GraphStoreV2InferredProjectPromotedToAtlassianProjectSortInput>;
208299
+ };
207727
208300
  export type QueryGraphStoreV2_InferredTeamCollaboratesOnInferredProjectArgs = {
207728
208301
  after?: InputMaybe<Scalars['String']['input']>;
207729
208302
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -212712,6 +213285,22 @@ export type QueryGraphStore_InferredProjectLinksEntityInverseArgs = {
212712
213285
  queryContext?: InputMaybe<Scalars['String']['input']>;
212713
213286
  sort?: InputMaybe<GraphStoreInferredProjectLinksEntitySortInput>;
212714
213287
  };
213288
+ export type QueryGraphStore_InferredProjectPromotedToAtlassianProjectArgs = {
213289
+ after?: InputMaybe<Scalars['String']['input']>;
213290
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
213291
+ first?: InputMaybe<Scalars['Int']['input']>;
213292
+ id: Scalars['ID']['input'];
213293
+ queryContext?: InputMaybe<Scalars['String']['input']>;
213294
+ sort?: InputMaybe<GraphStoreInferredProjectPromotedToAtlassianProjectSortInput>;
213295
+ };
213296
+ export type QueryGraphStore_InferredProjectPromotedToAtlassianProjectInverseArgs = {
213297
+ after?: InputMaybe<Scalars['String']['input']>;
213298
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
213299
+ first?: InputMaybe<Scalars['Int']['input']>;
213300
+ id: Scalars['ID']['input'];
213301
+ queryContext?: InputMaybe<Scalars['String']['input']>;
213302
+ sort?: InputMaybe<GraphStoreInferredProjectPromotedToAtlassianProjectSortInput>;
213303
+ };
212715
213304
  export type QueryGraphStore_InferredTeamCollaboratesOnInferredProjectArgs = {
212716
213305
  after?: InputMaybe<Scalars['String']['input']>;
212717
213306
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -218856,10 +219445,6 @@ export type QueryGravity_ExportViewAsTemplateArgs = {
218856
219445
  projectId: Scalars['ID']['input'];
218857
219446
  viewId: Scalars['ID']['input'];
218858
219447
  };
218859
- export type QueryGravity_ImportIdeasArgs = {
218860
- cloudId: Scalars['ID']['input'];
218861
- input: GravityImportIdeasInput;
218862
- };
218863
219448
  export type QueryGravity_MatchDeliveryArgs = {
218864
219449
  cloudId: Scalars['ID']['input'];
218865
219450
  input: GravityMatchDeliveryInput;
@@ -221609,6 +222194,14 @@ export type QuerySuggestedSpacesArgs = {
221609
222194
  export type QuerySupportInquiry_ChannelsIdentityHashByClientNameArgs = {
221610
222195
  request?: InputMaybe<SupportInquiryChannelPlatformIdentityHashRequest>;
221611
222196
  };
222197
+ export type QuerySurveys_CategoriesArgs = {
222198
+ jiraProjectARI: Scalars['ID']['input'];
222199
+ usedOnly?: InputMaybe<Scalars['Boolean']['input']>;
222200
+ };
222201
+ export type QuerySurveys_SurveyArgs = {
222202
+ jiraProjectARI: Scalars['ID']['input'];
222203
+ surveyId: Scalars['ID']['input'];
222204
+ };
221612
222205
  export type QuerySurveys_SurveysByProjectArgs = {
221613
222206
  jiraProjectARI: Scalars['ID']['input'];
221614
222207
  };
@@ -221699,6 +222292,9 @@ export type QueryTeamworkGraph_UserManagerArgs = {
221699
222292
  export type QueryTeamworkGraph_UserReportChainArgs = {
221700
222293
  userId: Scalars['ID']['input'];
221701
222294
  };
222295
+ export type QueryTeamworkGraph_UserReportChainV2Args = {
222296
+ userId: Scalars['ID']['input'];
222297
+ };
221702
222298
  export type QueryTeamworkGraph_UserTaggedInArgs = {
221703
222299
  after?: InputMaybe<Scalars['String']['input']>;
221704
222300
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -222765,6 +223361,7 @@ export type RadarSkillAssignmentMetadata = {
222765
223361
  classificationType?: Maybe<RadarSkillClassificationType>;
222766
223362
  reasoning?: Maybe<Scalars['String']['output']>;
222767
223363
  skillId: Scalars['ID']['output'];
223364
+ sources?: Maybe<Array<RadarSkillSource>>;
222768
223365
  verificationStatus?: Maybe<RadarSkillVerificationStatus>;
222769
223366
  verifiedAt?: Maybe<Scalars['DateTime']['output']>;
222770
223367
  verifiedByAaid?: Maybe<Scalars['ID']['output']>;
@@ -222791,6 +223388,12 @@ export type RadarSkillMappingStatusUpdateInput = {
222791
223388
  status: RadarSkillVerificationStatus;
222792
223389
  workerSkill: Scalars['ID']['input'];
222793
223390
  };
223391
+ export type RadarSkillSource = {
223392
+ __typename?: 'RadarSkillSource';
223393
+ source?: Maybe<RadarSkillSourceObject>;
223394
+ sourceId: Scalars['ID']['output'];
223395
+ };
223396
+ export type RadarSkillSourceObject = ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceWhiteboard | ExternalComment | ExternalCommit | ExternalPullRequest | JiraIssue | TownsquareProject;
222794
223397
  export declare enum RadarSkillVerificationStatus {
222795
223398
  Declined = "DECLINED",
222796
223399
  Unverified = "UNVERIFIED",
@@ -223072,6 +223675,7 @@ export type RadarWorkerSkill = Node & {
223072
223675
  id: Scalars['ID']['output'];
223073
223676
  skill?: Maybe<RadarSkill>;
223074
223677
  skillId: Scalars['ID']['output'];
223678
+ sources?: Maybe<Array<RadarSkillSource>>;
223075
223679
  verificationStatus: RadarSkillVerificationStatus;
223076
223680
  verifiedAt?: Maybe<Scalars['DateTime']['output']>;
223077
223681
  workerId: Scalars['ID']['output'];
@@ -224334,6 +224938,7 @@ export type RoleAssignmentPrincipalInput = {
224334
224938
  };
224335
224939
  export declare enum RoleAssignmentPrincipalType {
224336
224940
  AccessClass = "ACCESS_CLASS",
224941
+ Agent = "AGENT",
224337
224942
  App = "APP",
224338
224943
  Group = "GROUP",
224339
224944
  User = "USER"
@@ -234091,6 +234696,11 @@ export declare enum SurveysAccess {
234091
234696
  ViewEditRestricted = "VIEW_EDIT_RESTRICTED",
234092
234697
  ViewOpenEditRestricted = "VIEW_OPEN_EDIT_RESTRICTED"
234093
234698
  }
234699
+ export type SurveysCategoriesResponse = {
234700
+ __typename?: 'SurveysCategoriesResponse';
234701
+ categories: Array<Scalars['String']['output']>;
234702
+ };
234703
+ export type SurveysCategoriesResult = SurveysCategoriesResponse | SurveysQueryError;
234094
234704
  export type SurveysDetailsResponse = {
234095
234705
  __typename?: 'SurveysDetailsResponse';
234096
234706
  captureEmail: Scalars['Boolean']['output'];
@@ -234116,6 +234726,7 @@ export type SurveysDetailsResponse = {
234116
234726
  uniqueResponses: Scalars['Boolean']['output'];
234117
234727
  updatedAt?: Maybe<Scalars['String']['output']>;
234118
234728
  };
234729
+ export type SurveysDetailsResult = SurveysDetailsResponse | SurveysQueryError;
234119
234730
  export declare enum SurveysEffectivePermissionLevel {
234120
234731
  Edit = "EDIT",
234121
234732
  None = "NONE",
@@ -236048,7 +236659,7 @@ export declare enum TownsquareAccessControlCapability {
236048
236659
  Administer = "ADMINISTER",
236049
236660
  Create = "CREATE"
236050
236661
  }
236051
- export type TownsquareAccessPrincipal = AppUser | AtlassianAccountUser | CustomerUser;
236662
+ export type TownsquareAccessPrincipal = AppUser | AtlassianAccountUser | CustomerUser | TeamV2;
236052
236663
  export type TownsquareActivityChange = TownsquareEditorsAddedChange | TownsquareEditorsRemovedChange | TownsquareFollowersAddedChange | TownsquareFollowersRemovedChange | TownsquareGoalArchivedChange | TownsquareGoalCreatedChange | TownsquareGoalDescriptionMeasurementUpdatedChange | TownsquareGoalDescriptionUpdatedChange | TownsquareGoalDescriptionWhyUpdatedChange | TownsquareGoalOwnerUpdatedChange | TownsquareGoalProgressTypeChange | TownsquareGoalRenamedChange | TownsquareGoalRestoredChange | TownsquareMetricTargetCreatedChange | TownsquareMetricTargetDeletedChange | TownsquareMetricTargetPeriodsChange | TownsquareMetricTargetUpdatedChange | TownsquareMetricValueCreatedChange | TownsquareMetricValueDeletedChange | TownsquareMetricValueUpdatedChange | TownsquareStartDateAddedChange | TownsquareStartDateEditedChange | TownsquareTargetDateAddedChange | TownsquareTargetDateEditedChange | TownsquareUpdateDeletedChange;
236053
236664
  export type TownsquareActivityItem = {
236054
236665
  __typename?: 'TownsquareActivityItem';
@@ -237493,6 +238104,7 @@ export type TownsquareGoalsCreateUpdateInput = {
237493
238104
  goalId: Scalars['ID']['input'];
237494
238105
  highlights?: InputMaybe<Array<InputMaybe<TownsquareUpdateHighlightInput>>>;
237495
238106
  isBundledUpdate?: InputMaybe<Scalars['Boolean']['input']>;
238107
+ isConnectedUpdate?: InputMaybe<Scalars['Boolean']['input']>;
237496
238108
  metricUpdate?: InputMaybe<Array<InputMaybe<TownsquareMetricUpdateInput>>>;
237497
238109
  score?: InputMaybe<Scalars['Int']['input']>;
237498
238110
  status?: InputMaybe<Scalars['String']['input']>;
@@ -239444,6 +240056,16 @@ export type TownsquareProjectsEditDecisionPayload = {
239444
240056
  errors?: Maybe<Array<MutationError>>;
239445
240057
  success: Scalars['Boolean']['output'];
239446
240058
  };
240059
+ export type TownsquareProjectsEditDraftUpdateInput = {
240060
+ draftId: Scalars['ID']['input'];
240061
+ values?: InputMaybe<TownsquareProjectsCreateUpdateInput>;
240062
+ };
240063
+ export type TownsquareProjectsEditDraftUpdatePayload = {
240064
+ __typename?: 'TownsquareProjectsEditDraftUpdatePayload';
240065
+ draftUpdate?: Maybe<TownsquareProjectDraftUpdate>;
240066
+ errors?: Maybe<Array<MutationError>>;
240067
+ success: Scalars['Boolean']['output'];
240068
+ };
239447
240069
  export type TownsquareProjectsEditDropdownCustomFieldInput = {
239448
240070
  customFieldDefinitionId: Scalars['ID']['input'];
239449
240071
  projectId: Scalars['ID']['input'];
@@ -241995,6 +242617,7 @@ export type TrelloBoardViewer = {
241995
242617
  email?: Maybe<TrelloBoardViewerEmail>;
241996
242618
  lastSeenAt?: Maybe<Scalars['DateTime']['output']>;
241997
242619
  showCompactMirrorCards?: Maybe<Scalars['Boolean']['output']>;
242620
+ showRefinementCommandCenter?: Maybe<Scalars['Boolean']['output']>;
241998
242621
  sidebar?: Maybe<TrelloBoardViewerSidebar>;
241999
242622
  starred: Scalars['Boolean']['output'];
242000
242623
  subscribed?: Maybe<Scalars['Boolean']['output']>;
@@ -243263,6 +243886,21 @@ export type TrelloCreatePlannerCalendarEventPayload = Payload & {
243263
243886
  plannerCalendarUpdated?: Maybe<TrelloPlannerCalendar>;
243264
243887
  success: Scalars['Boolean']['output'];
243265
243888
  };
243889
+ export type TrelloCreateVoiceCapturedCardsFailedCard = {
243890
+ __typename?: 'TrelloCreateVoiceCapturedCardsFailedCard';
243891
+ errors: Array<MutationError>;
243892
+ objectId: Scalars['ID']['output'];
243893
+ };
243894
+ export type TrelloCreateVoiceCapturedCardsInput = {
243895
+ sessionId: Scalars['ID']['input'];
243896
+ };
243897
+ export type TrelloCreateVoiceCapturedCardsPayload = Payload & {
243898
+ __typename?: 'TrelloCreateVoiceCapturedCardsPayload';
243899
+ cards?: Maybe<Array<TrelloBaseCard>>;
243900
+ errors?: Maybe<Array<MutationError>>;
243901
+ failedCards: Array<TrelloCreateVoiceCapturedCardsFailedCard>;
243902
+ success: Scalars['Boolean']['output'];
243903
+ };
243266
243904
  export type TrelloCreateWorkspaceTagInput = {
243267
243905
  name: Scalars['String']['input'];
243268
243906
  workspaceId: Scalars['ID']['input'];
@@ -243517,6 +244155,15 @@ export type TrelloDisableCardFrontCompleteTogglePayload = Payload & {
243517
244155
  errors?: Maybe<Array<MutationError>>;
243518
244156
  success: Scalars['Boolean']['output'];
243519
244157
  };
244158
+ export type TrelloDismissRefinementCommandCenterInput = {
244159
+ boardId: Scalars['ID']['input'];
244160
+ };
244161
+ export type TrelloDismissRefinementCommandCenterPayload = Payload & {
244162
+ __typename?: 'TrelloDismissRefinementCommandCenterPayload';
244163
+ board?: Maybe<TrelloBaseBoard>;
244164
+ errors?: Maybe<Array<MutationError>>;
244165
+ success: Scalars['Boolean']['output'];
244166
+ };
243520
244167
  export type TrelloEcho = {
243521
244168
  __typename?: 'TrelloEcho';
243522
244169
  contents?: Maybe<Scalars['String']['output']>;
@@ -244825,6 +245472,7 @@ export type TrelloMutationApi = {
244825
245472
  createOAuth2Client?: Maybe<TrelloCreateOAuth2ClientPayload>;
244826
245473
  createOrUpdatePlannerCalendar?: Maybe<TrelloCreateOrUpdatePlannerCalendarPayload>;
244827
245474
  createPlannerCalendarEvent?: Maybe<TrelloCreatePlannerCalendarEventPayload>;
245475
+ createVoiceCapturedCards?: Maybe<TrelloCreateVoiceCapturedCardsPayload>;
244828
245476
  createWorkOverviewDashboard?: Maybe<TrelloWorkOverviewDashboardPayload>;
244829
245477
  createWorkspaceTag?: Maybe<TrelloCreateWorkspaceTagPayload>;
244830
245478
  deleteAiRule?: Maybe<TrelloDeleteAiRulePayload>;
@@ -244838,6 +245486,7 @@ export type TrelloMutationApi = {
244838
245486
  deleteWorkspaceTag?: Maybe<TrelloDeleteWorkspaceTagPayload>;
244839
245487
  disableBoardSelfJoin?: Maybe<TrelloDisableBoardSelfJoinPayload>;
244840
245488
  disableCardFrontCompleteToggle?: Maybe<TrelloDisableCardFrontCompleteTogglePayload>;
245489
+ dismissRefinementCommandCenter?: Maybe<TrelloDismissRefinementCommandCenterPayload>;
244841
245490
  editBoardWithAi?: Maybe<TrelloEditBoardWithAiPayload>;
244842
245491
  editPlannerCalendarEvent?: Maybe<TrelloEditPlannerCalendarEventPayload>;
244843
245492
  enableBoardSelfJoin?: Maybe<TrelloEnableBoardSelfJoinPayload>;
@@ -244866,6 +245515,7 @@ export type TrelloMutationApi = {
244866
245515
  proposePlannerEvents?: Maybe<TrelloProposePlannerEventsPayload>;
244867
245516
  refreshCardManifest?: Maybe<TrelloRefreshManifestPayload>;
244868
245517
  rejectProposedEvents?: Maybe<TrelloRejectProposedEventsPayload>;
245518
+ rejectRecommendation?: Maybe<TrelloRejectRecommendationPayload>;
244869
245519
  removeBoardStar?: Maybe<TrelloRemoveBoardStarPayload>;
244870
245520
  removeCardFromPlannerCalendarEvent?: Maybe<TrelloRemoveCardFromPlannerCalendarEventPayload>;
244871
245521
  removeLabelsFromCard?: Maybe<TrelloRemoveLabelsFromCardPayload>;
@@ -245073,6 +245723,9 @@ export type TrelloMutationApiCreateOrUpdatePlannerCalendarArgs = {
245073
245723
  export type TrelloMutationApiCreatePlannerCalendarEventArgs = {
245074
245724
  input: TrelloCreatePlannerCalendarEventInput;
245075
245725
  };
245726
+ export type TrelloMutationApiCreateVoiceCapturedCardsArgs = {
245727
+ input: TrelloCreateVoiceCapturedCardsInput;
245728
+ };
245076
245729
  export type TrelloMutationApiCreateWorkOverviewDashboardArgs = {
245077
245730
  input: TrelloWorkOverviewDashboardInput;
245078
245731
  };
@@ -245112,6 +245765,9 @@ export type TrelloMutationApiDisableBoardSelfJoinArgs = {
245112
245765
  export type TrelloMutationApiDisableCardFrontCompleteToggleArgs = {
245113
245766
  input: TrelloDisableCardFrontCompleteToggleInput;
245114
245767
  };
245768
+ export type TrelloMutationApiDismissRefinementCommandCenterArgs = {
245769
+ input: TrelloDismissRefinementCommandCenterInput;
245770
+ };
245115
245771
  export type TrelloMutationApiEditBoardWithAiArgs = {
245116
245772
  input: TrelloEditBoardWithAiInput;
245117
245773
  };
@@ -245193,6 +245849,9 @@ export type TrelloMutationApiRefreshCardManifestArgs = {
245193
245849
  export type TrelloMutationApiRejectProposedEventsArgs = {
245194
245850
  input: TrelloRejectProposedEventsInput;
245195
245851
  };
245852
+ export type TrelloMutationApiRejectRecommendationArgs = {
245853
+ input: TrelloRejectRecommendationInput;
245854
+ };
245196
245855
  export type TrelloMutationApiRemoveBoardStarArgs = {
245197
245856
  input: TrelloRemoveBoardStarInput;
245198
245857
  };
@@ -246386,6 +247045,7 @@ export type TrelloProviderCalendarInterface = {
246386
247045
  };
246387
247046
  export type TrelloQueryApi = {
246388
247047
  __typename?: 'TrelloQueryApi';
247048
+ agentSession?: Maybe<TrelloAgentSession>;
246389
247049
  aiPromptInterjectionContract?: Maybe<TrelloAiPromptInterjectionContract>;
246390
247050
  aiPromptInterjectionOverrides?: Maybe<Array<TrelloAiPromptInterjectionOverride>>;
246391
247051
  application?: Maybe<TrelloApplication>;
@@ -246435,6 +247095,9 @@ export type TrelloQueryApi = {
246435
247095
  workspace?: Maybe<TrelloWorkspace>;
246436
247096
  workspaceMultiboardView?: Maybe<TrelloWorkspaceMultiboard>;
246437
247097
  };
247098
+ export type TrelloQueryApiAgentSessionArgs = {
247099
+ id: Scalars['ID']['input'];
247100
+ };
246438
247101
  export type TrelloQueryApiApplicationArgs = {
246439
247102
  id: Scalars['ID']['input'];
246440
247103
  };
@@ -246657,6 +247320,14 @@ export type TrelloRecommendationOwner = {
246657
247320
  id: Scalars['ID']['output'];
246658
247321
  name?: Maybe<Scalars['String']['output']>;
246659
247322
  };
247323
+ export type TrelloRecommendationResponse = {
247324
+ __typename?: 'TrelloRecommendationResponse';
247325
+ accepted: Scalars['Boolean']['output'];
247326
+ cardId: Scalars['ID']['output'];
247327
+ memberId: Scalars['ID']['output'];
247328
+ objectId: Scalars['ID']['output'];
247329
+ recommendedActionId: Scalars['ID']['output'];
247330
+ };
246660
247331
  export type TrelloRecommendedAction = {
246661
247332
  __typename?: 'TrelloRecommendedAction';
246662
247333
  description?: Maybe<Scalars['String']['output']>;
@@ -246684,6 +247355,15 @@ export type TrelloRejectProposedEventsPayload = Payload & {
246684
247355
  proposedEvents?: Maybe<Array<TrelloProposedEventDeleted>>;
246685
247356
  success: Scalars['Boolean']['output'];
246686
247357
  };
247358
+ export type TrelloRejectRecommendationInput = {
247359
+ recommendationId: Scalars['ID']['input'];
247360
+ };
247361
+ export type TrelloRejectRecommendationPayload = Payload & {
247362
+ __typename?: 'TrelloRejectRecommendationPayload';
247363
+ errors?: Maybe<Array<MutationError>>;
247364
+ recommendationResponse?: Maybe<TrelloRecommendationResponse>;
247365
+ success: Scalars['Boolean']['output'];
247366
+ };
246687
247367
  export declare enum TrelloRelativePosition {
246688
247368
  Bottom = "BOTTOM",
246689
247369
  Top = "TOP"
@@ -248105,7 +248785,6 @@ export type TrelloWorkspace = Node & {
248105
248785
  description?: Maybe<Scalars['String']['output']>;
248106
248786
  displayBoardCount?: Maybe<Scalars['Int']['output']>;
248107
248787
  displayName?: Maybe<Scalars['String']['output']>;
248108
- eligibleForTrial?: Maybe<Scalars['Boolean']['output']>;
248109
248788
  enterprise?: Maybe<TrelloEnterprise>;
248110
248789
  entitlement?: Maybe<CcpEntitlement>;
248111
248790
  iconEmoji?: Maybe<Scalars['String']['output']>;
@@ -248124,6 +248803,7 @@ export type TrelloWorkspace = Node & {
248124
248803
  premiumFeatures?: Maybe<Array<Scalars['String']['output']>>;
248125
248804
  products?: Maybe<Array<Scalars['Float']['output']>>;
248126
248805
  tags?: Maybe<TrelloTagConnection>;
248806
+ trial?: Maybe<TrelloWorkspaceTrial>;
248127
248807
  url?: Maybe<Scalars['URL']['output']>;
248128
248808
  website?: Maybe<Scalars['String']['output']>;
248129
248809
  };
@@ -248272,6 +248952,11 @@ export type TrelloWorkspacePrefs = {
248272
248952
  export declare enum TrelloWorkspaceTier {
248273
248953
  Paid = "PAID"
248274
248954
  }
248955
+ export type TrelloWorkspaceTrial = {
248956
+ __typename?: 'TrelloWorkspaceTrial';
248957
+ eligible?: Maybe<Scalars['Boolean']['output']>;
248958
+ endDate?: Maybe<Scalars['DateTime']['output']>;
248959
+ };
248275
248960
  export type TrelloWorkspaceUpdated = {
248276
248961
  __typename?: 'TrelloWorkspaceUpdated';
248277
248962
  _deltas?: Maybe<Array<Scalars['String']['output']>>;