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

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']>;
@@ -5959,6 +5960,15 @@ export type AdminUpdateAiPolicyResponsePayload = AdminPayload & {
5959
5960
  errors?: Maybe<Array<AdminMutationError>>;
5960
5961
  success: Scalars['Boolean']['output'];
5961
5962
  };
5963
+ export type AdminUpdateEnforceBoundarySettingInput = {
5964
+ boundaryEnforced: Scalars['Boolean']['input'];
5965
+ orgId: Scalars['ID']['input'];
5966
+ };
5967
+ export type AdminUpdateEnforceBoundarySettingPayload = {
5968
+ __typename?: 'AdminUpdateEnforceBoundarySettingPayload';
5969
+ errors?: Maybe<Array<AdminMutationError>>;
5970
+ success: Scalars['Boolean']['output'];
5971
+ };
5962
5972
  export type AdminUpdateInvitePolicyInput = {
5963
5973
  allowedAction?: InputMaybe<AdminInviteAllowedAction>;
5964
5974
  appliesTo?: InputMaybe<Array<AdminResourceRoleInput>>;
@@ -9080,6 +9090,7 @@ export type AgentWorkspaceProjectRoutingHistoryEventsArgs = {
9080
9090
  first?: InputMaybe<Scalars['Int']['input']>;
9081
9091
  kinds?: InputMaybe<Array<AgentWorkspaceRoutingHistoryEventKind>>;
9082
9092
  statuses?: InputMaybe<Array<AgentWorkspaceRoutingHistoryStatus>>;
9093
+ triggers?: InputMaybe<Array<AgentWorkspaceConfigurableRoutingTrigger>>;
9083
9094
  };
9084
9095
  export type AgentWorkspaceProjectSkill = {
9085
9096
  __typename?: 'AgentWorkspaceProjectSkill';
@@ -12904,6 +12915,21 @@ export type ArtifactTokenReference = {
12904
12915
  family: Scalars['String']['output'];
12905
12916
  tokens: Array<ArtifactDesignToken>;
12906
12917
  };
12918
+ export type ArtifactUpdateInput = {
12919
+ access?: InputMaybe<ArtifactAccess>;
12920
+ contentId?: InputMaybe<Scalars['ID']['input']>;
12921
+ contextId: Scalars['ID']['input'];
12922
+ description?: InputMaybe<Scalars['String']['input']>;
12923
+ id: Scalars['ID']['input'];
12924
+ name: Scalars['String']['input'];
12925
+ type?: InputMaybe<Scalars['String']['input']>;
12926
+ };
12927
+ export type ArtifactUpdatePayload = Payload & {
12928
+ __typename?: 'ArtifactUpdatePayload';
12929
+ artifact?: Maybe<Artifact>;
12930
+ errors?: Maybe<Array<MutationError>>;
12931
+ success: Scalars['Boolean']['output'];
12932
+ };
12907
12933
  export type ArtifactUploadTarget = {
12908
12934
  __typename?: 'ArtifactUploadTarget';
12909
12935
  contentId: Scalars['ID']['output'];
@@ -36947,6 +36973,7 @@ export type ConfluencePermissionTransitionPrincipalPageInfo = {
36947
36973
  };
36948
36974
  export declare enum ConfluencePermissionTransitionPrincipalType {
36949
36975
  AccessClass = "ACCESS_CLASS",
36976
+ Agent = "AGENT",
36950
36977
  Anonymous = "ANONYMOUS",
36951
36978
  App = "APP",
36952
36979
  Group = "GROUP",
@@ -47454,6 +47481,7 @@ export type DevAiAutodevNextWorkItemClassification = {
47454
47481
  codingAgentPromptContext?: Maybe<Scalars['String']['output']>;
47455
47482
  enrichedContext?: Maybe<DevAiAutodevNextWorkItemEnrichedContext>;
47456
47483
  feedback?: Maybe<Scalars['String']['output']>;
47484
+ openPullRequestAsDraft?: Maybe<Scalars['Boolean']['output']>;
47457
47485
  repositories?: Maybe<Array<Scalars['String']['output']>>;
47458
47486
  status?: Maybe<Scalars['ID']['output']>;
47459
47487
  tShirtSize?: Maybe<Scalars['ID']['output']>;
@@ -50686,6 +50714,7 @@ export type DlpFalsePositive = {
50686
50714
  contentHash?: Maybe<Scalars['String']['output']>;
50687
50715
  contentType?: Maybe<Scalars['String']['output']>;
50688
50716
  detectorId?: Maybe<Scalars['String']['output']>;
50717
+ detectorType?: Maybe<Scalars['String']['output']>;
50689
50718
  excludedAt?: Maybe<Scalars['String']['output']>;
50690
50719
  excludedBy?: Maybe<Scalars['String']['output']>;
50691
50720
  findingId?: Maybe<Scalars['String']['output']>;
@@ -50695,6 +50724,7 @@ export type DlpFalsePositive = {
50695
50724
  objectTitle?: Maybe<Scalars['String']['output']>;
50696
50725
  parentResourceId?: Maybe<Scalars['String']['output']>;
50697
50726
  resourceId?: Maybe<Scalars['String']['output']>;
50727
+ scope?: Maybe<DlpFalsePositiveScope>;
50698
50728
  source?: Maybe<Scalars['String']['output']>;
50699
50729
  workspaceId?: Maybe<Scalars['String']['output']>;
50700
50730
  };
@@ -50716,15 +50746,21 @@ export type DlpFalsePositiveInput = {
50716
50746
  contentHash: Scalars['String']['input'];
50717
50747
  contentType: Scalars['String']['input'];
50718
50748
  detectorId: Scalars['String']['input'];
50749
+ detectorType?: InputMaybe<Scalars['String']['input']>;
50719
50750
  findingId: Scalars['String']['input'];
50720
50751
  lastDetectedAt?: InputMaybe<Scalars['String']['input']>;
50721
50752
  location?: InputMaybe<Scalars['String']['input']>;
50722
50753
  objectTitle?: InputMaybe<Scalars['String']['input']>;
50723
50754
  parentResourceId: Scalars['String']['input'];
50724
50755
  resourceId: Scalars['String']['input'];
50756
+ scope?: InputMaybe<DlpFalsePositiveScope>;
50725
50757
  source?: InputMaybe<Scalars['String']['input']>;
50726
50758
  workspaceId: Scalars['String']['input'];
50727
50759
  };
50760
+ export declare enum DlpFalsePositiveScope {
50761
+ Object = "OBJECT",
50762
+ Org = "ORG"
50763
+ }
50728
50764
  export type DlpFalsePositivesListResponse = {
50729
50765
  __typename?: 'DlpFalsePositivesListResponse';
50730
50766
  cursor?: Maybe<Scalars['String']['output']>;
@@ -57354,6 +57390,7 @@ export type GraphInferenceInferenceAppV3 = {
57354
57390
  source: Scalars['String']['output'];
57355
57391
  };
57356
57392
  export type GraphInferenceInferenceEvalInput = {
57393
+ activationId?: InputMaybe<Scalars['String']['input']>;
57357
57394
  appId: Scalars['String']['input'];
57358
57395
  historyFixture?: InputMaybe<Scalars['JSON']['input']>;
57359
57396
  promptTemplate?: InputMaybe<Scalars['String']['input']>;
@@ -57552,6 +57589,74 @@ export type GraphInferenceInferredProjectViewer = {
57552
57589
  __typename?: 'GraphInferenceInferredProjectViewer';
57553
57590
  accountId: Scalars['String']['output'];
57554
57591
  };
57592
+ export type GraphInferenceInlineEvalContractInput = {
57593
+ appId: Scalars['String']['input'];
57594
+ };
57595
+ export type GraphInferenceInlineEvalContractResponse = {
57596
+ __typename?: 'GraphInferenceInlineEvalContractResponse';
57597
+ appConfigurationFingerprint: Scalars['String']['output'];
57598
+ appId: Scalars['String']['output'];
57599
+ sourceCapabilityId: Scalars['String']['output'];
57600
+ stages: Array<GraphInferenceInlineEvalStageContract>;
57601
+ supported: Scalars['Boolean']['output'];
57602
+ targetCapabilityIds: Array<Scalars['String']['output']>;
57603
+ unsupportedReason?: Maybe<Scalars['String']['output']>;
57604
+ };
57605
+ export type GraphInferenceInlineEvalCost = {
57606
+ __typename?: 'GraphInferenceInlineEvalCost';
57607
+ amountUsd?: Maybe<Scalars['String']['output']>;
57608
+ status: Scalars['String']['output'];
57609
+ };
57610
+ export type GraphInferenceInlineEvalRunResponse = {
57611
+ __typename?: 'GraphInferenceInlineEvalRunResponse';
57612
+ appConfigurationFingerprint: Scalars['String']['output'];
57613
+ appId: Scalars['String']['output'];
57614
+ cost: GraphInferenceInlineEvalCost;
57615
+ createdAtUnixSeconds: Scalars['Long']['output'];
57616
+ expiresAtUnixSeconds: Scalars['Long']['output'];
57617
+ failureCode?: Maybe<Scalars['String']['output']>;
57618
+ result?: Maybe<Scalars['JSON']['output']>;
57619
+ runId: Scalars['ID']['output'];
57620
+ stages: Array<GraphInferenceInlineEvalStageTelemetry>;
57621
+ status: Scalars['String']['output'];
57622
+ };
57623
+ export type GraphInferenceInlineEvalStageContract = {
57624
+ __typename?: 'GraphInferenceInlineEvalStageContract';
57625
+ id: Scalars['String']['output'];
57626
+ modelOverrideSupported: Scalars['Boolean']['output'];
57627
+ optionalInputIds: Array<Scalars['String']['output']>;
57628
+ promptOverrideSupported: Scalars['Boolean']['output'];
57629
+ reasoningLevelOverrideSupported: Scalars['Boolean']['output'];
57630
+ };
57631
+ export type GraphInferenceInlineEvalStageTelemetry = {
57632
+ __typename?: 'GraphInferenceInlineEvalStageTelemetry';
57633
+ cachedReadTokens?: Maybe<Scalars['Long']['output']>;
57634
+ cachedWriteTokens?: Maybe<Scalars['Long']['output']>;
57635
+ configuredModel?: Maybe<Scalars['String']['output']>;
57636
+ inputTokens?: Maybe<Scalars['Long']['output']>;
57637
+ latencyMs?: Maybe<Scalars['Long']['output']>;
57638
+ outputTokens?: Maybe<Scalars['Long']['output']>;
57639
+ promptVersion: Scalars['String']['output'];
57640
+ responseBytes?: Maybe<Scalars['Long']['output']>;
57641
+ stageId: Scalars['String']['output'];
57642
+ thoughtTokens?: Maybe<Scalars['Long']['output']>;
57643
+ totalTokens?: Maybe<Scalars['Long']['output']>;
57644
+ };
57645
+ export type GraphInferenceInlineEvalStartInput = {
57646
+ appConfigurationFingerprint: Scalars['String']['input'];
57647
+ appId: Scalars['String']['input'];
57648
+ clientRequestId: Scalars['String']['input'];
57649
+ executionOverrides?: InputMaybe<Scalars['JSON']['input']>;
57650
+ inlinePayload: Scalars['JSON']['input'];
57651
+ stageInputs?: InputMaybe<Scalars['JSON']['input']>;
57652
+ };
57653
+ export type GraphInferenceInlineEvalStartResponse = {
57654
+ __typename?: 'GraphInferenceInlineEvalStartResponse';
57655
+ createdAtUnixSeconds: Scalars['Long']['output'];
57656
+ expiresAtUnixSeconds: Scalars['Long']['output'];
57657
+ runId: Scalars['ID']['output'];
57658
+ status: Scalars['String']['output'];
57659
+ };
57555
57660
  export type GraphInferenceInsight = {
57556
57661
  associatedEntities: Array<GraphInferenceInsightEntity>;
57557
57662
  confidenceScore?: Maybe<Scalars['Float']['output']>;
@@ -62124,6 +62229,8 @@ export type GraphStore = {
62124
62229
  inferredProjectHasRelatedEntityInverse?: Maybe<GraphStoreSimplifiedInferredProjectHasRelatedEntityInverseConnection>;
62125
62230
  inferredProjectLinksEntity?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityConnection>;
62126
62231
  inferredProjectLinksEntityInverse?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityInverseConnection>;
62232
+ inferredProjectPromotedToAtlassianProject?: Maybe<GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectConnection>;
62233
+ inferredProjectPromotedToAtlassianProjectInverse?: Maybe<GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectInverseConnection>;
62127
62234
  inferredTeamCollaboratesOnInferredProject?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectConnection>;
62128
62235
  inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
62129
62236
  inferredTeamLinksEntity?: Maybe<GraphStoreSimplifiedInferredTeamLinksEntityConnection>;
@@ -66497,6 +66604,22 @@ export type GraphStoreInferredProjectLinksEntityInverseArgs = {
66497
66604
  queryContext?: InputMaybe<Scalars['String']['input']>;
66498
66605
  sort?: InputMaybe<GraphStoreInferredProjectLinksEntitySortInput>;
66499
66606
  };
66607
+ export type GraphStoreInferredProjectPromotedToAtlassianProjectArgs = {
66608
+ after?: InputMaybe<Scalars['String']['input']>;
66609
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
66610
+ first?: InputMaybe<Scalars['Int']['input']>;
66611
+ id: Scalars['ID']['input'];
66612
+ queryContext?: InputMaybe<Scalars['String']['input']>;
66613
+ sort?: InputMaybe<GraphStoreInferredProjectPromotedToAtlassianProjectSortInput>;
66614
+ };
66615
+ export type GraphStoreInferredProjectPromotedToAtlassianProjectInverseArgs = {
66616
+ after?: InputMaybe<Scalars['String']['input']>;
66617
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
66618
+ first?: InputMaybe<Scalars['Int']['input']>;
66619
+ id: Scalars['ID']['input'];
66620
+ queryContext?: InputMaybe<Scalars['String']['input']>;
66621
+ sort?: InputMaybe<GraphStoreInferredProjectPromotedToAtlassianProjectSortInput>;
66622
+ };
66500
66623
  export type GraphStoreInferredTeamCollaboratesOnInferredProjectArgs = {
66501
66624
  after?: InputMaybe<Scalars['String']['input']>;
66502
66625
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -80454,6 +80577,9 @@ export type GraphStoreInferredProjectNodeMetadata = {
80454
80577
  summary?: Maybe<Scalars['String']['output']>;
80455
80578
  title?: Maybe<Scalars['String']['output']>;
80456
80579
  };
80580
+ export type GraphStoreInferredProjectPromotedToAtlassianProjectSortInput = {
80581
+ lastModified?: InputMaybe<GraphStoreSortInput>;
80582
+ };
80457
80583
  export declare enum GraphStoreInferredRiskNodeInferredRiskLevelOutput {
80458
80584
  Critical = "CRITICAL",
80459
80585
  High = "HIGH",
@@ -87345,7 +87471,7 @@ export type GraphStoreSimplifiedInferredDecisionSourceLineageEntityInverseEdge =
87345
87471
  node?: Maybe<GraphStoreSimplifiedInferredDecisionSourceLineageEntityInverseUnion>;
87346
87472
  };
87347
87473
  export type GraphStoreSimplifiedInferredDecisionSourceLineageEntityInverseUnion = GraphStoreNodeResponse;
87348
- export type GraphStoreSimplifiedInferredDecisionSourceLineageEntityUnion = ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | ExternalVideo | LoomVideo;
87474
+ export type GraphStoreSimplifiedInferredDecisionSourceLineageEntityUnion = ConfluencePage | DevOpsDocument | DevOpsPullRequestDetails | ExternalDocument | ExternalPullRequest | ExternalVideo | LoomVideo;
87349
87475
  export type GraphStoreSimplifiedInferredProjectHasRelatedEntityConnection = HasPageInfo & {
87350
87476
  __typename?: 'GraphStoreSimplifiedInferredProjectHasRelatedEntityConnection';
87351
87477
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredProjectHasRelatedEntityEdge>>>;
@@ -87402,6 +87528,34 @@ export type GraphStoreSimplifiedInferredProjectLinksEntityInverseEdge = {
87402
87528
  };
87403
87529
  export type GraphStoreSimplifiedInferredProjectLinksEntityInverseUnion = GraphStoreNodeResponse;
87404
87530
  export type GraphStoreSimplifiedInferredProjectLinksEntityUnion = ConfluencePage | JiraIssue | JiraProject;
87531
+ export type GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectConnection = HasPageInfo & {
87532
+ __typename?: 'GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectConnection';
87533
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectEdge>>>;
87534
+ pageInfo: PageInfo;
87535
+ };
87536
+ export type GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectEdge = {
87537
+ __typename?: 'GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectEdge';
87538
+ createdAt: Scalars['DateTime']['output'];
87539
+ cursor?: Maybe<Scalars['String']['output']>;
87540
+ id: Scalars['ID']['output'];
87541
+ lastUpdated: Scalars['DateTime']['output'];
87542
+ node?: Maybe<GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectUnion>;
87543
+ };
87544
+ export type GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectInverseConnection = HasPageInfo & {
87545
+ __typename?: 'GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectInverseConnection';
87546
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectInverseEdge>>>;
87547
+ pageInfo: PageInfo;
87548
+ };
87549
+ export type GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectInverseEdge = {
87550
+ __typename?: 'GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectInverseEdge';
87551
+ createdAt: Scalars['DateTime']['output'];
87552
+ cursor?: Maybe<Scalars['String']['output']>;
87553
+ id: Scalars['ID']['output'];
87554
+ lastUpdated: Scalars['DateTime']['output'];
87555
+ node?: Maybe<GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectInverseUnion>;
87556
+ };
87557
+ export type GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectInverseUnion = GraphStoreNodeResponse;
87558
+ export type GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectUnion = TownsquareProject;
87405
87559
  export type GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectConnection = HasPageInfo & {
87406
87560
  __typename?: 'GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectConnection';
87407
87561
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectEdge>>>;
@@ -97709,6 +97863,8 @@ export type GraphStoreV2 = {
97709
97863
  inferredProjectHasRelatedEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectHasRelatedEntityInverseConnection>;
97710
97864
  inferredProjectLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityConnection>;
97711
97865
  inferredProjectLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityInverseConnection>;
97866
+ inferredProjectPromotedToAtlassianProject?: Maybe<GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectConnection>;
97867
+ inferredProjectPromotedToAtlassianProjectInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectInverseConnection>;
97712
97868
  inferredTeamCollaboratesOnInferredProject?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectConnection>;
97713
97869
  inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
97714
97870
  inferredTeamLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredTeamLinksEntityConnection>;
@@ -102940,6 +103096,20 @@ export type GraphStoreV2InferredProjectLinksEntityInverseArgs = {
102940
103096
  id: Scalars['ID']['input'];
102941
103097
  sort?: InputMaybe<GraphStoreV2InferredProjectLinksEntitySortInput>;
102942
103098
  };
103099
+ export type GraphStoreV2InferredProjectPromotedToAtlassianProjectArgs = {
103100
+ after?: InputMaybe<Scalars['String']['input']>;
103101
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
103102
+ first?: InputMaybe<Scalars['Int']['input']>;
103103
+ id: Scalars['ID']['input'];
103104
+ sort?: InputMaybe<GraphStoreV2InferredProjectPromotedToAtlassianProjectSortInput>;
103105
+ };
103106
+ export type GraphStoreV2InferredProjectPromotedToAtlassianProjectInverseArgs = {
103107
+ after?: InputMaybe<Scalars['String']['input']>;
103108
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
103109
+ first?: InputMaybe<Scalars['Int']['input']>;
103110
+ id: Scalars['ID']['input'];
103111
+ sort?: InputMaybe<GraphStoreV2InferredProjectPromotedToAtlassianProjectSortInput>;
103112
+ };
102943
103113
  export type GraphStoreV2InferredTeamCollaboratesOnInferredProjectArgs = {
102944
103114
  after?: InputMaybe<Scalars['String']['input']>;
102945
103115
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -106822,6 +106992,9 @@ export type GraphStoreV2InferredProjectHasRelatedEntitySortInput = {
106822
106992
  export type GraphStoreV2InferredProjectLinksEntitySortInput = {
106823
106993
  lastModified?: InputMaybe<GraphStoreSortInput>;
106824
106994
  };
106995
+ export type GraphStoreV2InferredProjectPromotedToAtlassianProjectSortInput = {
106996
+ lastModified?: InputMaybe<GraphStoreSortInput>;
106997
+ };
106825
106998
  export type GraphStoreV2InferredTeamCollaboratesOnInferredProjectSortInput = {
106826
106999
  lastModified?: InputMaybe<GraphStoreSortInput>;
106827
107000
  };
@@ -118446,7 +118619,7 @@ export type GraphStoreV2SimplifiedInferredDecisionLinksEntityInverseEdge = {
118446
118619
  node?: Maybe<GraphStoreV2SimplifiedInferredDecisionLinksEntityInverseUnion>;
118447
118620
  };
118448
118621
  export type GraphStoreV2SimplifiedInferredDecisionLinksEntityInverseUnion = GraphStoreNodeResponse;
118449
- export type GraphStoreV2SimplifiedInferredDecisionLinksEntityUnion = ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | ExternalVideo | LoomVideo;
118622
+ export type GraphStoreV2SimplifiedInferredDecisionLinksEntityUnion = ConfluencePage | DevOpsDocument | DevOpsPullRequestDetails | ExternalDocument | ExternalPullRequest | ExternalVideo | LoomVideo;
118450
118623
  export type GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityConnection = HasPageInfo & {
118451
118624
  __typename?: 'GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityConnection';
118452
118625
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityEdge>>>;
@@ -118474,7 +118647,7 @@ export type GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityInverseEdge
118474
118647
  node?: Maybe<GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityInverseUnion>;
118475
118648
  };
118476
118649
  export type GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityInverseUnion = GraphStoreNodeResponse;
118477
- export type GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityUnion = ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | ExternalVideo | LoomVideo;
118650
+ export type GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityUnion = ConfluencePage | DevOpsDocument | DevOpsPullRequestDetails | ExternalDocument | ExternalPullRequest | ExternalVideo | LoomVideo;
118478
118651
  export type GraphStoreV2SimplifiedInferredProjectHasRelatedEntityConnection = HasPageInfo & {
118479
118652
  __typename?: 'GraphStoreV2SimplifiedInferredProjectHasRelatedEntityConnection';
118480
118653
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredProjectHasRelatedEntityEdge>>>;
@@ -118531,6 +118704,34 @@ export type GraphStoreV2SimplifiedInferredProjectLinksEntityInverseEdge = {
118531
118704
  };
118532
118705
  export type GraphStoreV2SimplifiedInferredProjectLinksEntityInverseUnion = GraphStoreNodeResponse;
118533
118706
  export type GraphStoreV2SimplifiedInferredProjectLinksEntityUnion = ConfluencePage | JiraIssue | JiraProject;
118707
+ export type GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectConnection = HasPageInfo & {
118708
+ __typename?: 'GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectConnection';
118709
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectEdge>>>;
118710
+ pageInfo: PageInfo;
118711
+ };
118712
+ export type GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectEdge = {
118713
+ __typename?: 'GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectEdge';
118714
+ createdAt: Scalars['DateTime']['output'];
118715
+ cursor?: Maybe<Scalars['String']['output']>;
118716
+ id: Scalars['ID']['output'];
118717
+ lastUpdated: Scalars['DateTime']['output'];
118718
+ node?: Maybe<GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectUnion>;
118719
+ };
118720
+ export type GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectInverseConnection = HasPageInfo & {
118721
+ __typename?: 'GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectInverseConnection';
118722
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectInverseEdge>>>;
118723
+ pageInfo: PageInfo;
118724
+ };
118725
+ export type GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectInverseEdge = {
118726
+ __typename?: 'GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectInverseEdge';
118727
+ createdAt: Scalars['DateTime']['output'];
118728
+ cursor?: Maybe<Scalars['String']['output']>;
118729
+ id: Scalars['ID']['output'];
118730
+ lastUpdated: Scalars['DateTime']['output'];
118731
+ node?: Maybe<GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectInverseUnion>;
118732
+ };
118733
+ export type GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectInverseUnion = GraphStoreNodeResponse;
118734
+ export type GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectUnion = TownsquareProject;
118534
118735
  export type GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectConnection = HasPageInfo & {
118535
118736
  __typename?: 'GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectConnection';
118536
118737
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectEdge>>>;
@@ -172402,7 +172603,9 @@ export type MercuryCreateDateCustomFieldDefinitionInput = {
172402
172603
  };
172403
172604
  export type MercuryCreateDraftPlanInput = {
172404
172605
  fiscalYearStart: Scalars['String']['input'];
172606
+ name?: InputMaybe<Scalars['String']['input']>;
172405
172607
  organizationId: Scalars['ID']['input'];
172608
+ sourcePlanId?: InputMaybe<Scalars['ID']['input']>;
172406
172609
  };
172407
172610
  export type MercuryCreateDraftPlanPayload = Payload & {
172408
172611
  __typename?: 'MercuryCreateDraftPlanPayload';
@@ -175844,6 +176047,8 @@ export type MercuryMutationApi = {
175844
176047
  updateFocusAreaTargetDate?: Maybe<MercuryUpdateFocusAreaPayload>;
175845
176048
  updateFocusAreaTypeFieldConfigurations?: Maybe<MercuryUpdateFieldConfigurationsPayload>;
175846
176049
  updatePortfolioName?: Maybe<MercuryUpdatePortfolioPayload>;
176050
+ updatePortfolioPublishingState?: Maybe<MercuryUpdatePortfolioPublishingStatePayload>;
176051
+ updatePortfolioSettings?: Maybe<MercuryUpdatePortfolioSettingsPayload>;
175847
176052
  updateUserNotificationSettings?: Maybe<MercuryUpdateUserNotificationSettingsPayload>;
175848
176053
  validateFocusAreaArchival?: Maybe<MercuryArchiveFocusAreaValidationPayload>;
175849
176054
  validateFocusAreasForRanking?: Maybe<MercuryValidateFocusAreasForRankingPayload>;
@@ -176037,6 +176242,12 @@ export type MercuryMutationApiUpdateFocusAreaTypeFieldConfigurationsArgs = {
176037
176242
  export type MercuryMutationApiUpdatePortfolioNameArgs = {
176038
176243
  input: MercuryUpdatePortfolioNameInput;
176039
176244
  };
176245
+ export type MercuryMutationApiUpdatePortfolioPublishingStateArgs = {
176246
+ input: MercuryUpdatePortfolioPublishingStateInput;
176247
+ };
176248
+ export type MercuryMutationApiUpdatePortfolioSettingsArgs = {
176249
+ input: MercuryUpdatePortfolioSettingsInput;
176250
+ };
176040
176251
  export type MercuryMutationApiUpdateUserNotificationSettingsArgs = {
176041
176252
  input: MercuryUpdateUserNotificationSettingsInput;
176042
176253
  };
@@ -177354,6 +177565,7 @@ export type MercuryPlan = Node & {
177354
177565
  id: Scalars['ID']['output'];
177355
177566
  isSystemManaged: Scalars['Boolean']['output'];
177356
177567
  memberCountAllocationTotals: Array<MercuryPlanMemberCountAllocationComputedByPlan>;
177568
+ name?: Maybe<Scalars['String']['output']>;
177357
177569
  organizationId: Scalars['ID']['output'];
177358
177570
  organizationPlanAuthority?: Maybe<MercuryPlanOrganizationAuthority>;
177359
177571
  startDate: Scalars['Date']['output'];
@@ -177521,6 +177733,8 @@ export type MercuryPortfolio = {
177521
177733
  linkedFocusAreaSummary?: Maybe<MercuryPortfolioFocusAreaSummary>;
177522
177734
  name: Scalars['String']['output'];
177523
177735
  owner?: Maybe<User>;
177736
+ publishingState?: Maybe<MercuryPortfolioPublishingState>;
177737
+ settings?: Maybe<MercuryPortfolioSettings>;
177524
177738
  starred?: Maybe<Scalars['Boolean']['output']>;
177525
177739
  updatedBy?: Maybe<User>;
177526
177740
  updatedDate?: Maybe<Scalars['String']['output']>;
@@ -177574,6 +177788,24 @@ export type MercuryPortfolioHumanResourceAllocations = {
177574
177788
  totalAsPercentageOfBudget?: Maybe<Scalars['BigDecimal']['output']>;
177575
177789
  totalPositions?: Maybe<Scalars['BigDecimal']['output']>;
177576
177790
  };
177791
+ export declare enum MercuryPortfolioPublishingState {
177792
+ Archived = "ARCHIVED",
177793
+ Draft = "DRAFT",
177794
+ Published = "PUBLISHED"
177795
+ }
177796
+ export type MercuryPortfolioSettings = {
177797
+ __typename?: 'MercuryPortfolioSettings';
177798
+ filter?: Maybe<Scalars['String']['output']>;
177799
+ sort?: Maybe<Scalars['String']['output']>;
177800
+ visualizationSettings?: Maybe<Scalars['String']['output']>;
177801
+ visualizationType?: Maybe<Scalars['String']['output']>;
177802
+ };
177803
+ export type MercuryPortfolioSettingsInput = {
177804
+ filter?: InputMaybe<Scalars['String']['input']>;
177805
+ sort?: InputMaybe<Scalars['String']['input']>;
177806
+ visualizationSettings?: InputMaybe<Scalars['String']['input']>;
177807
+ visualizationType?: InputMaybe<Scalars['String']['input']>;
177808
+ };
177577
177809
  export type MercuryPortfolioSort = {
177578
177810
  field: MercuryPortfolioSortField;
177579
177811
  order: SortOrder;
@@ -180759,6 +180991,26 @@ export type MercuryUpdatePortfolioPayload = Payload & {
180759
180991
  success: Scalars['Boolean']['output'];
180760
180992
  updatedPortfolio?: Maybe<MercuryPortfolio>;
180761
180993
  };
180994
+ export type MercuryUpdatePortfolioPublishingStateInput = {
180995
+ id: Scalars['ID']['input'];
180996
+ publishingState: MercuryPortfolioPublishingState;
180997
+ };
180998
+ export type MercuryUpdatePortfolioPublishingStatePayload = Payload & {
180999
+ __typename?: 'MercuryUpdatePortfolioPublishingStatePayload';
181000
+ errors?: Maybe<Array<MutationError>>;
181001
+ success: Scalars['Boolean']['output'];
181002
+ updatedPortfolio?: Maybe<MercuryPortfolio>;
181003
+ };
181004
+ export type MercuryUpdatePortfolioSettingsInput = {
181005
+ id: Scalars['ID']['input'];
181006
+ settings: MercuryPortfolioSettingsInput;
181007
+ };
181008
+ export type MercuryUpdatePortfolioSettingsPayload = Payload & {
181009
+ __typename?: 'MercuryUpdatePortfolioSettingsPayload';
181010
+ errors?: Maybe<Array<MutationError>>;
181011
+ success: Scalars['Boolean']['output'];
181012
+ updatedPortfolio?: Maybe<MercuryPortfolio>;
181013
+ };
180762
181014
  export type MercuryUpdateRateCardChangeInput = {
180763
181015
  cloudId: Scalars['ID']['input'];
180764
181016
  effectiveStartDate?: InputMaybe<Scalars['Date']['input']>;
@@ -181550,6 +181802,7 @@ export type Mutation = {
181550
181802
  admin_updateAiPolicy?: Maybe<AdminUpdateAiPolicyResponsePayload>;
181551
181803
  admin_updateAuditLogBackgroundQuery?: Maybe<AdminAuditLogBackgroundQueryPayload>;
181552
181804
  admin_updateAuditLogBackgroundQueryV2?: Maybe<AdminAuditLogBackgroundQueryPayload>;
181805
+ admin_updateEnforceBoundarySetting?: Maybe<AdminUpdateEnforceBoundarySettingPayload>;
181553
181806
  admin_updateInvitePolicy?: Maybe<AdminUpdateInvitePolicyResponsePayload>;
181554
181807
  agentAI_panelRefresh?: Maybe<AgentAiPanelRefreshResult>;
181555
181808
  agentStudio_addGroupsToCreatePermission?: Maybe<AgentStudioAddGroupsToCreatePermissionPayload>;
@@ -181672,6 +181925,7 @@ export type Mutation = {
181672
181925
  artifact_authorContent?: Maybe<ArtifactAuthorContentPayload>;
181673
181926
  artifact_createArtifact?: Maybe<ArtifactCreatePayload>;
181674
181927
  artifact_createContent?: Maybe<ArtifactCreateContentPayload>;
181928
+ artifact_updateArtifact?: Maybe<ArtifactUpdatePayload>;
181675
181929
  assetsDM_addDataDictionary?: Maybe<AssetsDmAddDataDictionaryResponse>;
181676
181930
  assetsDM_addDefaultAttributeMapping?: Maybe<AssetsDmAddDefaultAttributeMappingResponse>;
181677
181931
  assetsDM_associateObjectTag?: Maybe<AssetsDmObjectTagAssociateResponse>;
@@ -182383,6 +182637,7 @@ export type Mutation = {
182383
182637
  graphInference_inferenceEval?: Maybe<GraphInferenceInferenceEvalResponse>;
182384
182638
  graphInference_inferenceEvalStart?: Maybe<GraphInferenceInferenceEvalStartResponse>;
182385
182639
  graphInference_inferencePreview?: Maybe<GraphInferenceInferencePreviewResponse>;
182640
+ graphInference_inlineEvalStart?: Maybe<GraphInferenceInlineEvalStartResponse>;
182386
182641
  graphIntegration_actionAdminManagementUpdateActionConfiguration?: Maybe<GraphIntegrationActionAdminManagementUpdateActionConfigurationPayload>;
182387
182642
  graphIntegration_addTwgCapabilityContainer?: Maybe<GraphIntegrationAddTwgCapabilityContainerPayload>;
182388
182643
  graphIntegration_createDataConnectorConnection?: Maybe<GraphIntegrationCreateConnectionPayload>;
@@ -183577,6 +183832,9 @@ export type MutationAdmin_UpdateAuditLogBackgroundQueryArgs = {
183577
183832
  export type MutationAdmin_UpdateAuditLogBackgroundQueryV2Args = {
183578
183833
  input: AdminAuditLogUpdateBackgroundQueryInput;
183579
183834
  };
183835
+ export type MutationAdmin_UpdateEnforceBoundarySettingArgs = {
183836
+ input: AdminUpdateEnforceBoundarySettingInput;
183837
+ };
183580
183838
  export type MutationAdmin_UpdateInvitePolicyArgs = {
183581
183839
  orgId: Scalars['ID']['input'];
183582
183840
  policyId: Scalars['ID']['input'];
@@ -184011,6 +184269,9 @@ export type MutationArtifact_CreateArtifactArgs = {
184011
184269
  export type MutationArtifact_CreateContentArgs = {
184012
184270
  input: ArtifactCreateContentInput;
184013
184271
  };
184272
+ export type MutationArtifact_UpdateArtifactArgs = {
184273
+ input: ArtifactUpdateInput;
184274
+ };
184014
184275
  export type MutationAssetsDm_AddDataDictionaryArgs = {
184015
184276
  cloudId: Scalars['ID']['input'];
184016
184277
  payload: AssetsDmAddDataDictionaryInput;
@@ -186611,6 +186872,9 @@ export type MutationGraphInference_InferenceEvalStartArgs = {
186611
186872
  export type MutationGraphInference_InferencePreviewArgs = {
186612
186873
  input: GraphInferenceInferencePreviewInput;
186613
186874
  };
186875
+ export type MutationGraphInference_InlineEvalStartArgs = {
186876
+ input: GraphInferenceInlineEvalStartInput;
186877
+ };
186614
186878
  export type MutationGraphIntegration_ActionAdminManagementUpdateActionConfigurationArgs = {
186615
186879
  input: GraphIntegrationActionAdminManagementUpdateActionConfigurationInput;
186616
186880
  };
@@ -194789,6 +195053,8 @@ export type Query = {
194789
195053
  graphInference_inferenceQualityMetrics?: Maybe<GraphInferenceInferenceQualityMetricsResponse>;
194790
195054
  graphInference_inferredProjectMe?: Maybe<GraphInferenceInferredProjectMeResponse>;
194791
195055
  graphInference_inferredProjectSummaries?: Maybe<GraphInferenceInferredProjectSummariesResponse>;
195056
+ graphInference_inlineEvalContract?: Maybe<GraphInferenceInlineEvalContractResponse>;
195057
+ graphInference_inlineEvalRun?: Maybe<GraphInferenceInlineEvalRunResponse>;
194792
195058
  graphInference_insights?: Maybe<GraphInferenceInsightsResponse>;
194793
195059
  graphIntegration_availableTwgCapabilityContainers?: Maybe<Array<Maybe<GraphIntegrationTwgCapabilityContainerMeta>>>;
194794
195060
  graphIntegration_cloneCandidateSkill?: Maybe<GraphIntegrationSkill>;
@@ -195541,6 +195807,8 @@ export type Query = {
195541
195807
  graphStoreV2_inferredProjectHasRelatedEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectHasRelatedEntityInverseConnection>;
195542
195808
  graphStoreV2_inferredProjectLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityConnection>;
195543
195809
  graphStoreV2_inferredProjectLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityInverseConnection>;
195810
+ graphStoreV2_inferredProjectPromotedToAtlassianProject?: Maybe<GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectConnection>;
195811
+ graphStoreV2_inferredProjectPromotedToAtlassianProjectInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectInverseConnection>;
195544
195812
  graphStoreV2_inferredTeamCollaboratesOnInferredProject?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectConnection>;
195545
195813
  graphStoreV2_inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
195546
195814
  graphStoreV2_inferredTeamLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredTeamLinksEntityConnection>;
@@ -196197,6 +196465,8 @@ export type Query = {
196197
196465
  graphStore_inferredProjectHasRelatedEntityInverse?: Maybe<GraphStoreSimplifiedInferredProjectHasRelatedEntityInverseConnection>;
196198
196466
  graphStore_inferredProjectLinksEntity?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityConnection>;
196199
196467
  graphStore_inferredProjectLinksEntityInverse?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityInverseConnection>;
196468
+ graphStore_inferredProjectPromotedToAtlassianProject?: Maybe<GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectConnection>;
196469
+ graphStore_inferredProjectPromotedToAtlassianProjectInverse?: Maybe<GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectInverseConnection>;
196200
196470
  graphStore_inferredTeamCollaboratesOnInferredProject?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectConnection>;
196201
196471
  graphStore_inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
196202
196472
  graphStore_inferredTeamLinksEntity?: Maybe<GraphStoreSimplifiedInferredTeamLinksEntityConnection>;
@@ -197676,6 +197946,7 @@ export type Query = {
197676
197946
  supportInquiry_channelsIdentityHash?: Maybe<Scalars['String']['output']>;
197677
197947
  supportInquiry_channelsIdentityHashByClientName?: Maybe<Scalars['String']['output']>;
197678
197948
  supportInquiry_userContext?: Maybe<SupportInquiryUserContext>;
197949
+ surveys_survey?: Maybe<SurveysDetailsResult>;
197679
197950
  surveys_surveysByProject?: Maybe<SurveysListResult>;
197680
197951
  tags_getAssignedLabels?: Maybe<Array<TagsAssignedLabel>>;
197681
197952
  tags_getLabelAssignments?: Maybe<Array<TagsLabelAssignment>>;
@@ -197697,6 +197968,7 @@ export type Query = {
197697
197968
  teamworkGraph_userDirectReports?: Maybe<GraphStoreCypherQueryV2Connection>;
197698
197969
  teamworkGraph_userManager?: Maybe<GraphStoreCypherQueryV2Connection>;
197699
197970
  teamworkGraph_userReportChain?: Maybe<GraphStoreCypherQueryV2Connection>;
197971
+ teamworkGraph_userReportChainV2?: Maybe<GraphStoreCypherQueryV2Connection>;
197700
197972
  teamworkGraph_userTaggedIn?: Maybe<GraphStoreCypherQueryV2Connection>;
197701
197973
  teamworkGraph_userTeams?: Maybe<GraphStoreCypherQueryV2Connection>;
197702
197974
  teamworkGraph_userTopRecentMentioners?: Maybe<GraphStoreCypherQueryV2Connection>;
@@ -202537,6 +202809,12 @@ export type QueryGraphInference_InferredProjectSummariesArgs = {
202537
202809
  firstEntities?: InputMaybe<Scalars['Int']['input']>;
202538
202810
  updatedAfter?: InputMaybe<Scalars['DateTime']['input']>;
202539
202811
  };
202812
+ export type QueryGraphInference_InlineEvalContractArgs = {
202813
+ input: GraphInferenceInlineEvalContractInput;
202814
+ };
202815
+ export type QueryGraphInference_InlineEvalRunArgs = {
202816
+ runId: Scalars['ID']['input'];
202817
+ };
202540
202818
  export type QueryGraphInference_InsightsArgs = {
202541
202819
  input: GraphInferenceTargetInsightsInput;
202542
202820
  };
@@ -202559,6 +202837,7 @@ export type QueryGraphIntegration_ComponentDirectoryItemsArgs = {
202559
202837
  after?: InputMaybe<Scalars['String']['input']>;
202560
202838
  authTypes?: InputMaybe<Array<GraphIntegrationDirectoryAuthType>>;
202561
202839
  cloudId: Scalars['ID']['input'];
202840
+ contextAri?: InputMaybe<Scalars['ID']['input']>;
202562
202841
  dimensionIds?: InputMaybe<Array<Scalars['ID']['input']>>;
202563
202842
  first?: InputMaybe<Scalars['Int']['input']>;
202564
202843
  relevantFor?: InputMaybe<Array<GraphIntegrationDirectoryItemType>>;
@@ -207724,6 +208003,20 @@ export type QueryGraphStoreV2_InferredProjectLinksEntityInverseArgs = {
207724
208003
  id: Scalars['ID']['input'];
207725
208004
  sort?: InputMaybe<GraphStoreV2InferredProjectLinksEntitySortInput>;
207726
208005
  };
208006
+ export type QueryGraphStoreV2_InferredProjectPromotedToAtlassianProjectArgs = {
208007
+ after?: InputMaybe<Scalars['String']['input']>;
208008
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
208009
+ first?: InputMaybe<Scalars['Int']['input']>;
208010
+ id: Scalars['ID']['input'];
208011
+ sort?: InputMaybe<GraphStoreV2InferredProjectPromotedToAtlassianProjectSortInput>;
208012
+ };
208013
+ export type QueryGraphStoreV2_InferredProjectPromotedToAtlassianProjectInverseArgs = {
208014
+ after?: InputMaybe<Scalars['String']['input']>;
208015
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
208016
+ first?: InputMaybe<Scalars['Int']['input']>;
208017
+ id: Scalars['ID']['input'];
208018
+ sort?: InputMaybe<GraphStoreV2InferredProjectPromotedToAtlassianProjectSortInput>;
208019
+ };
207727
208020
  export type QueryGraphStoreV2_InferredTeamCollaboratesOnInferredProjectArgs = {
207728
208021
  after?: InputMaybe<Scalars['String']['input']>;
207729
208022
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -212712,6 +213005,22 @@ export type QueryGraphStore_InferredProjectLinksEntityInverseArgs = {
212712
213005
  queryContext?: InputMaybe<Scalars['String']['input']>;
212713
213006
  sort?: InputMaybe<GraphStoreInferredProjectLinksEntitySortInput>;
212714
213007
  };
213008
+ export type QueryGraphStore_InferredProjectPromotedToAtlassianProjectArgs = {
213009
+ after?: InputMaybe<Scalars['String']['input']>;
213010
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
213011
+ first?: InputMaybe<Scalars['Int']['input']>;
213012
+ id: Scalars['ID']['input'];
213013
+ queryContext?: InputMaybe<Scalars['String']['input']>;
213014
+ sort?: InputMaybe<GraphStoreInferredProjectPromotedToAtlassianProjectSortInput>;
213015
+ };
213016
+ export type QueryGraphStore_InferredProjectPromotedToAtlassianProjectInverseArgs = {
213017
+ after?: InputMaybe<Scalars['String']['input']>;
213018
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
213019
+ first?: InputMaybe<Scalars['Int']['input']>;
213020
+ id: Scalars['ID']['input'];
213021
+ queryContext?: InputMaybe<Scalars['String']['input']>;
213022
+ sort?: InputMaybe<GraphStoreInferredProjectPromotedToAtlassianProjectSortInput>;
213023
+ };
212715
213024
  export type QueryGraphStore_InferredTeamCollaboratesOnInferredProjectArgs = {
212716
213025
  after?: InputMaybe<Scalars['String']['input']>;
212717
213026
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -221609,6 +221918,10 @@ export type QuerySuggestedSpacesArgs = {
221609
221918
  export type QuerySupportInquiry_ChannelsIdentityHashByClientNameArgs = {
221610
221919
  request?: InputMaybe<SupportInquiryChannelPlatformIdentityHashRequest>;
221611
221920
  };
221921
+ export type QuerySurveys_SurveyArgs = {
221922
+ jiraProjectARI: Scalars['ID']['input'];
221923
+ surveyId: Scalars['ID']['input'];
221924
+ };
221612
221925
  export type QuerySurveys_SurveysByProjectArgs = {
221613
221926
  jiraProjectARI: Scalars['ID']['input'];
221614
221927
  };
@@ -221699,6 +222012,9 @@ export type QueryTeamworkGraph_UserManagerArgs = {
221699
222012
  export type QueryTeamworkGraph_UserReportChainArgs = {
221700
222013
  userId: Scalars['ID']['input'];
221701
222014
  };
222015
+ export type QueryTeamworkGraph_UserReportChainV2Args = {
222016
+ userId: Scalars['ID']['input'];
222017
+ };
221702
222018
  export type QueryTeamworkGraph_UserTaggedInArgs = {
221703
222019
  after?: InputMaybe<Scalars['String']['input']>;
221704
222020
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -222765,6 +223081,7 @@ export type RadarSkillAssignmentMetadata = {
222765
223081
  classificationType?: Maybe<RadarSkillClassificationType>;
222766
223082
  reasoning?: Maybe<Scalars['String']['output']>;
222767
223083
  skillId: Scalars['ID']['output'];
223084
+ sources?: Maybe<Array<RadarSkillSource>>;
222768
223085
  verificationStatus?: Maybe<RadarSkillVerificationStatus>;
222769
223086
  verifiedAt?: Maybe<Scalars['DateTime']['output']>;
222770
223087
  verifiedByAaid?: Maybe<Scalars['ID']['output']>;
@@ -222791,6 +223108,12 @@ export type RadarSkillMappingStatusUpdateInput = {
222791
223108
  status: RadarSkillVerificationStatus;
222792
223109
  workerSkill: Scalars['ID']['input'];
222793
223110
  };
223111
+ export type RadarSkillSource = {
223112
+ __typename?: 'RadarSkillSource';
223113
+ source?: Maybe<RadarSkillSourceObject>;
223114
+ sourceId: Scalars['ID']['output'];
223115
+ };
223116
+ export type RadarSkillSourceObject = ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceWhiteboard | ExternalComment | ExternalCommit | ExternalPullRequest | JiraIssue | TownsquareProject;
222794
223117
  export declare enum RadarSkillVerificationStatus {
222795
223118
  Declined = "DECLINED",
222796
223119
  Unverified = "UNVERIFIED",
@@ -223072,6 +223395,7 @@ export type RadarWorkerSkill = Node & {
223072
223395
  id: Scalars['ID']['output'];
223073
223396
  skill?: Maybe<RadarSkill>;
223074
223397
  skillId: Scalars['ID']['output'];
223398
+ sources?: Maybe<Array<RadarSkillSource>>;
223075
223399
  verificationStatus: RadarSkillVerificationStatus;
223076
223400
  verifiedAt?: Maybe<Scalars['DateTime']['output']>;
223077
223401
  workerId: Scalars['ID']['output'];
@@ -224334,6 +224658,7 @@ export type RoleAssignmentPrincipalInput = {
224334
224658
  };
224335
224659
  export declare enum RoleAssignmentPrincipalType {
224336
224660
  AccessClass = "ACCESS_CLASS",
224661
+ Agent = "AGENT",
224337
224662
  App = "APP",
224338
224663
  Group = "GROUP",
224339
224664
  User = "USER"
@@ -234116,6 +234441,7 @@ export type SurveysDetailsResponse = {
234116
234441
  uniqueResponses: Scalars['Boolean']['output'];
234117
234442
  updatedAt?: Maybe<Scalars['String']['output']>;
234118
234443
  };
234444
+ export type SurveysDetailsResult = SurveysDetailsResponse | SurveysQueryError;
234119
234445
  export declare enum SurveysEffectivePermissionLevel {
234120
234446
  Edit = "EDIT",
234121
234447
  None = "NONE",
@@ -236048,7 +236374,7 @@ export declare enum TownsquareAccessControlCapability {
236048
236374
  Administer = "ADMINISTER",
236049
236375
  Create = "CREATE"
236050
236376
  }
236051
- export type TownsquareAccessPrincipal = AppUser | AtlassianAccountUser | CustomerUser;
236377
+ export type TownsquareAccessPrincipal = AppUser | AtlassianAccountUser | CustomerUser | TeamV2;
236052
236378
  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
236379
  export type TownsquareActivityItem = {
236054
236380
  __typename?: 'TownsquareActivityItem';
@@ -237493,6 +237819,7 @@ export type TownsquareGoalsCreateUpdateInput = {
237493
237819
  goalId: Scalars['ID']['input'];
237494
237820
  highlights?: InputMaybe<Array<InputMaybe<TownsquareUpdateHighlightInput>>>;
237495
237821
  isBundledUpdate?: InputMaybe<Scalars['Boolean']['input']>;
237822
+ isConnectedUpdate?: InputMaybe<Scalars['Boolean']['input']>;
237496
237823
  metricUpdate?: InputMaybe<Array<InputMaybe<TownsquareMetricUpdateInput>>>;
237497
237824
  score?: InputMaybe<Scalars['Int']['input']>;
237498
237825
  status?: InputMaybe<Scalars['String']['input']>;
@@ -241995,6 +242322,7 @@ export type TrelloBoardViewer = {
241995
242322
  email?: Maybe<TrelloBoardViewerEmail>;
241996
242323
  lastSeenAt?: Maybe<Scalars['DateTime']['output']>;
241997
242324
  showCompactMirrorCards?: Maybe<Scalars['Boolean']['output']>;
242325
+ showRefinementCommandCenter?: Maybe<Scalars['Boolean']['output']>;
241998
242326
  sidebar?: Maybe<TrelloBoardViewerSidebar>;
241999
242327
  starred: Scalars['Boolean']['output'];
242000
242328
  subscribed?: Maybe<Scalars['Boolean']['output']>;
@@ -243263,6 +243591,21 @@ export type TrelloCreatePlannerCalendarEventPayload = Payload & {
243263
243591
  plannerCalendarUpdated?: Maybe<TrelloPlannerCalendar>;
243264
243592
  success: Scalars['Boolean']['output'];
243265
243593
  };
243594
+ export type TrelloCreateVoiceCapturedCardsFailedCard = {
243595
+ __typename?: 'TrelloCreateVoiceCapturedCardsFailedCard';
243596
+ errors: Array<MutationError>;
243597
+ objectId: Scalars['ID']['output'];
243598
+ };
243599
+ export type TrelloCreateVoiceCapturedCardsInput = {
243600
+ sessionId: Scalars['ID']['input'];
243601
+ };
243602
+ export type TrelloCreateVoiceCapturedCardsPayload = Payload & {
243603
+ __typename?: 'TrelloCreateVoiceCapturedCardsPayload';
243604
+ cards?: Maybe<Array<TrelloBaseCard>>;
243605
+ errors?: Maybe<Array<MutationError>>;
243606
+ failedCards: Array<TrelloCreateVoiceCapturedCardsFailedCard>;
243607
+ success: Scalars['Boolean']['output'];
243608
+ };
243266
243609
  export type TrelloCreateWorkspaceTagInput = {
243267
243610
  name: Scalars['String']['input'];
243268
243611
  workspaceId: Scalars['ID']['input'];
@@ -243517,6 +243860,15 @@ export type TrelloDisableCardFrontCompleteTogglePayload = Payload & {
243517
243860
  errors?: Maybe<Array<MutationError>>;
243518
243861
  success: Scalars['Boolean']['output'];
243519
243862
  };
243863
+ export type TrelloDismissRefinementCommandCenterInput = {
243864
+ boardId: Scalars['ID']['input'];
243865
+ };
243866
+ export type TrelloDismissRefinementCommandCenterPayload = Payload & {
243867
+ __typename?: 'TrelloDismissRefinementCommandCenterPayload';
243868
+ board?: Maybe<TrelloBaseBoard>;
243869
+ errors?: Maybe<Array<MutationError>>;
243870
+ success: Scalars['Boolean']['output'];
243871
+ };
243520
243872
  export type TrelloEcho = {
243521
243873
  __typename?: 'TrelloEcho';
243522
243874
  contents?: Maybe<Scalars['String']['output']>;
@@ -244825,6 +245177,7 @@ export type TrelloMutationApi = {
244825
245177
  createOAuth2Client?: Maybe<TrelloCreateOAuth2ClientPayload>;
244826
245178
  createOrUpdatePlannerCalendar?: Maybe<TrelloCreateOrUpdatePlannerCalendarPayload>;
244827
245179
  createPlannerCalendarEvent?: Maybe<TrelloCreatePlannerCalendarEventPayload>;
245180
+ createVoiceCapturedCards?: Maybe<TrelloCreateVoiceCapturedCardsPayload>;
244828
245181
  createWorkOverviewDashboard?: Maybe<TrelloWorkOverviewDashboardPayload>;
244829
245182
  createWorkspaceTag?: Maybe<TrelloCreateWorkspaceTagPayload>;
244830
245183
  deleteAiRule?: Maybe<TrelloDeleteAiRulePayload>;
@@ -244838,6 +245191,7 @@ export type TrelloMutationApi = {
244838
245191
  deleteWorkspaceTag?: Maybe<TrelloDeleteWorkspaceTagPayload>;
244839
245192
  disableBoardSelfJoin?: Maybe<TrelloDisableBoardSelfJoinPayload>;
244840
245193
  disableCardFrontCompleteToggle?: Maybe<TrelloDisableCardFrontCompleteTogglePayload>;
245194
+ dismissRefinementCommandCenter?: Maybe<TrelloDismissRefinementCommandCenterPayload>;
244841
245195
  editBoardWithAi?: Maybe<TrelloEditBoardWithAiPayload>;
244842
245196
  editPlannerCalendarEvent?: Maybe<TrelloEditPlannerCalendarEventPayload>;
244843
245197
  enableBoardSelfJoin?: Maybe<TrelloEnableBoardSelfJoinPayload>;
@@ -244866,6 +245220,7 @@ export type TrelloMutationApi = {
244866
245220
  proposePlannerEvents?: Maybe<TrelloProposePlannerEventsPayload>;
244867
245221
  refreshCardManifest?: Maybe<TrelloRefreshManifestPayload>;
244868
245222
  rejectProposedEvents?: Maybe<TrelloRejectProposedEventsPayload>;
245223
+ rejectRecommendation?: Maybe<TrelloRejectRecommendationPayload>;
244869
245224
  removeBoardStar?: Maybe<TrelloRemoveBoardStarPayload>;
244870
245225
  removeCardFromPlannerCalendarEvent?: Maybe<TrelloRemoveCardFromPlannerCalendarEventPayload>;
244871
245226
  removeLabelsFromCard?: Maybe<TrelloRemoveLabelsFromCardPayload>;
@@ -245073,6 +245428,9 @@ export type TrelloMutationApiCreateOrUpdatePlannerCalendarArgs = {
245073
245428
  export type TrelloMutationApiCreatePlannerCalendarEventArgs = {
245074
245429
  input: TrelloCreatePlannerCalendarEventInput;
245075
245430
  };
245431
+ export type TrelloMutationApiCreateVoiceCapturedCardsArgs = {
245432
+ input: TrelloCreateVoiceCapturedCardsInput;
245433
+ };
245076
245434
  export type TrelloMutationApiCreateWorkOverviewDashboardArgs = {
245077
245435
  input: TrelloWorkOverviewDashboardInput;
245078
245436
  };
@@ -245112,6 +245470,9 @@ export type TrelloMutationApiDisableBoardSelfJoinArgs = {
245112
245470
  export type TrelloMutationApiDisableCardFrontCompleteToggleArgs = {
245113
245471
  input: TrelloDisableCardFrontCompleteToggleInput;
245114
245472
  };
245473
+ export type TrelloMutationApiDismissRefinementCommandCenterArgs = {
245474
+ input: TrelloDismissRefinementCommandCenterInput;
245475
+ };
245115
245476
  export type TrelloMutationApiEditBoardWithAiArgs = {
245116
245477
  input: TrelloEditBoardWithAiInput;
245117
245478
  };
@@ -245193,6 +245554,9 @@ export type TrelloMutationApiRefreshCardManifestArgs = {
245193
245554
  export type TrelloMutationApiRejectProposedEventsArgs = {
245194
245555
  input: TrelloRejectProposedEventsInput;
245195
245556
  };
245557
+ export type TrelloMutationApiRejectRecommendationArgs = {
245558
+ input: TrelloRejectRecommendationInput;
245559
+ };
245196
245560
  export type TrelloMutationApiRemoveBoardStarArgs = {
245197
245561
  input: TrelloRemoveBoardStarInput;
245198
245562
  };
@@ -246386,6 +246750,7 @@ export type TrelloProviderCalendarInterface = {
246386
246750
  };
246387
246751
  export type TrelloQueryApi = {
246388
246752
  __typename?: 'TrelloQueryApi';
246753
+ agentSession?: Maybe<TrelloAgentSession>;
246389
246754
  aiPromptInterjectionContract?: Maybe<TrelloAiPromptInterjectionContract>;
246390
246755
  aiPromptInterjectionOverrides?: Maybe<Array<TrelloAiPromptInterjectionOverride>>;
246391
246756
  application?: Maybe<TrelloApplication>;
@@ -246435,6 +246800,9 @@ export type TrelloQueryApi = {
246435
246800
  workspace?: Maybe<TrelloWorkspace>;
246436
246801
  workspaceMultiboardView?: Maybe<TrelloWorkspaceMultiboard>;
246437
246802
  };
246803
+ export type TrelloQueryApiAgentSessionArgs = {
246804
+ id: Scalars['ID']['input'];
246805
+ };
246438
246806
  export type TrelloQueryApiApplicationArgs = {
246439
246807
  id: Scalars['ID']['input'];
246440
246808
  };
@@ -246657,6 +247025,14 @@ export type TrelloRecommendationOwner = {
246657
247025
  id: Scalars['ID']['output'];
246658
247026
  name?: Maybe<Scalars['String']['output']>;
246659
247027
  };
247028
+ export type TrelloRecommendationResponse = {
247029
+ __typename?: 'TrelloRecommendationResponse';
247030
+ accepted: Scalars['Boolean']['output'];
247031
+ cardId: Scalars['ID']['output'];
247032
+ memberId: Scalars['ID']['output'];
247033
+ objectId: Scalars['ID']['output'];
247034
+ recommendedActionId: Scalars['ID']['output'];
247035
+ };
246660
247036
  export type TrelloRecommendedAction = {
246661
247037
  __typename?: 'TrelloRecommendedAction';
246662
247038
  description?: Maybe<Scalars['String']['output']>;
@@ -246684,6 +247060,15 @@ export type TrelloRejectProposedEventsPayload = Payload & {
246684
247060
  proposedEvents?: Maybe<Array<TrelloProposedEventDeleted>>;
246685
247061
  success: Scalars['Boolean']['output'];
246686
247062
  };
247063
+ export type TrelloRejectRecommendationInput = {
247064
+ recommendationId: Scalars['ID']['input'];
247065
+ };
247066
+ export type TrelloRejectRecommendationPayload = Payload & {
247067
+ __typename?: 'TrelloRejectRecommendationPayload';
247068
+ errors?: Maybe<Array<MutationError>>;
247069
+ recommendationResponse?: Maybe<TrelloRecommendationResponse>;
247070
+ success: Scalars['Boolean']['output'];
247071
+ };
246687
247072
  export declare enum TrelloRelativePosition {
246688
247073
  Bottom = "BOTTOM",
246689
247074
  Top = "TOP"
@@ -248105,7 +248490,6 @@ export type TrelloWorkspace = Node & {
248105
248490
  description?: Maybe<Scalars['String']['output']>;
248106
248491
  displayBoardCount?: Maybe<Scalars['Int']['output']>;
248107
248492
  displayName?: Maybe<Scalars['String']['output']>;
248108
- eligibleForTrial?: Maybe<Scalars['Boolean']['output']>;
248109
248493
  enterprise?: Maybe<TrelloEnterprise>;
248110
248494
  entitlement?: Maybe<CcpEntitlement>;
248111
248495
  iconEmoji?: Maybe<Scalars['String']['output']>;
@@ -248124,6 +248508,7 @@ export type TrelloWorkspace = Node & {
248124
248508
  premiumFeatures?: Maybe<Array<Scalars['String']['output']>>;
248125
248509
  products?: Maybe<Array<Scalars['Float']['output']>>;
248126
248510
  tags?: Maybe<TrelloTagConnection>;
248511
+ trial?: Maybe<TrelloWorkspaceTrial>;
248127
248512
  url?: Maybe<Scalars['URL']['output']>;
248128
248513
  website?: Maybe<Scalars['String']['output']>;
248129
248514
  };
@@ -248272,6 +248657,11 @@ export type TrelloWorkspacePrefs = {
248272
248657
  export declare enum TrelloWorkspaceTier {
248273
248658
  Paid = "PAID"
248274
248659
  }
248660
+ export type TrelloWorkspaceTrial = {
248661
+ __typename?: 'TrelloWorkspaceTrial';
248662
+ eligible?: Maybe<Scalars['Boolean']['output']>;
248663
+ endDate?: Maybe<Scalars['DateTime']['output']>;
248664
+ };
248275
248665
  export type TrelloWorkspaceUpdated = {
248276
248666
  __typename?: 'TrelloWorkspaceUpdated';
248277
248667
  _deltas?: Maybe<Array<Scalars['String']['output']>>;