@forge/cli-shared 9.5.1-next.5 → 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>>;
@@ -6719,6 +6729,7 @@ export type AgentStudioAssistantConversation = {
6719
6729
  __typename?: 'AgentStudioAssistantConversation';
6720
6730
  agentVersionNumber?: Maybe<Scalars['Int']['output']>;
6721
6731
  hasCoachingContent?: Maybe<Scalars['Boolean']['output']>;
6732
+ hasConfigurationError?: Maybe<Scalars['Boolean']['output']>;
6722
6733
  hasGenericAnnotation?: Maybe<Scalars['Boolean']['output']>;
6723
6734
  id?: Maybe<Scalars['ID']['output']>;
6724
6735
  interactionChannel?: Maybe<Scalars['String']['output']>;
@@ -6794,6 +6805,9 @@ export type AgentStudioAuthReadinessResult = {
6794
6805
  thirdPartyApps: Array<AgentStudioThirdPartyApp>;
6795
6806
  thirdPartyConnections?: Maybe<Array<AgentStudioThirdPartyConnection>>;
6796
6807
  };
6808
+ export type AgentStudioAuthReadinessResultFirstPartyAppsArgs = {
6809
+ includeGrantedApps?: InputMaybe<Scalars['Boolean']['input']>;
6810
+ };
6797
6811
  export type AgentStudioAuthoringTeamInput = {
6798
6812
  authoringTeamId?: InputMaybe<Scalars['ID']['input']>;
6799
6813
  };
@@ -9075,6 +9089,8 @@ export type AgentWorkspaceProjectRoutingHistoryEventsArgs = {
9075
9089
  after?: InputMaybe<Scalars['String']['input']>;
9076
9090
  first?: InputMaybe<Scalars['Int']['input']>;
9077
9091
  kinds?: InputMaybe<Array<AgentWorkspaceRoutingHistoryEventKind>>;
9092
+ statuses?: InputMaybe<Array<AgentWorkspaceRoutingHistoryStatus>>;
9093
+ triggers?: InputMaybe<Array<AgentWorkspaceConfigurableRoutingTrigger>>;
9078
9094
  };
9079
9095
  export type AgentWorkspaceProjectSkill = {
9080
9096
  __typename?: 'AgentWorkspaceProjectSkill';
@@ -9248,6 +9264,7 @@ export type AgentWorkspaceRoutingHistoryEvent = {
9248
9264
  kind: AgentWorkspaceRoutingHistoryEventKind;
9249
9265
  message: Scalars['String']['output'];
9250
9266
  occurredAt: Scalars['DateTime']['output'];
9267
+ status?: Maybe<AgentWorkspaceRoutingHistoryStatus>;
9251
9268
  trigger?: Maybe<Scalars['String']['output']>;
9252
9269
  };
9253
9270
  export type AgentWorkspaceRoutingHistoryEventConnection = {
@@ -9272,6 +9289,12 @@ export type AgentWorkspaceRoutingHistoryPageInfo = {
9272
9289
  hasPreviousPage: Scalars['Boolean']['output'];
9273
9290
  startCursor?: Maybe<Scalars['String']['output']>;
9274
9291
  };
9292
+ export declare enum AgentWorkspaceRoutingHistoryStatus {
9293
+ AssignedAndRouted = "ASSIGNED_AND_ROUTED",
9294
+ AssignedTeamMember = "ASSIGNED_TEAM_MEMBER",
9295
+ RoutedTeam = "ROUTED_TEAM",
9296
+ Skipped = "SKIPPED"
9297
+ }
9275
9298
  export type AgentWorkspaceRoutingHistoryTeamEntity = AgentWorkspaceRoutingHistoryEntity & {
9276
9299
  __typename?: 'AgentWorkspaceRoutingHistoryTeamEntity';
9277
9300
  fallbackText: Scalars['String']['output'];
@@ -12850,6 +12873,7 @@ export type ArtifactCreateInput = {
12850
12873
  access?: InputMaybe<ArtifactAccess>;
12851
12874
  contentId: Scalars['ID']['input'];
12852
12875
  contextId: Scalars['ID']['input'];
12876
+ description?: InputMaybe<Scalars['String']['input']>;
12853
12877
  name: Scalars['String']['input'];
12854
12878
  type: Scalars['String']['input'];
12855
12879
  };
@@ -12891,6 +12915,21 @@ export type ArtifactTokenReference = {
12891
12915
  family: Scalars['String']['output'];
12892
12916
  tokens: Array<ArtifactDesignToken>;
12893
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
+ };
12894
12933
  export type ArtifactUploadTarget = {
12895
12934
  __typename?: 'ArtifactUploadTarget';
12896
12935
  contentId: Scalars['ID']['output'];
@@ -36934,6 +36973,7 @@ export type ConfluencePermissionTransitionPrincipalPageInfo = {
36934
36973
  };
36935
36974
  export declare enum ConfluencePermissionTransitionPrincipalType {
36936
36975
  AccessClass = "ACCESS_CLASS",
36976
+ Agent = "AGENT",
36937
36977
  Anonymous = "ANONYMOUS",
36938
36978
  App = "APP",
36939
36979
  Group = "GROUP",
@@ -46093,6 +46133,14 @@ export type CustomerServiceUpdateRequestParticipantInput = {
46093
46133
  addedParticipants: Array<Scalars['String']['input']>;
46094
46134
  deletedParticipants: Array<Scalars['ID']['input']>;
46095
46135
  };
46136
+ export type CustomerServiceUpdateWorkItemSupportSitePayload = Payload & {
46137
+ __typename?: 'CustomerServiceUpdateWorkItemSupportSitePayload';
46138
+ errors?: Maybe<Array<MutationError>>;
46139
+ formAttached: Scalars['Boolean']['output'];
46140
+ id: Scalars['ID']['output'];
46141
+ success: Scalars['Boolean']['output'];
46142
+ workItemSupportSite?: Maybe<CustomerServiceWorkItemSupportSite>;
46143
+ };
46096
46144
  export type CustomerServiceUpdatedCustomerAccount = {
46097
46145
  __typename?: 'CustomerServiceUpdatedCustomerAccount';
46098
46146
  displayName: Scalars['String']['output'];
@@ -46121,6 +46169,14 @@ export type CustomerServiceWorkItemAiSummaryResponse = {
46121
46169
  meta?: Maybe<CustomerServiceWorkItemAiSummaryMeta>;
46122
46170
  summary?: Maybe<CustomerServiceWorkItemAiSummary>;
46123
46171
  };
46172
+ export type CustomerServiceWorkItemSupportSite = {
46173
+ __typename?: 'CustomerServiceWorkItemSupportSite';
46174
+ helpCenter?: Maybe<HelpCenterQueryResult>;
46175
+ helpCenterId?: Maybe<Scalars['ID']['output']>;
46176
+ id: Scalars['ID']['output'];
46177
+ workItemKey: Scalars['String']['output'];
46178
+ };
46179
+ export type CustomerServiceWorkItemSupportSiteQueryResult = CustomerServiceWorkItemSupportSite | QueryError;
46124
46180
  export type CustomerUser = LocalizationContext & User & {
46125
46181
  __typename?: 'CustomerUser';
46126
46182
  accountId: Scalars['ID']['output'];
@@ -47425,6 +47481,7 @@ export type DevAiAutodevNextWorkItemClassification = {
47425
47481
  codingAgentPromptContext?: Maybe<Scalars['String']['output']>;
47426
47482
  enrichedContext?: Maybe<DevAiAutodevNextWorkItemEnrichedContext>;
47427
47483
  feedback?: Maybe<Scalars['String']['output']>;
47484
+ openPullRequestAsDraft?: Maybe<Scalars['Boolean']['output']>;
47428
47485
  repositories?: Maybe<Array<Scalars['String']['output']>>;
47429
47486
  status?: Maybe<Scalars['ID']['output']>;
47430
47487
  tShirtSize?: Maybe<Scalars['ID']['output']>;
@@ -50657,6 +50714,7 @@ export type DlpFalsePositive = {
50657
50714
  contentHash?: Maybe<Scalars['String']['output']>;
50658
50715
  contentType?: Maybe<Scalars['String']['output']>;
50659
50716
  detectorId?: Maybe<Scalars['String']['output']>;
50717
+ detectorType?: Maybe<Scalars['String']['output']>;
50660
50718
  excludedAt?: Maybe<Scalars['String']['output']>;
50661
50719
  excludedBy?: Maybe<Scalars['String']['output']>;
50662
50720
  findingId?: Maybe<Scalars['String']['output']>;
@@ -50666,6 +50724,7 @@ export type DlpFalsePositive = {
50666
50724
  objectTitle?: Maybe<Scalars['String']['output']>;
50667
50725
  parentResourceId?: Maybe<Scalars['String']['output']>;
50668
50726
  resourceId?: Maybe<Scalars['String']['output']>;
50727
+ scope?: Maybe<DlpFalsePositiveScope>;
50669
50728
  source?: Maybe<Scalars['String']['output']>;
50670
50729
  workspaceId?: Maybe<Scalars['String']['output']>;
50671
50730
  };
@@ -50687,15 +50746,21 @@ export type DlpFalsePositiveInput = {
50687
50746
  contentHash: Scalars['String']['input'];
50688
50747
  contentType: Scalars['String']['input'];
50689
50748
  detectorId: Scalars['String']['input'];
50749
+ detectorType?: InputMaybe<Scalars['String']['input']>;
50690
50750
  findingId: Scalars['String']['input'];
50691
50751
  lastDetectedAt?: InputMaybe<Scalars['String']['input']>;
50692
50752
  location?: InputMaybe<Scalars['String']['input']>;
50693
50753
  objectTitle?: InputMaybe<Scalars['String']['input']>;
50694
50754
  parentResourceId: Scalars['String']['input'];
50695
50755
  resourceId: Scalars['String']['input'];
50756
+ scope?: InputMaybe<DlpFalsePositiveScope>;
50696
50757
  source?: InputMaybe<Scalars['String']['input']>;
50697
50758
  workspaceId: Scalars['String']['input'];
50698
50759
  };
50760
+ export declare enum DlpFalsePositiveScope {
50761
+ Object = "OBJECT",
50762
+ Org = "ORG"
50763
+ }
50699
50764
  export type DlpFalsePositivesListResponse = {
50700
50765
  __typename?: 'DlpFalsePositivesListResponse';
50701
50766
  cursor?: Maybe<Scalars['String']['output']>;
@@ -57325,6 +57390,7 @@ export type GraphInferenceInferenceAppV3 = {
57325
57390
  source: Scalars['String']['output'];
57326
57391
  };
57327
57392
  export type GraphInferenceInferenceEvalInput = {
57393
+ activationId?: InputMaybe<Scalars['String']['input']>;
57328
57394
  appId: Scalars['String']['input'];
57329
57395
  historyFixture?: InputMaybe<Scalars['JSON']['input']>;
57330
57396
  promptTemplate?: InputMaybe<Scalars['String']['input']>;
@@ -57523,6 +57589,74 @@ export type GraphInferenceInferredProjectViewer = {
57523
57589
  __typename?: 'GraphInferenceInferredProjectViewer';
57524
57590
  accountId: Scalars['String']['output'];
57525
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
+ };
57526
57660
  export type GraphInferenceInsight = {
57527
57661
  associatedEntities: Array<GraphInferenceInsightEntity>;
57528
57662
  confidenceScore?: Maybe<Scalars['Float']['output']>;
@@ -58136,6 +58270,7 @@ export type GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateEdge = {
58136
58270
  export type GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateNode = {
58137
58271
  __typename?: 'GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateNode';
58138
58272
  authType: GraphIntegrationMcpAdminManagementMcpServerAuthType;
58273
+ customOauthProperties: Array<GraphIntegrationMcpAdminManagementCustomOauthProperties>;
58139
58274
  description?: Maybe<Scalars['String']['output']>;
58140
58275
  displayName: Scalars['String']['output'];
58141
58276
  documentationUrl?: Maybe<Scalars['String']['output']>;
@@ -58153,6 +58288,34 @@ export type GraphIntegrationMcpAdminManagementCustomOauthConfigInput = {
58153
58288
  clientSecret?: InputMaybe<Scalars['String']['input']>;
58154
58289
  values?: InputMaybe<Array<GraphIntegrationMcpAdminManagementExtraInputEntry>>;
58155
58290
  };
58291
+ export type GraphIntegrationMcpAdminManagementCustomOauthInputField = {
58292
+ __typename?: 'GraphIntegrationMcpAdminManagementCustomOauthInputField';
58293
+ inputPrefix?: Maybe<Scalars['String']['output']>;
58294
+ inputSuffix?: Maybe<Scalars['String']['output']>;
58295
+ inputType: GraphIntegrationMcpAdminManagementCustomOauthInputType;
58296
+ key: Scalars['String']['output'];
58297
+ label: Scalars['String']['output'];
58298
+ options?: Maybe<Array<GraphIntegrationMcpAdminManagementExtraInputOption>>;
58299
+ required: Scalars['Boolean']['output'];
58300
+ target: GraphIntegrationMcpAdminManagementCustomOauthInputTarget;
58301
+ validationPattern?: Maybe<Scalars['String']['output']>;
58302
+ };
58303
+ export declare enum GraphIntegrationMcpAdminManagementCustomOauthInputTarget {
58304
+ ClientId = "CLIENT_ID",
58305
+ ClientSecret = "CLIENT_SECRET",
58306
+ Value = "VALUE"
58307
+ }
58308
+ export declare enum GraphIntegrationMcpAdminManagementCustomOauthInputType {
58309
+ Secret = "SECRET",
58310
+ Select = "SELECT",
58311
+ Text = "TEXT"
58312
+ }
58313
+ export type GraphIntegrationMcpAdminManagementCustomOauthProperties = {
58314
+ __typename?: 'GraphIntegrationMcpAdminManagementCustomOauthProperties';
58315
+ authType: GraphIntegrationMcpAdminManagementMcpServerAuthType;
58316
+ platformInputs: Array<GraphIntegrationMcpAdminManagementCustomOauthInputField>;
58317
+ templateInputs: Array<GraphIntegrationMcpAdminManagementCustomOauthInputField>;
58318
+ };
58156
58319
  export type GraphIntegrationMcpAdminManagementExtraInputEntry = {
58157
58320
  key: Scalars['String']['input'];
58158
58321
  value: Scalars['String']['input'];
@@ -58325,6 +58488,7 @@ export type GraphIntegrationMcpAdminManagementSurfaceMcpServerTemplateEdge = {
58325
58488
  export type GraphIntegrationMcpAdminManagementSurfaceMcpServerTemplateNode = {
58326
58489
  __typename?: 'GraphIntegrationMcpAdminManagementSurfaceMcpServerTemplateNode';
58327
58490
  authType: GraphIntegrationMcpAdminManagementMcpServerAuthType;
58491
+ customOauthProperties: Array<GraphIntegrationMcpAdminManagementCustomOauthProperties>;
58328
58492
  description?: Maybe<Scalars['String']['output']>;
58329
58493
  displayName: Scalars['String']['output'];
58330
58494
  displayTools: Array<GraphIntegrationMcpAdminManagementSurfaceMcpServerToolNode>;
@@ -62065,6 +62229,8 @@ export type GraphStore = {
62065
62229
  inferredProjectHasRelatedEntityInverse?: Maybe<GraphStoreSimplifiedInferredProjectHasRelatedEntityInverseConnection>;
62066
62230
  inferredProjectLinksEntity?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityConnection>;
62067
62231
  inferredProjectLinksEntityInverse?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityInverseConnection>;
62232
+ inferredProjectPromotedToAtlassianProject?: Maybe<GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectConnection>;
62233
+ inferredProjectPromotedToAtlassianProjectInverse?: Maybe<GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectInverseConnection>;
62068
62234
  inferredTeamCollaboratesOnInferredProject?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectConnection>;
62069
62235
  inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
62070
62236
  inferredTeamLinksEntity?: Maybe<GraphStoreSimplifiedInferredTeamLinksEntityConnection>;
@@ -66438,6 +66604,22 @@ export type GraphStoreInferredProjectLinksEntityInverseArgs = {
66438
66604
  queryContext?: InputMaybe<Scalars['String']['input']>;
66439
66605
  sort?: InputMaybe<GraphStoreInferredProjectLinksEntitySortInput>;
66440
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
+ };
66441
66623
  export type GraphStoreInferredTeamCollaboratesOnInferredProjectArgs = {
66442
66624
  after?: InputMaybe<Scalars['String']['input']>;
66443
66625
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -80395,6 +80577,9 @@ export type GraphStoreInferredProjectNodeMetadata = {
80395
80577
  summary?: Maybe<Scalars['String']['output']>;
80396
80578
  title?: Maybe<Scalars['String']['output']>;
80397
80579
  };
80580
+ export type GraphStoreInferredProjectPromotedToAtlassianProjectSortInput = {
80581
+ lastModified?: InputMaybe<GraphStoreSortInput>;
80582
+ };
80398
80583
  export declare enum GraphStoreInferredRiskNodeInferredRiskLevelOutput {
80399
80584
  Critical = "CRITICAL",
80400
80585
  High = "HIGH",
@@ -87286,7 +87471,7 @@ export type GraphStoreSimplifiedInferredDecisionSourceLineageEntityInverseEdge =
87286
87471
  node?: Maybe<GraphStoreSimplifiedInferredDecisionSourceLineageEntityInverseUnion>;
87287
87472
  };
87288
87473
  export type GraphStoreSimplifiedInferredDecisionSourceLineageEntityInverseUnion = GraphStoreNodeResponse;
87289
- export type GraphStoreSimplifiedInferredDecisionSourceLineageEntityUnion = ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | ExternalVideo | LoomVideo;
87474
+ export type GraphStoreSimplifiedInferredDecisionSourceLineageEntityUnion = ConfluencePage | DevOpsDocument | DevOpsPullRequestDetails | ExternalDocument | ExternalPullRequest | ExternalVideo | LoomVideo;
87290
87475
  export type GraphStoreSimplifiedInferredProjectHasRelatedEntityConnection = HasPageInfo & {
87291
87476
  __typename?: 'GraphStoreSimplifiedInferredProjectHasRelatedEntityConnection';
87292
87477
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredProjectHasRelatedEntityEdge>>>;
@@ -87343,6 +87528,34 @@ export type GraphStoreSimplifiedInferredProjectLinksEntityInverseEdge = {
87343
87528
  };
87344
87529
  export type GraphStoreSimplifiedInferredProjectLinksEntityInverseUnion = GraphStoreNodeResponse;
87345
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;
87346
87559
  export type GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectConnection = HasPageInfo & {
87347
87560
  __typename?: 'GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectConnection';
87348
87561
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectEdge>>>;
@@ -97650,6 +97863,8 @@ export type GraphStoreV2 = {
97650
97863
  inferredProjectHasRelatedEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectHasRelatedEntityInverseConnection>;
97651
97864
  inferredProjectLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityConnection>;
97652
97865
  inferredProjectLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityInverseConnection>;
97866
+ inferredProjectPromotedToAtlassianProject?: Maybe<GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectConnection>;
97867
+ inferredProjectPromotedToAtlassianProjectInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectInverseConnection>;
97653
97868
  inferredTeamCollaboratesOnInferredProject?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectConnection>;
97654
97869
  inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
97655
97870
  inferredTeamLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredTeamLinksEntityConnection>;
@@ -102881,6 +103096,20 @@ export type GraphStoreV2InferredProjectLinksEntityInverseArgs = {
102881
103096
  id: Scalars['ID']['input'];
102882
103097
  sort?: InputMaybe<GraphStoreV2InferredProjectLinksEntitySortInput>;
102883
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
+ };
102884
103113
  export type GraphStoreV2InferredTeamCollaboratesOnInferredProjectArgs = {
102885
103114
  after?: InputMaybe<Scalars['String']['input']>;
102886
103115
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -106763,6 +106992,9 @@ export type GraphStoreV2InferredProjectHasRelatedEntitySortInput = {
106763
106992
  export type GraphStoreV2InferredProjectLinksEntitySortInput = {
106764
106993
  lastModified?: InputMaybe<GraphStoreSortInput>;
106765
106994
  };
106995
+ export type GraphStoreV2InferredProjectPromotedToAtlassianProjectSortInput = {
106996
+ lastModified?: InputMaybe<GraphStoreSortInput>;
106997
+ };
106766
106998
  export type GraphStoreV2InferredTeamCollaboratesOnInferredProjectSortInput = {
106767
106999
  lastModified?: InputMaybe<GraphStoreSortInput>;
106768
107000
  };
@@ -118387,7 +118619,7 @@ export type GraphStoreV2SimplifiedInferredDecisionLinksEntityInverseEdge = {
118387
118619
  node?: Maybe<GraphStoreV2SimplifiedInferredDecisionLinksEntityInverseUnion>;
118388
118620
  };
118389
118621
  export type GraphStoreV2SimplifiedInferredDecisionLinksEntityInverseUnion = GraphStoreNodeResponse;
118390
- export type GraphStoreV2SimplifiedInferredDecisionLinksEntityUnion = ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | ExternalVideo | LoomVideo;
118622
+ export type GraphStoreV2SimplifiedInferredDecisionLinksEntityUnion = ConfluencePage | DevOpsDocument | DevOpsPullRequestDetails | ExternalDocument | ExternalPullRequest | ExternalVideo | LoomVideo;
118391
118623
  export type GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityConnection = HasPageInfo & {
118392
118624
  __typename?: 'GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityConnection';
118393
118625
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityEdge>>>;
@@ -118415,7 +118647,7 @@ export type GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityInverseEdge
118415
118647
  node?: Maybe<GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityInverseUnion>;
118416
118648
  };
118417
118649
  export type GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityInverseUnion = GraphStoreNodeResponse;
118418
- export type GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityUnion = ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | ExternalVideo | LoomVideo;
118650
+ export type GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityUnion = ConfluencePage | DevOpsDocument | DevOpsPullRequestDetails | ExternalDocument | ExternalPullRequest | ExternalVideo | LoomVideo;
118419
118651
  export type GraphStoreV2SimplifiedInferredProjectHasRelatedEntityConnection = HasPageInfo & {
118420
118652
  __typename?: 'GraphStoreV2SimplifiedInferredProjectHasRelatedEntityConnection';
118421
118653
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredProjectHasRelatedEntityEdge>>>;
@@ -118472,6 +118704,34 @@ export type GraphStoreV2SimplifiedInferredProjectLinksEntityInverseEdge = {
118472
118704
  };
118473
118705
  export type GraphStoreV2SimplifiedInferredProjectLinksEntityInverseUnion = GraphStoreNodeResponse;
118474
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;
118475
118735
  export type GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectConnection = HasPageInfo & {
118476
118736
  __typename?: 'GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectConnection';
118477
118737
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectEdge>>>;
@@ -172343,7 +172603,9 @@ export type MercuryCreateDateCustomFieldDefinitionInput = {
172343
172603
  };
172344
172604
  export type MercuryCreateDraftPlanInput = {
172345
172605
  fiscalYearStart: Scalars['String']['input'];
172606
+ name?: InputMaybe<Scalars['String']['input']>;
172346
172607
  organizationId: Scalars['ID']['input'];
172608
+ sourcePlanId?: InputMaybe<Scalars['ID']['input']>;
172347
172609
  };
172348
172610
  export type MercuryCreateDraftPlanPayload = Payload & {
172349
172611
  __typename?: 'MercuryCreateDraftPlanPayload';
@@ -175785,6 +176047,8 @@ export type MercuryMutationApi = {
175785
176047
  updateFocusAreaTargetDate?: Maybe<MercuryUpdateFocusAreaPayload>;
175786
176048
  updateFocusAreaTypeFieldConfigurations?: Maybe<MercuryUpdateFieldConfigurationsPayload>;
175787
176049
  updatePortfolioName?: Maybe<MercuryUpdatePortfolioPayload>;
176050
+ updatePortfolioPublishingState?: Maybe<MercuryUpdatePortfolioPublishingStatePayload>;
176051
+ updatePortfolioSettings?: Maybe<MercuryUpdatePortfolioSettingsPayload>;
175788
176052
  updateUserNotificationSettings?: Maybe<MercuryUpdateUserNotificationSettingsPayload>;
175789
176053
  validateFocusAreaArchival?: Maybe<MercuryArchiveFocusAreaValidationPayload>;
175790
176054
  validateFocusAreasForRanking?: Maybe<MercuryValidateFocusAreasForRankingPayload>;
@@ -175978,6 +176242,12 @@ export type MercuryMutationApiUpdateFocusAreaTypeFieldConfigurationsArgs = {
175978
176242
  export type MercuryMutationApiUpdatePortfolioNameArgs = {
175979
176243
  input: MercuryUpdatePortfolioNameInput;
175980
176244
  };
176245
+ export type MercuryMutationApiUpdatePortfolioPublishingStateArgs = {
176246
+ input: MercuryUpdatePortfolioPublishingStateInput;
176247
+ };
176248
+ export type MercuryMutationApiUpdatePortfolioSettingsArgs = {
176249
+ input: MercuryUpdatePortfolioSettingsInput;
176250
+ };
175981
176251
  export type MercuryMutationApiUpdateUserNotificationSettingsArgs = {
175982
176252
  input: MercuryUpdateUserNotificationSettingsInput;
175983
176253
  };
@@ -177295,6 +177565,7 @@ export type MercuryPlan = Node & {
177295
177565
  id: Scalars['ID']['output'];
177296
177566
  isSystemManaged: Scalars['Boolean']['output'];
177297
177567
  memberCountAllocationTotals: Array<MercuryPlanMemberCountAllocationComputedByPlan>;
177568
+ name?: Maybe<Scalars['String']['output']>;
177298
177569
  organizationId: Scalars['ID']['output'];
177299
177570
  organizationPlanAuthority?: Maybe<MercuryPlanOrganizationAuthority>;
177300
177571
  startDate: Scalars['Date']['output'];
@@ -177462,6 +177733,8 @@ export type MercuryPortfolio = {
177462
177733
  linkedFocusAreaSummary?: Maybe<MercuryPortfolioFocusAreaSummary>;
177463
177734
  name: Scalars['String']['output'];
177464
177735
  owner?: Maybe<User>;
177736
+ publishingState?: Maybe<MercuryPortfolioPublishingState>;
177737
+ settings?: Maybe<MercuryPortfolioSettings>;
177465
177738
  starred?: Maybe<Scalars['Boolean']['output']>;
177466
177739
  updatedBy?: Maybe<User>;
177467
177740
  updatedDate?: Maybe<Scalars['String']['output']>;
@@ -177515,6 +177788,24 @@ export type MercuryPortfolioHumanResourceAllocations = {
177515
177788
  totalAsPercentageOfBudget?: Maybe<Scalars['BigDecimal']['output']>;
177516
177789
  totalPositions?: Maybe<Scalars['BigDecimal']['output']>;
177517
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
+ };
177518
177809
  export type MercuryPortfolioSort = {
177519
177810
  field: MercuryPortfolioSortField;
177520
177811
  order: SortOrder;
@@ -180700,6 +180991,26 @@ export type MercuryUpdatePortfolioPayload = Payload & {
180700
180991
  success: Scalars['Boolean']['output'];
180701
180992
  updatedPortfolio?: Maybe<MercuryPortfolio>;
180702
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
+ };
180703
181014
  export type MercuryUpdateRateCardChangeInput = {
180704
181015
  cloudId: Scalars['ID']['input'];
180705
181016
  effectiveStartDate?: InputMaybe<Scalars['Date']['input']>;
@@ -181491,6 +181802,7 @@ export type Mutation = {
181491
181802
  admin_updateAiPolicy?: Maybe<AdminUpdateAiPolicyResponsePayload>;
181492
181803
  admin_updateAuditLogBackgroundQuery?: Maybe<AdminAuditLogBackgroundQueryPayload>;
181493
181804
  admin_updateAuditLogBackgroundQueryV2?: Maybe<AdminAuditLogBackgroundQueryPayload>;
181805
+ admin_updateEnforceBoundarySetting?: Maybe<AdminUpdateEnforceBoundarySettingPayload>;
181494
181806
  admin_updateInvitePolicy?: Maybe<AdminUpdateInvitePolicyResponsePayload>;
181495
181807
  agentAI_panelRefresh?: Maybe<AgentAiPanelRefreshResult>;
181496
181808
  agentStudio_addGroupsToCreatePermission?: Maybe<AgentStudioAddGroupsToCreatePermissionPayload>;
@@ -181613,6 +181925,7 @@ export type Mutation = {
181613
181925
  artifact_authorContent?: Maybe<ArtifactAuthorContentPayload>;
181614
181926
  artifact_createArtifact?: Maybe<ArtifactCreatePayload>;
181615
181927
  artifact_createContent?: Maybe<ArtifactCreateContentPayload>;
181928
+ artifact_updateArtifact?: Maybe<ArtifactUpdatePayload>;
181616
181929
  assetsDM_addDataDictionary?: Maybe<AssetsDmAddDataDictionaryResponse>;
181617
181930
  assetsDM_addDefaultAttributeMapping?: Maybe<AssetsDmAddDefaultAttributeMappingResponse>;
181618
181931
  assetsDM_associateObjectTag?: Maybe<AssetsDmObjectTagAssociateResponse>;
@@ -182121,6 +182434,7 @@ export type Mutation = {
182121
182434
  csm_updateProduct?: Maybe<CustomerServiceProductUpdatePayload>;
182122
182435
  csm_updateStatusMapping?: Maybe<CustomerServiceStatusMappingUpdatePayload>;
182123
182436
  csm_updateTemplateForm?: Maybe<CustomerServiceTemplateFormUpdatePayload>;
182437
+ csm_updateWorkItemSupportSite?: Maybe<CustomerServiceUpdateWorkItemSupportSitePayload>;
182124
182438
  csm_upsertBranding?: Maybe<CustomerServiceBrandingUpsertPayload>;
182125
182439
  csm_upsertEmailChannelConfiguration?: Maybe<CustomerServiceEmailChannelConfigUpsertPayload>;
182126
182440
  csm_upsertHelpCenterMetadata?: Maybe<CustomerServiceHelpCenterMetadataUpsertPayload>;
@@ -182323,6 +182637,7 @@ export type Mutation = {
182323
182637
  graphInference_inferenceEval?: Maybe<GraphInferenceInferenceEvalResponse>;
182324
182638
  graphInference_inferenceEvalStart?: Maybe<GraphInferenceInferenceEvalStartResponse>;
182325
182639
  graphInference_inferencePreview?: Maybe<GraphInferenceInferencePreviewResponse>;
182640
+ graphInference_inlineEvalStart?: Maybe<GraphInferenceInlineEvalStartResponse>;
182326
182641
  graphIntegration_actionAdminManagementUpdateActionConfiguration?: Maybe<GraphIntegrationActionAdminManagementUpdateActionConfigurationPayload>;
182327
182642
  graphIntegration_addTwgCapabilityContainer?: Maybe<GraphIntegrationAddTwgCapabilityContainerPayload>;
182328
182643
  graphIntegration_createDataConnectorConnection?: Maybe<GraphIntegrationCreateConnectionPayload>;
@@ -183517,6 +183832,9 @@ export type MutationAdmin_UpdateAuditLogBackgroundQueryArgs = {
183517
183832
  export type MutationAdmin_UpdateAuditLogBackgroundQueryV2Args = {
183518
183833
  input: AdminAuditLogUpdateBackgroundQueryInput;
183519
183834
  };
183835
+ export type MutationAdmin_UpdateEnforceBoundarySettingArgs = {
183836
+ input: AdminUpdateEnforceBoundarySettingInput;
183837
+ };
183520
183838
  export type MutationAdmin_UpdateInvitePolicyArgs = {
183521
183839
  orgId: Scalars['ID']['input'];
183522
183840
  policyId: Scalars['ID']['input'];
@@ -183951,6 +184269,9 @@ export type MutationArtifact_CreateArtifactArgs = {
183951
184269
  export type MutationArtifact_CreateContentArgs = {
183952
184270
  input: ArtifactCreateContentInput;
183953
184271
  };
184272
+ export type MutationArtifact_UpdateArtifactArgs = {
184273
+ input: ArtifactUpdateInput;
184274
+ };
183954
184275
  export type MutationAssetsDm_AddDataDictionaryArgs = {
183955
184276
  cloudId: Scalars['ID']['input'];
183956
184277
  payload: AssetsDmAddDataDictionaryInput;
@@ -185913,6 +186234,11 @@ export type MutationCsm_UpdateTemplateFormArgs = {
185913
186234
  input: CustomerServiceTemplateFormUpdateInput;
185914
186235
  templateFormId: Scalars['ID']['input'];
185915
186236
  };
186237
+ export type MutationCsm_UpdateWorkItemSupportSiteArgs = {
186238
+ cloudId: Scalars['ID']['input'];
186239
+ helpCenterId?: InputMaybe<Scalars['ID']['input']>;
186240
+ workItemKey: Scalars['String']['input'];
186241
+ };
185916
186242
  export type MutationCsm_UpsertBrandingArgs = {
185917
186243
  cloudId: Scalars['ID']['input'];
185918
186244
  helpCenterId: Scalars['ID']['input'];
@@ -186546,6 +186872,9 @@ export type MutationGraphInference_InferenceEvalStartArgs = {
186546
186872
  export type MutationGraphInference_InferencePreviewArgs = {
186547
186873
  input: GraphInferenceInferencePreviewInput;
186548
186874
  };
186875
+ export type MutationGraphInference_InlineEvalStartArgs = {
186876
+ input: GraphInferenceInlineEvalStartInput;
186877
+ };
186549
186878
  export type MutationGraphIntegration_ActionAdminManagementUpdateActionConfigurationArgs = {
186550
186879
  input: GraphIntegrationActionAdminManagementUpdateActionConfigurationInput;
186551
186880
  };
@@ -194519,6 +194848,7 @@ export type Query = {
194519
194848
  csm_templateFormById?: Maybe<CustomerServiceTemplateFormQueryResult>;
194520
194849
  csm_templateForms?: Maybe<CustomerServiceTemplateFormConnection>;
194521
194850
  csm_workItemAiSummary?: Maybe<CustomerServiceWorkItemAiSummaryQueryResult>;
194851
+ csm_workItemSupportSite?: Maybe<CustomerServiceWorkItemSupportSiteQueryResult>;
194522
194852
  currentConfluenceUser?: Maybe<CurrentConfluenceUser>;
194523
194853
  customer360_customer?: Maybe<Customer360Customer>;
194524
194854
  customer360_customersById?: Maybe<Array<Maybe<Customer360Customer>>>;
@@ -194723,6 +195053,8 @@ export type Query = {
194723
195053
  graphInference_inferenceQualityMetrics?: Maybe<GraphInferenceInferenceQualityMetricsResponse>;
194724
195054
  graphInference_inferredProjectMe?: Maybe<GraphInferenceInferredProjectMeResponse>;
194725
195055
  graphInference_inferredProjectSummaries?: Maybe<GraphInferenceInferredProjectSummariesResponse>;
195056
+ graphInference_inlineEvalContract?: Maybe<GraphInferenceInlineEvalContractResponse>;
195057
+ graphInference_inlineEvalRun?: Maybe<GraphInferenceInlineEvalRunResponse>;
194726
195058
  graphInference_insights?: Maybe<GraphInferenceInsightsResponse>;
194727
195059
  graphIntegration_availableTwgCapabilityContainers?: Maybe<Array<Maybe<GraphIntegrationTwgCapabilityContainerMeta>>>;
194728
195060
  graphIntegration_cloneCandidateSkill?: Maybe<GraphIntegrationSkill>;
@@ -195475,6 +195807,8 @@ export type Query = {
195475
195807
  graphStoreV2_inferredProjectHasRelatedEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectHasRelatedEntityInverseConnection>;
195476
195808
  graphStoreV2_inferredProjectLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityConnection>;
195477
195809
  graphStoreV2_inferredProjectLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityInverseConnection>;
195810
+ graphStoreV2_inferredProjectPromotedToAtlassianProject?: Maybe<GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectConnection>;
195811
+ graphStoreV2_inferredProjectPromotedToAtlassianProjectInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectPromotedToAtlassianProjectInverseConnection>;
195478
195812
  graphStoreV2_inferredTeamCollaboratesOnInferredProject?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectConnection>;
195479
195813
  graphStoreV2_inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
195480
195814
  graphStoreV2_inferredTeamLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredTeamLinksEntityConnection>;
@@ -196131,6 +196465,8 @@ export type Query = {
196131
196465
  graphStore_inferredProjectHasRelatedEntityInverse?: Maybe<GraphStoreSimplifiedInferredProjectHasRelatedEntityInverseConnection>;
196132
196466
  graphStore_inferredProjectLinksEntity?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityConnection>;
196133
196467
  graphStore_inferredProjectLinksEntityInverse?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityInverseConnection>;
196468
+ graphStore_inferredProjectPromotedToAtlassianProject?: Maybe<GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectConnection>;
196469
+ graphStore_inferredProjectPromotedToAtlassianProjectInverse?: Maybe<GraphStoreSimplifiedInferredProjectPromotedToAtlassianProjectInverseConnection>;
196134
196470
  graphStore_inferredTeamCollaboratesOnInferredProject?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectConnection>;
196135
196471
  graphStore_inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
196136
196472
  graphStore_inferredTeamLinksEntity?: Maybe<GraphStoreSimplifiedInferredTeamLinksEntityConnection>;
@@ -197610,6 +197946,7 @@ export type Query = {
197610
197946
  supportInquiry_channelsIdentityHash?: Maybe<Scalars['String']['output']>;
197611
197947
  supportInquiry_channelsIdentityHashByClientName?: Maybe<Scalars['String']['output']>;
197612
197948
  supportInquiry_userContext?: Maybe<SupportInquiryUserContext>;
197949
+ surveys_survey?: Maybe<SurveysDetailsResult>;
197613
197950
  surveys_surveysByProject?: Maybe<SurveysListResult>;
197614
197951
  tags_getAssignedLabels?: Maybe<Array<TagsAssignedLabel>>;
197615
197952
  tags_getLabelAssignments?: Maybe<Array<TagsLabelAssignment>>;
@@ -197631,6 +197968,7 @@ export type Query = {
197631
197968
  teamworkGraph_userDirectReports?: Maybe<GraphStoreCypherQueryV2Connection>;
197632
197969
  teamworkGraph_userManager?: Maybe<GraphStoreCypherQueryV2Connection>;
197633
197970
  teamworkGraph_userReportChain?: Maybe<GraphStoreCypherQueryV2Connection>;
197971
+ teamworkGraph_userReportChainV2?: Maybe<GraphStoreCypherQueryV2Connection>;
197634
197972
  teamworkGraph_userTaggedIn?: Maybe<GraphStoreCypherQueryV2Connection>;
197635
197973
  teamworkGraph_userTeams?: Maybe<GraphStoreCypherQueryV2Connection>;
197636
197974
  teamworkGraph_userTopRecentMentioners?: Maybe<GraphStoreCypherQueryV2Connection>;
@@ -201631,6 +201969,10 @@ export type QueryCsm_TemplateFormsArgs = {
201631
201969
  export type QueryCsm_WorkItemAiSummaryArgs = {
201632
201970
  workItemId: Scalars['ID']['input'];
201633
201971
  };
201972
+ export type QueryCsm_WorkItemSupportSiteArgs = {
201973
+ cloudId: Scalars['ID']['input'];
201974
+ workItemKey: Scalars['String']['input'];
201975
+ };
201634
201976
  export type QueryCustomer360_CustomerArgs = {
201635
201977
  domain: Scalars['String']['input'];
201636
201978
  };
@@ -202467,6 +202809,12 @@ export type QueryGraphInference_InferredProjectSummariesArgs = {
202467
202809
  firstEntities?: InputMaybe<Scalars['Int']['input']>;
202468
202810
  updatedAfter?: InputMaybe<Scalars['DateTime']['input']>;
202469
202811
  };
202812
+ export type QueryGraphInference_InlineEvalContractArgs = {
202813
+ input: GraphInferenceInlineEvalContractInput;
202814
+ };
202815
+ export type QueryGraphInference_InlineEvalRunArgs = {
202816
+ runId: Scalars['ID']['input'];
202817
+ };
202470
202818
  export type QueryGraphInference_InsightsArgs = {
202471
202819
  input: GraphInferenceTargetInsightsInput;
202472
202820
  };
@@ -202489,6 +202837,7 @@ export type QueryGraphIntegration_ComponentDirectoryItemsArgs = {
202489
202837
  after?: InputMaybe<Scalars['String']['input']>;
202490
202838
  authTypes?: InputMaybe<Array<GraphIntegrationDirectoryAuthType>>;
202491
202839
  cloudId: Scalars['ID']['input'];
202840
+ contextAri?: InputMaybe<Scalars['ID']['input']>;
202492
202841
  dimensionIds?: InputMaybe<Array<Scalars['ID']['input']>>;
202493
202842
  first?: InputMaybe<Scalars['Int']['input']>;
202494
202843
  relevantFor?: InputMaybe<Array<GraphIntegrationDirectoryItemType>>;
@@ -207654,6 +208003,20 @@ export type QueryGraphStoreV2_InferredProjectLinksEntityInverseArgs = {
207654
208003
  id: Scalars['ID']['input'];
207655
208004
  sort?: InputMaybe<GraphStoreV2InferredProjectLinksEntitySortInput>;
207656
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
+ };
207657
208020
  export type QueryGraphStoreV2_InferredTeamCollaboratesOnInferredProjectArgs = {
207658
208021
  after?: InputMaybe<Scalars['String']['input']>;
207659
208022
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -212642,6 +213005,22 @@ export type QueryGraphStore_InferredProjectLinksEntityInverseArgs = {
212642
213005
  queryContext?: InputMaybe<Scalars['String']['input']>;
212643
213006
  sort?: InputMaybe<GraphStoreInferredProjectLinksEntitySortInput>;
212644
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
+ };
212645
213024
  export type QueryGraphStore_InferredTeamCollaboratesOnInferredProjectArgs = {
212646
213025
  after?: InputMaybe<Scalars['String']['input']>;
212647
213026
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -221539,6 +221918,10 @@ export type QuerySuggestedSpacesArgs = {
221539
221918
  export type QuerySupportInquiry_ChannelsIdentityHashByClientNameArgs = {
221540
221919
  request?: InputMaybe<SupportInquiryChannelPlatformIdentityHashRequest>;
221541
221920
  };
221921
+ export type QuerySurveys_SurveyArgs = {
221922
+ jiraProjectARI: Scalars['ID']['input'];
221923
+ surveyId: Scalars['ID']['input'];
221924
+ };
221542
221925
  export type QuerySurveys_SurveysByProjectArgs = {
221543
221926
  jiraProjectARI: Scalars['ID']['input'];
221544
221927
  };
@@ -221629,6 +222012,9 @@ export type QueryTeamworkGraph_UserManagerArgs = {
221629
222012
  export type QueryTeamworkGraph_UserReportChainArgs = {
221630
222013
  userId: Scalars['ID']['input'];
221631
222014
  };
222015
+ export type QueryTeamworkGraph_UserReportChainV2Args = {
222016
+ userId: Scalars['ID']['input'];
222017
+ };
221632
222018
  export type QueryTeamworkGraph_UserTaggedInArgs = {
221633
222019
  after?: InputMaybe<Scalars['String']['input']>;
221634
222020
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -222695,6 +223081,7 @@ export type RadarSkillAssignmentMetadata = {
222695
223081
  classificationType?: Maybe<RadarSkillClassificationType>;
222696
223082
  reasoning?: Maybe<Scalars['String']['output']>;
222697
223083
  skillId: Scalars['ID']['output'];
223084
+ sources?: Maybe<Array<RadarSkillSource>>;
222698
223085
  verificationStatus?: Maybe<RadarSkillVerificationStatus>;
222699
223086
  verifiedAt?: Maybe<Scalars['DateTime']['output']>;
222700
223087
  verifiedByAaid?: Maybe<Scalars['ID']['output']>;
@@ -222721,6 +223108,12 @@ export type RadarSkillMappingStatusUpdateInput = {
222721
223108
  status: RadarSkillVerificationStatus;
222722
223109
  workerSkill: Scalars['ID']['input'];
222723
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;
222724
223117
  export declare enum RadarSkillVerificationStatus {
222725
223118
  Declined = "DECLINED",
222726
223119
  Unverified = "UNVERIFIED",
@@ -223002,6 +223395,7 @@ export type RadarWorkerSkill = Node & {
223002
223395
  id: Scalars['ID']['output'];
223003
223396
  skill?: Maybe<RadarSkill>;
223004
223397
  skillId: Scalars['ID']['output'];
223398
+ sources?: Maybe<Array<RadarSkillSource>>;
223005
223399
  verificationStatus: RadarSkillVerificationStatus;
223006
223400
  verifiedAt?: Maybe<Scalars['DateTime']['output']>;
223007
223401
  workerId: Scalars['ID']['output'];
@@ -224264,6 +224658,7 @@ export type RoleAssignmentPrincipalInput = {
224264
224658
  };
224265
224659
  export declare enum RoleAssignmentPrincipalType {
224266
224660
  AccessClass = "ACCESS_CLASS",
224661
+ Agent = "AGENT",
224267
224662
  App = "APP",
224268
224663
  Group = "GROUP",
224269
224664
  User = "USER"
@@ -234046,6 +234441,7 @@ export type SurveysDetailsResponse = {
234046
234441
  uniqueResponses: Scalars['Boolean']['output'];
234047
234442
  updatedAt?: Maybe<Scalars['String']['output']>;
234048
234443
  };
234444
+ export type SurveysDetailsResult = SurveysDetailsResponse | SurveysQueryError;
234049
234445
  export declare enum SurveysEffectivePermissionLevel {
234050
234446
  Edit = "EDIT",
234051
234447
  None = "NONE",
@@ -235978,7 +236374,7 @@ export declare enum TownsquareAccessControlCapability {
235978
236374
  Administer = "ADMINISTER",
235979
236375
  Create = "CREATE"
235980
236376
  }
235981
- export type TownsquareAccessPrincipal = AppUser | AtlassianAccountUser | CustomerUser;
236377
+ export type TownsquareAccessPrincipal = AppUser | AtlassianAccountUser | CustomerUser | TeamV2;
235982
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;
235983
236379
  export type TownsquareActivityItem = {
235984
236380
  __typename?: 'TownsquareActivityItem';
@@ -237423,6 +237819,7 @@ export type TownsquareGoalsCreateUpdateInput = {
237423
237819
  goalId: Scalars['ID']['input'];
237424
237820
  highlights?: InputMaybe<Array<InputMaybe<TownsquareUpdateHighlightInput>>>;
237425
237821
  isBundledUpdate?: InputMaybe<Scalars['Boolean']['input']>;
237822
+ isConnectedUpdate?: InputMaybe<Scalars['Boolean']['input']>;
237426
237823
  metricUpdate?: InputMaybe<Array<InputMaybe<TownsquareMetricUpdateInput>>>;
237427
237824
  score?: InputMaybe<Scalars['Int']['input']>;
237428
237825
  status?: InputMaybe<Scalars['String']['input']>;
@@ -241925,6 +242322,7 @@ export type TrelloBoardViewer = {
241925
242322
  email?: Maybe<TrelloBoardViewerEmail>;
241926
242323
  lastSeenAt?: Maybe<Scalars['DateTime']['output']>;
241927
242324
  showCompactMirrorCards?: Maybe<Scalars['Boolean']['output']>;
242325
+ showRefinementCommandCenter?: Maybe<Scalars['Boolean']['output']>;
241928
242326
  sidebar?: Maybe<TrelloBoardViewerSidebar>;
241929
242327
  starred: Scalars['Boolean']['output'];
241930
242328
  subscribed?: Maybe<Scalars['Boolean']['output']>;
@@ -243193,6 +243591,21 @@ export type TrelloCreatePlannerCalendarEventPayload = Payload & {
243193
243591
  plannerCalendarUpdated?: Maybe<TrelloPlannerCalendar>;
243194
243592
  success: Scalars['Boolean']['output'];
243195
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
+ };
243196
243609
  export type TrelloCreateWorkspaceTagInput = {
243197
243610
  name: Scalars['String']['input'];
243198
243611
  workspaceId: Scalars['ID']['input'];
@@ -243447,6 +243860,15 @@ export type TrelloDisableCardFrontCompleteTogglePayload = Payload & {
243447
243860
  errors?: Maybe<Array<MutationError>>;
243448
243861
  success: Scalars['Boolean']['output'];
243449
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
+ };
243450
243872
  export type TrelloEcho = {
243451
243873
  __typename?: 'TrelloEcho';
243452
243874
  contents?: Maybe<Scalars['String']['output']>;
@@ -244755,6 +245177,7 @@ export type TrelloMutationApi = {
244755
245177
  createOAuth2Client?: Maybe<TrelloCreateOAuth2ClientPayload>;
244756
245178
  createOrUpdatePlannerCalendar?: Maybe<TrelloCreateOrUpdatePlannerCalendarPayload>;
244757
245179
  createPlannerCalendarEvent?: Maybe<TrelloCreatePlannerCalendarEventPayload>;
245180
+ createVoiceCapturedCards?: Maybe<TrelloCreateVoiceCapturedCardsPayload>;
244758
245181
  createWorkOverviewDashboard?: Maybe<TrelloWorkOverviewDashboardPayload>;
244759
245182
  createWorkspaceTag?: Maybe<TrelloCreateWorkspaceTagPayload>;
244760
245183
  deleteAiRule?: Maybe<TrelloDeleteAiRulePayload>;
@@ -244768,6 +245191,7 @@ export type TrelloMutationApi = {
244768
245191
  deleteWorkspaceTag?: Maybe<TrelloDeleteWorkspaceTagPayload>;
244769
245192
  disableBoardSelfJoin?: Maybe<TrelloDisableBoardSelfJoinPayload>;
244770
245193
  disableCardFrontCompleteToggle?: Maybe<TrelloDisableCardFrontCompleteTogglePayload>;
245194
+ dismissRefinementCommandCenter?: Maybe<TrelloDismissRefinementCommandCenterPayload>;
244771
245195
  editBoardWithAi?: Maybe<TrelloEditBoardWithAiPayload>;
244772
245196
  editPlannerCalendarEvent?: Maybe<TrelloEditPlannerCalendarEventPayload>;
244773
245197
  enableBoardSelfJoin?: Maybe<TrelloEnableBoardSelfJoinPayload>;
@@ -244796,6 +245220,7 @@ export type TrelloMutationApi = {
244796
245220
  proposePlannerEvents?: Maybe<TrelloProposePlannerEventsPayload>;
244797
245221
  refreshCardManifest?: Maybe<TrelloRefreshManifestPayload>;
244798
245222
  rejectProposedEvents?: Maybe<TrelloRejectProposedEventsPayload>;
245223
+ rejectRecommendation?: Maybe<TrelloRejectRecommendationPayload>;
244799
245224
  removeBoardStar?: Maybe<TrelloRemoveBoardStarPayload>;
244800
245225
  removeCardFromPlannerCalendarEvent?: Maybe<TrelloRemoveCardFromPlannerCalendarEventPayload>;
244801
245226
  removeLabelsFromCard?: Maybe<TrelloRemoveLabelsFromCardPayload>;
@@ -245003,6 +245428,9 @@ export type TrelloMutationApiCreateOrUpdatePlannerCalendarArgs = {
245003
245428
  export type TrelloMutationApiCreatePlannerCalendarEventArgs = {
245004
245429
  input: TrelloCreatePlannerCalendarEventInput;
245005
245430
  };
245431
+ export type TrelloMutationApiCreateVoiceCapturedCardsArgs = {
245432
+ input: TrelloCreateVoiceCapturedCardsInput;
245433
+ };
245006
245434
  export type TrelloMutationApiCreateWorkOverviewDashboardArgs = {
245007
245435
  input: TrelloWorkOverviewDashboardInput;
245008
245436
  };
@@ -245042,6 +245470,9 @@ export type TrelloMutationApiDisableBoardSelfJoinArgs = {
245042
245470
  export type TrelloMutationApiDisableCardFrontCompleteToggleArgs = {
245043
245471
  input: TrelloDisableCardFrontCompleteToggleInput;
245044
245472
  };
245473
+ export type TrelloMutationApiDismissRefinementCommandCenterArgs = {
245474
+ input: TrelloDismissRefinementCommandCenterInput;
245475
+ };
245045
245476
  export type TrelloMutationApiEditBoardWithAiArgs = {
245046
245477
  input: TrelloEditBoardWithAiInput;
245047
245478
  };
@@ -245123,6 +245554,9 @@ export type TrelloMutationApiRefreshCardManifestArgs = {
245123
245554
  export type TrelloMutationApiRejectProposedEventsArgs = {
245124
245555
  input: TrelloRejectProposedEventsInput;
245125
245556
  };
245557
+ export type TrelloMutationApiRejectRecommendationArgs = {
245558
+ input: TrelloRejectRecommendationInput;
245559
+ };
245126
245560
  export type TrelloMutationApiRemoveBoardStarArgs = {
245127
245561
  input: TrelloRemoveBoardStarInput;
245128
245562
  };
@@ -246316,6 +246750,7 @@ export type TrelloProviderCalendarInterface = {
246316
246750
  };
246317
246751
  export type TrelloQueryApi = {
246318
246752
  __typename?: 'TrelloQueryApi';
246753
+ agentSession?: Maybe<TrelloAgentSession>;
246319
246754
  aiPromptInterjectionContract?: Maybe<TrelloAiPromptInterjectionContract>;
246320
246755
  aiPromptInterjectionOverrides?: Maybe<Array<TrelloAiPromptInterjectionOverride>>;
246321
246756
  application?: Maybe<TrelloApplication>;
@@ -246365,6 +246800,9 @@ export type TrelloQueryApi = {
246365
246800
  workspace?: Maybe<TrelloWorkspace>;
246366
246801
  workspaceMultiboardView?: Maybe<TrelloWorkspaceMultiboard>;
246367
246802
  };
246803
+ export type TrelloQueryApiAgentSessionArgs = {
246804
+ id: Scalars['ID']['input'];
246805
+ };
246368
246806
  export type TrelloQueryApiApplicationArgs = {
246369
246807
  id: Scalars['ID']['input'];
246370
246808
  };
@@ -246587,6 +247025,14 @@ export type TrelloRecommendationOwner = {
246587
247025
  id: Scalars['ID']['output'];
246588
247026
  name?: Maybe<Scalars['String']['output']>;
246589
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
+ };
246590
247036
  export type TrelloRecommendedAction = {
246591
247037
  __typename?: 'TrelloRecommendedAction';
246592
247038
  description?: Maybe<Scalars['String']['output']>;
@@ -246614,6 +247060,15 @@ export type TrelloRejectProposedEventsPayload = Payload & {
246614
247060
  proposedEvents?: Maybe<Array<TrelloProposedEventDeleted>>;
246615
247061
  success: Scalars['Boolean']['output'];
246616
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
+ };
246617
247072
  export declare enum TrelloRelativePosition {
246618
247073
  Bottom = "BOTTOM",
246619
247074
  Top = "TOP"
@@ -248035,7 +248490,6 @@ export type TrelloWorkspace = Node & {
248035
248490
  description?: Maybe<Scalars['String']['output']>;
248036
248491
  displayBoardCount?: Maybe<Scalars['Int']['output']>;
248037
248492
  displayName?: Maybe<Scalars['String']['output']>;
248038
- eligibleForTrial?: Maybe<Scalars['Boolean']['output']>;
248039
248493
  enterprise?: Maybe<TrelloEnterprise>;
248040
248494
  entitlement?: Maybe<CcpEntitlement>;
248041
248495
  iconEmoji?: Maybe<Scalars['String']['output']>;
@@ -248054,6 +248508,7 @@ export type TrelloWorkspace = Node & {
248054
248508
  premiumFeatures?: Maybe<Array<Scalars['String']['output']>>;
248055
248509
  products?: Maybe<Array<Scalars['Float']['output']>>;
248056
248510
  tags?: Maybe<TrelloTagConnection>;
248511
+ trial?: Maybe<TrelloWorkspaceTrial>;
248057
248512
  url?: Maybe<Scalars['URL']['output']>;
248058
248513
  website?: Maybe<Scalars['String']['output']>;
248059
248514
  };
@@ -248202,6 +248657,11 @@ export type TrelloWorkspacePrefs = {
248202
248657
  export declare enum TrelloWorkspaceTier {
248203
248658
  Paid = "PAID"
248204
248659
  }
248660
+ export type TrelloWorkspaceTrial = {
248661
+ __typename?: 'TrelloWorkspaceTrial';
248662
+ eligible?: Maybe<Scalars['Boolean']['output']>;
248663
+ endDate?: Maybe<Scalars['DateTime']['output']>;
248664
+ };
248205
248665
  export type TrelloWorkspaceUpdated = {
248206
248666
  __typename?: 'TrelloWorkspaceUpdated';
248207
248667
  _deltas?: Maybe<Array<Scalars['String']['output']>>;