@forge/cli-shared 8.15.1-next.9 → 8.15.1

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.
@@ -457,6 +457,23 @@ export declare type AvpChartTemplate = {
457
457
  title: Scalars['String']['output'];
458
458
  type?: Maybe<Scalars['String']['output']>;
459
459
  };
460
+ export declare type AvpChartTemplatePreview = {
461
+ __typename?: 'AVPChartTemplatePreview';
462
+ data?: Maybe<AvpChartTemplatePreviewData>;
463
+ settings?: Maybe<AvpChartClientSettings>;
464
+ };
465
+ export declare type AvpChartTemplatePreviewColumn = {
466
+ __typename?: 'AVPChartTemplatePreviewColumn';
467
+ dataType?: Maybe<Scalars['String']['output']>;
468
+ header?: Maybe<Scalars['String']['output']>;
469
+ isNullable?: Maybe<Scalars['Boolean']['output']>;
470
+ };
471
+ export declare type AvpChartTemplatePreviewData = {
472
+ __typename?: 'AVPChartTemplatePreviewData';
473
+ chartType: Scalars['String']['output'];
474
+ columns?: Maybe<Array<Maybe<AvpChartTemplatePreviewColumn>>>;
475
+ data?: Maybe<Scalars['String']['output']>;
476
+ };
460
477
  export declare type AvpClearChartInRowPayload = Payload & {
461
478
  __typename?: 'AVPClearChartInRowPayload';
462
479
  canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
@@ -804,6 +821,10 @@ export declare enum AvpFilterOperator {
804
821
  And = "AND",
805
822
  Or = "OR"
806
823
  }
824
+ export declare type AvpGetDashboardIdBySlugPayload = {
825
+ __typename?: 'AVPGetDashboardIdBySlugPayload';
826
+ id?: Maybe<Scalars['ID']['output']>;
827
+ };
807
828
  export declare type AvpGetDashboardTemplatesInput = {
808
829
  cloudId: Scalars['ID']['input'];
809
830
  productKey?: InputMaybe<Scalars['String']['input']>;
@@ -823,6 +844,7 @@ export declare type AvpHotTierFilterConfigInput = {
823
844
  semanticModel?: InputMaybe<Scalars['String']['input']>;
824
845
  };
825
846
  export declare enum AvpIntegrationId {
847
+ JiraSummaryPage = "JIRA_SUMMARY_PAGE",
826
848
  JsmAssets = "JSM_ASSETS",
827
849
  JsmSummaryPage = "JSM_SUMMARY_PAGE",
828
850
  Townsquare = "TOWNSQUARE"
@@ -907,6 +929,22 @@ export declare enum AvpPermissionsAccessLevel {
907
929
  Read = "READ",
908
930
  Write = "WRITE"
909
931
  }
932
+ export declare type AvpPermissionsCapabilityEntry = {
933
+ capabilityId: Scalars['String']['input'];
934
+ key?: InputMaybe<Scalars['String']['input']>;
935
+ };
936
+ export declare enum AvpPermissionsCapabilityFailureType {
937
+ CustomCheckFailed = "CUSTOM_CHECK_FAILED",
938
+ EditionUnavailable = "EDITION_UNAVAILABLE",
939
+ None = "NONE",
940
+ PermissionDenied = "PERMISSION_DENIED",
941
+ ProductRequired = "PRODUCT_REQUIRED"
942
+ }
943
+ export declare type AvpPermissionsCapabilityResult = {
944
+ __typename?: 'AVPPermissionsCapabilityResult';
945
+ capabilityId?: Maybe<Scalars['String']['output']>;
946
+ result?: Maybe<AvpPermissionsHasCapabilityResponse>;
947
+ };
910
948
  export declare type AvpPermissionsDashboardIdentityAccess = {
911
949
  __typename?: 'AVPPermissionsDashboardIdentityAccess';
912
950
  dashboardId: Scalars['ID']['output'];
@@ -928,6 +966,14 @@ export declare type AvpPermissionsFailedDashboardUserAccess = {
928
966
  errorMessage: Scalars['String']['output'];
929
967
  user: AvpPermissionsDashboardUserAccessResult;
930
968
  };
969
+ export declare type AvpPermissionsGetCapabilitiesInput = {
970
+ capabilityRequests?: InputMaybe<Array<AvpPermissionsCapabilityEntry>>;
971
+ cloudId: Scalars['ID']['input'];
972
+ };
973
+ export declare type AvpPermissionsGetCapabilitiesResponse = {
974
+ __typename?: 'AVPPermissionsGetCapabilitiesResponse';
975
+ capabilities?: Maybe<Array<AvpPermissionsCapabilityResult>>;
976
+ };
931
977
  export declare type AvpPermissionsGetDashboardIdentityAccessInput = {
932
978
  dashboardId: Scalars['ID']['input'];
933
979
  directAccess?: InputMaybe<Scalars['Boolean']['input']>;
@@ -940,6 +986,22 @@ export declare type AvpPermissionsGroupAccess = {
940
986
  group?: Maybe<IdentityGroup>;
941
987
  principalId: Scalars['ID']['output'];
942
988
  };
989
+ export declare type AvpPermissionsHasCapabilityInput = {
990
+ capabilityId: Scalars['String']['input'];
991
+ cloudId: Scalars['ID']['input'];
992
+ key?: InputMaybe<Scalars['String']['input']>;
993
+ };
994
+ export declare type AvpPermissionsHasCapabilityResponse = {
995
+ __typename?: 'AVPPermissionsHasCapabilityResponse';
996
+ failureCode?: Maybe<Scalars['String']['output']>;
997
+ failureType?: Maybe<AvpPermissionsCapabilityFailureType>;
998
+ hasAccess?: Maybe<Scalars['Boolean']['output']>;
999
+ hasManage?: Maybe<Scalars['Boolean']['output']>;
1000
+ hasWrite?: Maybe<Scalars['Boolean']['output']>;
1001
+ productResults?: Maybe<Array<AvpPermissionsProductCapabilityResult>>;
1002
+ properties?: Maybe<Array<AvpPermissionsPropertyEntry>>;
1003
+ reason?: Maybe<Scalars['String']['output']>;
1004
+ };
943
1005
  export declare type AvpPermissionsHelloResponse = {
944
1006
  __typename?: 'AVPPermissionsHelloResponse';
945
1007
  hello?: Maybe<Scalars['String']['output']>;
@@ -949,6 +1011,35 @@ export declare type AvpPermissionsPrincipals = {
949
1011
  groups?: Maybe<Array<AvpPermissionsGroupAccess>>;
950
1012
  users?: Maybe<Array<AvpPermissionsUserAccess>>;
951
1013
  };
1014
+ export declare type AvpPermissionsProductCapabilityResponse = {
1015
+ __typename?: 'AVPPermissionsProductCapabilityResponse';
1016
+ failureCode?: Maybe<Scalars['String']['output']>;
1017
+ failureType?: Maybe<AvpPermissionsCapabilityFailureType>;
1018
+ hasAccess?: Maybe<Scalars['Boolean']['output']>;
1019
+ hasManage?: Maybe<Scalars['Boolean']['output']>;
1020
+ hasWrite?: Maybe<Scalars['Boolean']['output']>;
1021
+ properties?: Maybe<Array<AvpPermissionsPropertyEntry>>;
1022
+ reason?: Maybe<Scalars['String']['output']>;
1023
+ };
1024
+ export declare type AvpPermissionsProductCapabilityResult = {
1025
+ __typename?: 'AVPPermissionsProductCapabilityResult';
1026
+ productId?: Maybe<Scalars['String']['output']>;
1027
+ result?: Maybe<AvpPermissionsProductCapabilityResponse>;
1028
+ };
1029
+ export declare type AvpPermissionsPropertyEntry = {
1030
+ __typename?: 'AVPPermissionsPropertyEntry';
1031
+ key?: Maybe<Scalars['String']['output']>;
1032
+ value?: Maybe<AvpPermissionsPropertyValue>;
1033
+ };
1034
+ export declare type AvpPermissionsPropertyValue = AvpPermissionsPropertyValueList | AvpPermissionsPropertyValueString;
1035
+ export declare type AvpPermissionsPropertyValueList = {
1036
+ __typename?: 'AVPPermissionsPropertyValueList';
1037
+ values?: Maybe<Array<Scalars['String']['output']>>;
1038
+ };
1039
+ export declare type AvpPermissionsPropertyValueString = {
1040
+ __typename?: 'AVPPermissionsPropertyValueString';
1041
+ value?: Maybe<Scalars['String']['output']>;
1042
+ };
952
1043
  export declare type AvpPermissionsUpdateDashboardUserAccessInput = {
953
1044
  cloudId: Scalars['ID']['input'];
954
1045
  containerId?: InputMaybe<Scalars['ID']['input']>;
@@ -3214,7 +3305,14 @@ export declare type AgentStudioAgent = {
3214
3305
  knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
3215
3306
  name?: Maybe<Scalars['String']['output']>;
3216
3307
  permissions?: Maybe<AgentStudioAgentPermissions>;
3308
+ scenarioList?: Maybe<AgentStudioScenariosResult>;
3217
3309
  scenarios?: Maybe<Array<Maybe<AgentStudioAssistantScenario>>>;
3310
+ version?: Maybe<AgentStudioAgentVersion>;
3311
+ };
3312
+ export declare type AgentStudioAgentScenarioListArgs = {
3313
+ after?: InputMaybe<Scalars['String']['input']>;
3314
+ before?: InputMaybe<Scalars['String']['input']>;
3315
+ first?: InputMaybe<Scalars['Int']['input']>;
3218
3316
  };
3219
3317
  export declare type AgentStudioAgentCreatePermission = {
3220
3318
  __typename?: 'AgentStudioAgentCreatePermission';
@@ -3246,11 +3344,13 @@ export declare type AgentStudioAgentPermissions = {
3246
3344
  canTransferOwnership: Scalars['Boolean']['output'];
3247
3345
  };
3248
3346
  export declare type AgentStudioAgentQueryInput = {
3347
+ includeDraftAgents?: InputMaybe<Scalars['Boolean']['input']>;
3249
3348
  name?: InputMaybe<Scalars['String']['input']>;
3250
3349
  onlyEditableAgents?: InputMaybe<Scalars['Boolean']['input']>;
3251
3350
  onlyFavouriteAgents?: InputMaybe<Scalars['Boolean']['input']>;
3252
3351
  onlyMyAgents?: InputMaybe<Scalars['Boolean']['input']>;
3253
3352
  onlyTemplateAgents?: InputMaybe<Scalars['Boolean']['input']>;
3353
+ onlyVerifiedAgents?: InputMaybe<Scalars['Boolean']['input']>;
3254
3354
  };
3255
3355
  export declare type AgentStudioAgentResult = AgentStudioAssistant | AgentStudioServiceAgent | QueryError;
3256
3356
  export declare enum AgentStudioAgentRole {
@@ -3267,6 +3367,34 @@ export declare type AgentStudioAgentUsePermissionSettings = {
3267
3367
  etag?: Maybe<Scalars['String']['output']>;
3268
3368
  mode?: Maybe<AgentStudioUsePermissionMode>;
3269
3369
  };
3370
+ export declare type AgentStudioAgentVersion = {
3371
+ __typename?: 'AgentStudioAgentVersion';
3372
+ id: Scalars['ID']['output'];
3373
+ publishedAt?: Maybe<Scalars['String']['output']>;
3374
+ publisherAccount?: Maybe<User>;
3375
+ type?: Maybe<AgentStudioAgentVersionType>;
3376
+ versionNumber?: Maybe<Scalars['Int']['output']>;
3377
+ };
3378
+ export declare type AgentStudioAgentVersionEdge = {
3379
+ __typename?: 'AgentStudioAgentVersionEdge';
3380
+ cursor: Scalars['String']['output'];
3381
+ node?: Maybe<AgentStudioAgentVersion>;
3382
+ };
3383
+ export declare type AgentStudioAgentVersionInput = {
3384
+ versionId?: InputMaybe<Scalars['ID']['input']>;
3385
+ versionType?: InputMaybe<AgentStudioAgentVersionType>;
3386
+ };
3387
+ export declare enum AgentStudioAgentVersionType {
3388
+ Draft = "DRAFT",
3389
+ Live = "LIVE",
3390
+ Superseded = "SUPERSEDED"
3391
+ }
3392
+ export declare type AgentStudioAgentVersionsResult = {
3393
+ __typename?: 'AgentStudioAgentVersionsResult';
3394
+ edges?: Maybe<Array<AgentStudioAgentVersionEdge>>;
3395
+ errors?: Maybe<Array<QueryError>>;
3396
+ pageInfo: PageInfo;
3397
+ };
3270
3398
  export declare type AgentStudioAgentsConnection = {
3271
3399
  __typename?: 'AgentStudioAgentsConnection';
3272
3400
  edges: Array<AgentStudioAgentEdge>;
@@ -3296,7 +3424,15 @@ export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
3296
3424
  knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
3297
3425
  name?: Maybe<Scalars['String']['output']>;
3298
3426
  permissions?: Maybe<AgentStudioAgentPermissions>;
3427
+ scenarioList?: Maybe<AgentStudioScenariosResult>;
3299
3428
  scenarios?: Maybe<Array<Maybe<AgentStudioAssistantScenario>>>;
3429
+ version?: Maybe<AgentStudioAgentVersion>;
3430
+ };
3431
+ export declare type AgentStudioAssistantScenarioListArgs = {
3432
+ after?: InputMaybe<Scalars['String']['input']>;
3433
+ before?: InputMaybe<Scalars['String']['input']>;
3434
+ first?: InputMaybe<Scalars['Int']['input']>;
3435
+ last?: InputMaybe<Scalars['Int']['input']>;
3300
3436
  };
3301
3437
  export declare type AgentStudioAssistantConversation = {
3302
3438
  __typename?: 'AgentStudioAssistantConversation';
@@ -3466,6 +3602,8 @@ export declare type AgentStudioConversationListResult = {
3466
3602
  __typename?: 'AgentStudioConversationListResult';
3467
3603
  edges?: Maybe<Array<Maybe<AgentStudioAssistantConversationEdge>>>;
3468
3604
  errors?: Maybe<Array<Maybe<QueryError>>>;
3605
+ jobRunId?: Maybe<Scalars['ID']['output']>;
3606
+ judgeMode?: Maybe<AgentStudioJudgeMode>;
3469
3607
  pageInfo: PageInfo;
3470
3608
  };
3471
3609
  export declare type AgentStudioConversationReport = {
@@ -3622,6 +3760,9 @@ export declare type AgentStudioDeleteWidgetPayload = Payload & {
3622
3760
  errors?: Maybe<Array<MutationError>>;
3623
3761
  success: Scalars['Boolean']['output'];
3624
3762
  };
3763
+ export declare type AgentStudioDuplicateAgentInput = {
3764
+ name?: InputMaybe<Scalars['String']['input']>;
3765
+ };
3625
3766
  export declare type AgentStudioEmailChannel = AgentStudioChannel & {
3626
3767
  __typename?: 'AgentStudioEmailChannel';
3627
3768
  connected?: Maybe<Scalars['Boolean']['output']>;
@@ -3676,6 +3817,11 @@ export declare type AgentStudioEvaluationSummary = {
3676
3817
  totalItems: Scalars['Int']['output'];
3677
3818
  totalRunTimeMs?: Maybe<Scalars['Int']['output']>;
3678
3819
  };
3820
+ export declare type AgentStudioHasVersionCapability = {
3821
+ __typename?: 'AgentStudioHasVersionCapability';
3822
+ hasVersionCapability?: Maybe<Scalars['Boolean']['output']>;
3823
+ };
3824
+ export declare type AgentStudioHasVersionCapabilityResult = AgentStudioHasVersionCapability | QueryError;
3679
3825
  export declare type AgentStudioHelpCenter = {
3680
3826
  __typename?: 'AgentStudioHelpCenter';
3681
3827
  name?: Maybe<Scalars['String']['output']>;
@@ -3830,11 +3976,22 @@ export declare type AgentStudioPortalChannel = AgentStudioChannel & {
3830
3976
  connected?: Maybe<Scalars['Boolean']['output']>;
3831
3977
  url?: Maybe<Scalars['String']['output']>;
3832
3978
  };
3979
+ export declare type AgentStudioProductAriAgentResult = {
3980
+ __typename?: 'AgentStudioProductAriAgentResult';
3981
+ agent?: Maybe<AgentStudioAgentResult>;
3982
+ hasAgent: Scalars['Boolean']['output'];
3983
+ };
3833
3984
  export declare enum AgentStudioProductType {
3834
3985
  Csm = "CSM",
3835
3986
  RovoAgents = "ROVO_AGENTS",
3836
3987
  RovoServiceAgents = "ROVO_SERVICE_AGENTS"
3837
3988
  }
3989
+ export declare type AgentStudioPublishAgentVersionPayload = Payload & {
3990
+ __typename?: 'AgentStudioPublishAgentVersionPayload';
3991
+ agent?: Maybe<AgentStudioAgent>;
3992
+ errors?: Maybe<Array<MutationError>>;
3993
+ success: Scalars['Boolean']['output'];
3994
+ };
3838
3995
  export declare type AgentStudioRemoveGroupsFromCreatePermissionPayload = Payload & {
3839
3996
  __typename?: 'AgentStudioRemoveGroupsFromCreatePermissionPayload';
3840
3997
  errors?: Maybe<Array<MutationError>>;
@@ -3949,7 +4106,15 @@ export declare type AgentStudioServiceAgent = AgentStudioAgent & Node & {
3949
4106
  linkedJiraProject?: Maybe<JiraProject>;
3950
4107
  name?: Maybe<Scalars['String']['output']>;
3951
4108
  permissions?: Maybe<AgentStudioAgentPermissions>;
4109
+ scenarioList?: Maybe<AgentStudioScenariosResult>;
3952
4110
  scenarios?: Maybe<Array<Maybe<AgentStudioAssistantScenario>>>;
4111
+ version?: Maybe<AgentStudioAgentVersion>;
4112
+ };
4113
+ export declare type AgentStudioServiceAgentScenarioListArgs = {
4114
+ after?: InputMaybe<Scalars['String']['input']>;
4115
+ before?: InputMaybe<Scalars['String']['input']>;
4116
+ first?: InputMaybe<Scalars['Int']['input']>;
4117
+ last?: InputMaybe<Scalars['Int']['input']>;
3953
4118
  };
3954
4119
  export declare type AgentStudioSetWidgetByContainerAriInput = {
3955
4120
  agentAri: Scalars['ID']['input'];
@@ -4229,6 +4394,19 @@ export declare type AgentWorkspaceAgentAvailability = {
4229
4394
  teamNames: Array<Scalars['String']['output']>;
4230
4395
  updatedAt: Scalars['DateTime']['output'];
4231
4396
  };
4397
+ export declare type AgentWorkspaceAgentCapacity = {
4398
+ __typename?: 'AgentWorkspaceAgentCapacity';
4399
+ agentId: Scalars['ID']['output'];
4400
+ agentName: Scalars['String']['output'];
4401
+ availableSlots: Scalars['Int']['output'];
4402
+ currentLoad: Scalars['Int']['output'];
4403
+ maxCapacity: Scalars['Int']['output'];
4404
+ status: AgentWorkspaceCapacityStatus;
4405
+ teamIds: Array<Scalars['ID']['output']>;
4406
+ teamNames: Array<Scalars['String']['output']>;
4407
+ updatedAt: Scalars['DateTime']['output'];
4408
+ utilizationPercent: Scalars['Float']['output'];
4409
+ };
4232
4410
  export declare type AgentWorkspaceAgentShifts = {
4233
4411
  __typename?: 'AgentWorkspaceAgentShifts';
4234
4412
  agent: AgentWorkspaceAgent;
@@ -4276,6 +4454,51 @@ export declare type AgentWorkspaceAvailabilitySummary = {
4276
4454
  onBreak: Scalars['Int']['output'];
4277
4455
  onDuty: Scalars['Int']['output'];
4278
4456
  };
4457
+ export declare type AgentWorkspaceCapacityConnection = {
4458
+ __typename?: 'AgentWorkspaceCapacityConnection';
4459
+ nodes: Array<AgentWorkspaceAgentCapacity>;
4460
+ pageInfo: AgentWorkspaceCapacityPageInfo;
4461
+ summary: AgentWorkspaceCapacitySummary;
4462
+ };
4463
+ export declare type AgentWorkspaceCapacityError = {
4464
+ __typename?: 'AgentWorkspaceCapacityError';
4465
+ code: Scalars['String']['output'];
4466
+ field?: Maybe<Scalars['String']['output']>;
4467
+ message: Scalars['String']['output'];
4468
+ };
4469
+ export declare type AgentWorkspaceCapacityInput = {
4470
+ agentIds?: InputMaybe<Array<Scalars['ID']['input']>>;
4471
+ cloudId: Scalars['ID']['input'];
4472
+ page?: InputMaybe<Scalars['Int']['input']>;
4473
+ pageSize?: InputMaybe<Scalars['Int']['input']>;
4474
+ projectKey: Scalars['String']['input'];
4475
+ statuses?: InputMaybe<Array<AgentWorkspaceCapacityStatus>>;
4476
+ teamIds?: InputMaybe<Array<Scalars['ID']['input']>>;
4477
+ };
4478
+ export declare type AgentWorkspaceCapacityPageInfo = {
4479
+ __typename?: 'AgentWorkspaceCapacityPageInfo';
4480
+ currentPage: Scalars['Int']['output'];
4481
+ hasNextPage: Scalars['Boolean']['output'];
4482
+ hasPreviousPage: Scalars['Boolean']['output'];
4483
+ pageSize: Scalars['Int']['output'];
4484
+ totalCount: Scalars['Int']['output'];
4485
+ totalPages: Scalars['Int']['output'];
4486
+ };
4487
+ export declare enum AgentWorkspaceCapacityStatus {
4488
+ High = "HIGH",
4489
+ Idle = "IDLE",
4490
+ Optimal = "OPTIMAL",
4491
+ Overloaded = "OVERLOADED"
4492
+ }
4493
+ export declare type AgentWorkspaceCapacitySummary = {
4494
+ __typename?: 'AgentWorkspaceCapacitySummary';
4495
+ activeAgents: Scalars['Int']['output'];
4496
+ agentsWithWorkItems: Scalars['Int']['output'];
4497
+ assignedPercent: Scalars['Float']['output'];
4498
+ overloadedCount: Scalars['Int']['output'];
4499
+ totalAssignedWorkItems: Scalars['Int']['output'];
4500
+ totalCapacity: Scalars['Int']['output'];
4501
+ };
4279
4502
  export declare type AgentWorkspaceCreateScheduleInput = {
4280
4503
  agentIds: Array<Scalars['ID']['input']>;
4281
4504
  cloudId: Scalars['ID']['input'];
@@ -4303,6 +4526,12 @@ export declare enum AgentWorkspaceDayOfWeek {
4303
4526
  Tuesday = "TUESDAY",
4304
4527
  Wednesday = "WEDNESDAY"
4305
4528
  }
4529
+ export declare type AgentWorkspaceDefaultCapacity = {
4530
+ __typename?: 'AgentWorkspaceDefaultCapacity';
4531
+ defaultCapacity: Scalars['Int']['output'];
4532
+ projectId: Scalars['ID']['output'];
4533
+ updatedAt: Scalars['DateTime']['output'];
4534
+ };
4306
4535
  export declare type AgentWorkspaceDeleteScheduleInput = {
4307
4536
  cloudId: Scalars['ID']['input'];
4308
4537
  projectId?: InputMaybe<Scalars['ID']['input']>;
@@ -4391,6 +4620,17 @@ export declare type AgentWorkspaceScheduleVersion = {
4391
4620
  versionEndTime: Scalars['DateTime']['output'];
4392
4621
  versionStartTime: Scalars['DateTime']['output'];
4393
4622
  };
4623
+ export declare type AgentWorkspaceSetDefaultCapacityInput = {
4624
+ cloudId: Scalars['ID']['input'];
4625
+ defaultCapacity: Scalars['Int']['input'];
4626
+ projectKey: Scalars['String']['input'];
4627
+ };
4628
+ export declare type AgentWorkspaceSetDefaultCapacityPayload = {
4629
+ __typename?: 'AgentWorkspaceSetDefaultCapacityPayload';
4630
+ defaultCapacity?: Maybe<AgentWorkspaceDefaultCapacity>;
4631
+ errors?: Maybe<Array<AgentWorkspaceCapacityError>>;
4632
+ success: Scalars['Boolean']['output'];
4633
+ };
4394
4634
  export declare type AgentWorkspaceShift = {
4395
4635
  __typename?: 'AgentWorkspaceShift';
4396
4636
  agentId: Scalars['ID']['output'];
@@ -13426,6 +13666,7 @@ export declare type CommerceExpCcpQuery = {
13426
13666
  orderV3?: Maybe<CommerceExpCcpOrderV3>;
13427
13667
  orders?: Maybe<Array<Maybe<CommerceExpCcpOrder>>>;
13428
13668
  paginatedTransactionAccountsForUser?: Maybe<CommerceExpTransactionAccountConnection>;
13669
+ partnerManagedEntitlements?: Maybe<CommerceExpCcpEntitlementConnection>;
13429
13670
  paymentMethod?: Maybe<CommerceExpPaymentMethod>;
13430
13671
  pricingPlan?: Maybe<CommerceExpCcpPricingPlan>;
13431
13672
  pricingPlans?: Maybe<Array<Maybe<CommerceExpCcpPricingPlan>>>;
@@ -13483,6 +13724,13 @@ export declare type CommerceExpCcpQueryPaginatedTransactionAccountsForUserArgs =
13483
13724
  first?: InputMaybe<Scalars['Int']['input']>;
13484
13725
  last?: InputMaybe<Scalars['Int']['input']>;
13485
13726
  };
13727
+ export declare type CommerceExpCcpQueryPartnerManagedEntitlementsArgs = {
13728
+ after?: InputMaybe<Scalars['String']['input']>;
13729
+ before?: InputMaybe<Scalars['String']['input']>;
13730
+ filter?: InputMaybe<CommerceExpEntitlementFilter>;
13731
+ first?: InputMaybe<Scalars['Int']['input']>;
13732
+ last?: InputMaybe<Scalars['Int']['input']>;
13733
+ };
13486
13734
  export declare type CommerceExpCcpQueryPaymentMethodArgs = {
13487
13735
  id: Scalars['ID']['input'];
13488
13736
  };
@@ -21595,6 +21843,14 @@ export declare type ConfluenceApplicationLink = {
21595
21843
  rpcUrl?: Maybe<Scalars['String']['output']>;
21596
21844
  typeId: Scalars['String']['output'];
21597
21845
  };
21846
+ export declare enum ConfluenceApprovalTransitionType {
21847
+ Directed = "DIRECTED",
21848
+ Initial = "INITIAL"
21849
+ }
21850
+ export declare type ConfluenceApprovalsDate = {
21851
+ __typename?: 'ConfluenceApprovalsDate';
21852
+ value: Scalars['String']['output'];
21853
+ };
21598
21854
  export declare type ConfluenceApprovalsWorkflowStatus = {
21599
21855
  __typename?: 'ConfluenceApprovalsWorkflowStatus';
21600
21856
  allowsReviews?: Maybe<Scalars['Boolean']['output']>;
@@ -23413,6 +23669,12 @@ export declare type ConfluenceGenerateSearchPerformedEventPayload = Payload & {
23413
23669
  errors?: Maybe<Array<MutationError>>;
23414
23670
  success: Scalars['Boolean']['output'];
23415
23671
  };
23672
+ export declare type ConfluenceGenerateSpacePermissionCombinationsPayload = Payload & {
23673
+ __typename?: 'ConfluenceGenerateSpacePermissionCombinationsPayload';
23674
+ errors?: Maybe<Array<MutationError>>;
23675
+ success: Scalars['Boolean']['output'];
23676
+ taskId?: Maybe<Scalars['ID']['output']>;
23677
+ };
23416
23678
  export declare type ConfluenceGeneratedSpaceKey = {
23417
23679
  __typename?: 'ConfluenceGeneratedSpaceKey';
23418
23680
  key?: Maybe<Scalars['String']['output']>;
@@ -24392,7 +24654,7 @@ export declare type ConfluenceNbmStartPerfScanLongTaskPayload = Payload & {
24392
24654
  export declare type ConfluenceNbmStartScanLongTaskInput = {
24393
24655
  includeAllSpaces: Scalars['Boolean']['input'];
24394
24656
  scanId?: InputMaybe<Scalars['String']['input']>;
24395
- spaceIds: Array<Scalars['Long']['input']>;
24657
+ spaceIds: Array<InputMaybe<Scalars['Long']['input']>>;
24396
24658
  };
24397
24659
  export declare type ConfluenceNbmStartScanLongTaskPayload = Payload & {
24398
24660
  __typename?: 'ConfluenceNbmStartScanLongTaskPayload';
@@ -24402,12 +24664,16 @@ export declare type ConfluenceNbmStartScanLongTaskPayload = Payload & {
24402
24664
  taskId?: Maybe<Scalars['ID']['output']>;
24403
24665
  };
24404
24666
  export declare type ConfluenceNbmStartTransformationLongTaskInput = {
24667
+ runMode: ConfluenceNbmTransformationRunMode;
24405
24668
  scanId: Scalars['ID']['input'];
24406
- transformationEntryIds: Array<InputMaybe<Scalars['String']['input']>>;
24669
+ spaceKeyInclusion: ConfluenceNbmTransformationSpaceKeyInclusion;
24670
+ spaceKeys: Array<InputMaybe<Scalars['String']['input']>>;
24671
+ transformerNames: Array<InputMaybe<Scalars['String']['input']>>;
24407
24672
  };
24408
24673
  export declare type ConfluenceNbmStartTransformationLongTaskPayload = Payload & {
24409
24674
  __typename?: 'ConfluenceNbmStartTransformationLongTaskPayload';
24410
24675
  errors?: Maybe<Array<MutationError>>;
24676
+ runMode?: Maybe<ConfluenceNbmTransformationRunMode>;
24411
24677
  scanId?: Maybe<Scalars['ID']['output']>;
24412
24678
  success: Scalars['Boolean']['output'];
24413
24679
  taskId?: Maybe<Scalars['ID']['output']>;
@@ -24445,6 +24711,14 @@ export declare type ConfluenceNbmTransformationListEdge = {
24445
24711
  cursor?: Maybe<Scalars['String']['output']>;
24446
24712
  node?: Maybe<ConfluenceNbmTransformationEntry>;
24447
24713
  };
24714
+ export declare enum ConfluenceNbmTransformationRunMode {
24715
+ DryRun = "DRY_RUN",
24716
+ Execute = "EXECUTE"
24717
+ }
24718
+ export declare enum ConfluenceNbmTransformationSpaceKeyInclusion {
24719
+ Exclude = "EXCLUDE",
24720
+ Include = "INCLUDE"
24721
+ }
24448
24722
  export declare enum ConfluenceNbmTransformationStatus {
24449
24723
  Cancelled = "CANCELLED",
24450
24724
  Completed = "COMPLETED",
@@ -24947,6 +25221,7 @@ export declare type ConfluencePendingAccessRequest = {
24947
25221
  };
24948
25222
  export declare enum ConfluencePermission {
24949
25223
  Edit = "EDIT",
25224
+ Share = "SHARE",
24950
25225
  View = "VIEW"
24951
25226
  }
24952
25227
  export declare type ConfluencePermissionCombinationPrincipalTypeAssignmentInput = {
@@ -25673,6 +25948,20 @@ export declare type ConfluenceRestrictionsResult = {
25673
25948
  __typename?: 'ConfluenceRestrictionsResult';
25674
25949
  restrictions: Array<Maybe<ConfluenceRestriction>>;
25675
25950
  };
25951
+ export declare type ConfluenceReviewerDecisionInfo = {
25952
+ __typename?: 'ConfluenceReviewerDecisionInfo';
25953
+ comment?: Maybe<Scalars['String']['output']>;
25954
+ lastModifiedDate?: Maybe<ConfluenceApprovalsDate>;
25955
+ principalId: Scalars['String']['output'];
25956
+ principalType: ConfluencePrincipalType;
25957
+ reviewerDecisionStatus?: Maybe<ConfluenceReviewerDecisionState>;
25958
+ };
25959
+ export declare enum ConfluenceReviewerDecisionState {
25960
+ PendingReview = "PENDING_REVIEW",
25961
+ ReviewerApproved = "REVIEWER_APPROVED",
25962
+ ReviewerDenied = "REVIEWER_DENIED",
25963
+ ReviewCanceled = "REVIEW_CANCELED"
25964
+ }
25676
25965
  export declare enum ConfluenceRoleAssignabilityCode {
25677
25966
  Assignable = "ASSIGNABLE",
25678
25967
  DefaultRoleAssignmentNotSupported = "DEFAULT_ROLE_ASSIGNMENT_NOT_SUPPORTED",
@@ -26303,6 +26592,7 @@ export declare type ConfluenceTrack = {
26303
26592
  mainSource: Scalars['ID']['output'];
26304
26593
  supportingContent?: Maybe<Array<Maybe<Content>>>;
26305
26594
  supportingSources?: Maybe<Array<Scalars['ID']['output']>>;
26595
+ trackSource?: Maybe<ConfluenceTrackSource>;
26306
26596
  type: ConfluenceTrackType;
26307
26597
  };
26308
26598
  export declare type ConfluenceTrackEdge = {
@@ -26313,8 +26603,18 @@ export declare type ConfluenceTrackEdge = {
26313
26603
  export declare type ConfluenceTrackInput = {
26314
26604
  mainSource: Scalars['ID']['input'];
26315
26605
  supportingSources?: InputMaybe<Array<Scalars['ID']['input']>>;
26606
+ trackSource?: InputMaybe<ConfluenceTrackSourceInput>;
26316
26607
  trackType: ConfluenceTrackType;
26317
26608
  };
26609
+ export declare enum ConfluenceTrackSource {
26610
+ Mobile = "MOBILE",
26611
+ Unknown = "UNKNOWN",
26612
+ Web = "WEB"
26613
+ }
26614
+ export declare enum ConfluenceTrackSourceInput {
26615
+ Mobile = "MOBILE",
26616
+ Web = "WEB"
26617
+ }
26318
26618
  export declare enum ConfluenceTrackType {
26319
26619
  Briefing = "BRIEFING",
26320
26620
  Narration = "NARRATION"
@@ -26558,6 +26858,13 @@ export declare type ConfluenceUpdateContentAppearancePayload = {
26558
26858
  errors?: Maybe<Array<MutationError>>;
26559
26859
  success: Scalars['Boolean']['output'];
26560
26860
  };
26861
+ export declare type ConfluenceUpdateContentApprovalRequestInput = {
26862
+ approvalStatus?: InputMaybe<ConfluenceWorkflowReviewStatus>;
26863
+ comment?: InputMaybe<Scalars['String']['input']>;
26864
+ contentApprovalReviewId: Scalars['Long']['input'];
26865
+ reviewers?: InputMaybe<Array<InputMaybe<ConfluenceContentApprovalReviewerInput>>>;
26866
+ workflowApplicationId: Scalars['Long']['input'];
26867
+ };
26561
26868
  export declare type ConfluenceUpdateContentDirectRestrictionsInput = {
26562
26869
  add?: InputMaybe<ConfluenceDirectRestrictionsAddInput>;
26563
26870
  contentId: Scalars['ID']['input'];
@@ -26849,6 +27156,11 @@ export declare type ConfluenceUpdateQuestionPayload = Payload & {
26849
27156
  question?: Maybe<ConfluenceQuestion>;
26850
27157
  success: Scalars['Boolean']['output'];
26851
27158
  };
27159
+ export declare type ConfluenceUpdateReviewerDecisionInput = {
27160
+ comment?: InputMaybe<Scalars['String']['input']>;
27161
+ decisionStatus: ConfluenceReviewerDecisionState;
27162
+ reviewerId: Scalars['Long']['input'];
27163
+ };
26852
27164
  export declare type ConfluenceUpdateShareableLinksInput = {
26853
27165
  accessType: ConfluencePublicLinkAccessType;
26854
27166
  contentId: Scalars['ID']['input'];
@@ -27272,12 +27584,30 @@ export declare enum ConfluenceWorkflowReviewStatus {
27272
27584
  Denied = "DENIED",
27273
27585
  Pending = "PENDING"
27274
27586
  }
27587
+ export declare type ConfluenceWorkflowReviewWithDecisions = {
27588
+ __typename?: 'ConfluenceWorkflowReviewWithDecisions';
27589
+ reviewComment?: Maybe<Scalars['String']['output']>;
27590
+ reviewLastModified?: Maybe<ConfluenceApprovalsDate>;
27591
+ reviewStatus: ConfluenceWorkflowReviewStatus;
27592
+ reviewerDecisions: Array<Maybe<ConfluenceReviewerDecisionInfo>>;
27593
+ };
27594
+ export declare type ConfluenceWorkflowReviewWithDecisionsPayload = {
27595
+ __typename?: 'ConfluenceWorkflowReviewWithDecisionsPayload';
27596
+ errors: Array<MutationError>;
27597
+ success: Scalars['Boolean']['output'];
27598
+ workflowReviewWithDecisions?: Maybe<ConfluenceWorkflowReviewWithDecisions>;
27599
+ };
27275
27600
  export declare type ConfluenceWorkflowReviewer = {
27276
27601
  __typename?: 'ConfluenceWorkflowReviewer';
27277
27602
  isRequired: Scalars['Boolean']['output'];
27278
27603
  principalId: Scalars['String']['output'];
27279
27604
  principalType: Scalars['String']['output'];
27280
27605
  };
27606
+ export declare type ConfluenceWorkflowReviewerDecisionPayload = {
27607
+ __typename?: 'ConfluenceWorkflowReviewerDecisionPayload';
27608
+ errors: Array<MutationError>;
27609
+ success: Scalars['Boolean']['output'];
27610
+ };
27281
27611
  export declare type Confluence_CqlMetaData = {
27282
27612
  __typename?: 'Confluence_cqlMetaData';
27283
27613
  cqlContentTypes: Array<Maybe<CqlDisplayableType>>;
@@ -27523,6 +27853,7 @@ export declare type Content = {
27523
27853
  visibleDescendantsCount: Scalars['Long']['output'];
27524
27854
  };
27525
27855
  export declare type ContentAiPropertyArgs = {
27856
+ entryPoint?: InputMaybe<Scalars['String']['input']>;
27526
27857
  objectType?: KnowledgeGraphObjectType;
27527
27858
  };
27528
27859
  export declare type ContentAttachmentsArgs = {
@@ -29564,7 +29895,9 @@ export declare type ConvoAiHomeThreadSuggestedAction = {
29564
29895
  };
29565
29896
  export declare enum ConvoAiHomeThreadSuggestedActionOriginType {
29566
29897
  CommentRule = "COMMENT_RULE",
29898
+ ConfluenceInlineTasksRule = "CONFLUENCE_INLINE_TASKS_RULE",
29567
29899
  ConfluencePageRule = "CONFLUENCE_PAGE_RULE",
29900
+ ConfluenceTaggedPageRule = "CONFLUENCE_TAGGED_PAGE_RULE",
29568
29901
  JiraIssueRule = "JIRA_ISSUE_RULE",
29569
29902
  Llm = "LLM",
29570
29903
  LoomVideoRule = "LOOM_VIDEO_RULE",
@@ -29572,8 +29905,10 @@ export declare enum ConvoAiHomeThreadSuggestedActionOriginType {
29572
29905
  }
29573
29906
  export declare enum ConvoAiHomeThreadSuggestedActionType {
29574
29907
  Delete = "DELETE",
29908
+ JumpBackIn = "JUMP_BACK_IN",
29575
29909
  Reply = "REPLY",
29576
29910
  Share = "SHARE",
29911
+ TakeAction = "TAKE_ACTION",
29577
29912
  View = "VIEW"
29578
29913
  }
29579
29914
  export declare type ConvoAiHomeThreadsEdge = {
@@ -29820,6 +30155,7 @@ export declare type CplsAddContributorWorkAssociationPayload = Payload & {
29820
30155
  contributorWorkAssociations?: Maybe<Array<Maybe<CplsContributorWorkEdge>>>;
29821
30156
  errors?: Maybe<Array<MutationError>>;
29822
30157
  success: Scalars['Boolean']['output'];
30158
+ workContributorAssociations?: Maybe<Array<Maybe<CplsWorkContributorEdge>>>;
29823
30159
  };
29824
30160
  export declare type CplsAddWorkScopeAssociationsInput = {
29825
30161
  cloudId: Scalars['ID']['input'];
@@ -30202,6 +30538,7 @@ export declare type CplsWork = {
30202
30538
  resourcing?: Maybe<CplsWorkResourcing>;
30203
30539
  workContributors?: Maybe<CplsWorkContributorConnection>;
30204
30540
  workData?: Maybe<CplsWorkData>;
30541
+ workDataId?: Maybe<Scalars['ID']['output']>;
30205
30542
  };
30206
30543
  export declare type CplsWorkWorkContributorsArgs = {
30207
30544
  after?: InputMaybe<Scalars['String']['input']>;
@@ -34670,7 +35007,6 @@ export declare type DevConsoleDeveloperSpaceWithRole = {
34670
35007
  };
34671
35008
  export declare type DevConsoleDownloadAppInstallationsResponse = {
34672
35009
  __typename?: 'DevConsoleDownloadAppInstallationsResponse';
34673
- downloadUrl?: Maybe<Scalars['String']['output']>;
34674
35010
  errors?: Maybe<Array<QueryError>>;
34675
35011
  lastDownloadedAt?: Maybe<Scalars['String']['output']>;
34676
35012
  status: DevConsoleDownloadAppInstallationsStatus;
@@ -36640,7 +36976,7 @@ export declare type EcosystemMutation = {
36640
36976
  removeAppContributors?: Maybe<RemoveAppContributorsResponsePayload>;
36641
36977
  updateAppContributorRole?: Maybe<UpdateAppContributorRoleResponsePayload>;
36642
36978
  updateAppHostServiceScopes?: Maybe<UpdateAppHostServiceScopesResponsePayload>;
36643
- updateAppOAuthClient: EcosystemUpdateAppOAuthClientResult;
36979
+ updateAppOAuthClient?: Maybe<EcosystemUpdateAppOAuthClientResult>;
36644
36980
  updateAppOwnership?: Maybe<UpdateAppOwnershipResponsePayload>;
36645
36981
  updateGlobalInstallationConfig?: Maybe<EcosystemGlobalInstallationConfigResponse>;
36646
36982
  updateInstallationDetails?: Maybe<UpdateInstallationDetailsResponse>;
@@ -36727,7 +37063,7 @@ export declare type EcosystemQuery = {
36727
37063
  appPoliciesByAppIds?: Maybe<Array<EcosystemAppPoliciesByAppId>>;
36728
37064
  appVersionEnrolments?: Maybe<Array<Maybe<AppVersionEnrolment>>>;
36729
37065
  appVersionRollout?: Maybe<AppVersionRollout>;
36730
- appsInstalledInContexts: EcosystemAppsInstalledInContextsConnection;
37066
+ appsInstalledInContexts?: Maybe<EcosystemAppsInstalledInContextsConnection>;
36731
37067
  checkConsentPermissionByOAuthClientId?: Maybe<PermissionToConsentByOauthId>;
36732
37068
  dataClassifications?: Maybe<EcosystemDataClassificationsContext>;
36733
37069
  devConsole?: Maybe<DevConsoleQuery>;
@@ -36737,7 +37073,7 @@ export declare type EcosystemQuery = {
36737
37073
  forgeMetrics?: Maybe<ForgeMetricsQuery>;
36738
37074
  fortifiedMetrics?: Maybe<FortifiedMetricsQuery>;
36739
37075
  globalInstallationConfig?: Maybe<Array<Maybe<EcosystemGlobalInstallationOverride>>>;
36740
- marketplaceData: EcosystemMarketplaceData;
37076
+ marketplaceData?: Maybe<EcosystemMarketplaceData>;
36741
37077
  userAccess?: Maybe<UserAccess>;
36742
37078
  userGrants?: Maybe<UserGrantConnection>;
36743
37079
  userInstallationRules?: Maybe<UserInstallationRules>;
@@ -38371,6 +38707,8 @@ export declare type ExternalSoftwareServiceAssociationsMetadataTuple = {
38371
38707
  export declare type ExternalSpace = Node & {
38372
38708
  __typename?: 'ExternalSpace';
38373
38709
  associatedWith?: Maybe<ExternalAssociationConnection>;
38710
+ container?: Maybe<ExternalEntity>;
38711
+ containerId?: Maybe<Scalars['ID']['output']>;
38374
38712
  createdAt?: Maybe<Scalars['String']['output']>;
38375
38713
  createdBy?: Maybe<ExternalUser>;
38376
38714
  description?: Maybe<Scalars['String']['output']>;
@@ -38382,12 +38720,14 @@ export declare type ExternalSpace = Node & {
38382
38720
  labels?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
38383
38721
  lastUpdated?: Maybe<Scalars['String']['output']>;
38384
38722
  lastUpdatedBy?: Maybe<ExternalUser>;
38723
+ owners?: Maybe<Array<Maybe<ExternalUser>>>;
38385
38724
  parent?: Maybe<ExternalEntity>;
38386
38725
  parentId?: Maybe<Scalars['ID']['output']>;
38387
38726
  provider?: Maybe<ExternalProvider>;
38388
38727
  spaceType?: Maybe<Scalars['String']['output']>;
38389
38728
  subtype?: Maybe<ExternalSpaceSubtype>;
38390
38729
  thirdPartyId?: Maybe<Scalars['String']['output']>;
38730
+ thumbnail?: Maybe<ExternalThumbnail>;
38391
38731
  updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
38392
38732
  url?: Maybe<Scalars['String']['output']>;
38393
38733
  };
@@ -40252,6 +40592,7 @@ export declare type GlobalSpaceIdentifier = {
40252
40592
  export declare enum GrantCheckProduct {
40253
40593
  Compass = "COMPASS",
40254
40594
  Confluence = "CONFLUENCE",
40595
+ Feedback = "FEEDBACK",
40255
40596
  Jira = "JIRA",
40256
40597
  JiraServicedesk = "JIRA_SERVICEDESK",
40257
40598
  Mercury = "MERCURY",
@@ -44559,6 +44900,10 @@ export declare type GraphStore = {
44559
44900
  conversationHasMessageInverse?: Maybe<GraphStoreSimplifiedConversationHasMessageInverseConnection>;
44560
44901
  csmCustomerHasJiraWorkItem?: Maybe<GraphStoreSimplifiedCsmCustomerHasJiraWorkItemConnection>;
44561
44902
  csmCustomerHasJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedCsmCustomerHasJiraWorkItemInverseConnection>;
44903
+ csmOrganizationHasCsmCustomer?: Maybe<GraphStoreSimplifiedCsmOrganizationHasCsmCustomerConnection>;
44904
+ csmOrganizationHasCsmCustomerInverse?: Maybe<GraphStoreSimplifiedCsmOrganizationHasCsmCustomerInverseConnection>;
44905
+ csmOrganizationHasJiraWorkItem?: Maybe<GraphStoreSimplifiedCsmOrganizationHasJiraWorkItemConnection>;
44906
+ csmOrganizationHasJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedCsmOrganizationHasJiraWorkItemInverseConnection>;
44562
44907
  customerAssociatedIssue?: Maybe<GraphStoreSimplifiedCustomerAssociatedIssueConnection>;
44563
44908
  customerAssociatedIssueInverse?: Maybe<GraphStoreSimplifiedCustomerAssociatedIssueInverseConnection>;
44564
44909
  customerHasExternalConversation?: Maybe<GraphStoreSimplifiedCustomerHasExternalConversationConnection>;
@@ -45037,6 +45382,8 @@ export declare type GraphStore = {
45037
45382
  teamConnectedToContainerInverse?: Maybe<GraphStoreSimplifiedTeamConnectedToContainerInverseConnection>;
45038
45383
  teamHasAgents?: Maybe<GraphStoreSimplifiedTeamHasAgentsConnection>;
45039
45384
  teamHasAgentsInverse?: Maybe<GraphStoreSimplifiedTeamHasAgentsInverseConnection>;
45385
+ teamHasCustomFieldValue?: Maybe<GraphStoreSimplifiedTeamHasCustomFieldValueConnection>;
45386
+ teamHasCustomFieldValueInverse?: Maybe<GraphStoreSimplifiedTeamHasCustomFieldValueInverseConnection>;
45040
45387
  teamIsOfType?: Maybe<GraphStoreSimplifiedTeamIsOfTypeConnection>;
45041
45388
  teamIsOfTypeInverse?: Maybe<GraphStoreSimplifiedTeamIsOfTypeInverseConnection>;
45042
45389
  teamOwnsComponent?: Maybe<GraphStoreSimplifiedTeamOwnsComponentConnection>;
@@ -46727,6 +47074,38 @@ export declare type GraphStoreCsmCustomerHasJiraWorkItemInverseArgs = {
46727
47074
  queryContext?: InputMaybe<Scalars['String']['input']>;
46728
47075
  sort?: InputMaybe<GraphStoreCsmCustomerHasJiraWorkItemSortInput>;
46729
47076
  };
47077
+ export declare type GraphStoreCsmOrganizationHasCsmCustomerArgs = {
47078
+ after?: InputMaybe<Scalars['String']['input']>;
47079
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
47080
+ first?: InputMaybe<Scalars['Int']['input']>;
47081
+ id: Scalars['ID']['input'];
47082
+ queryContext?: InputMaybe<Scalars['String']['input']>;
47083
+ sort?: InputMaybe<GraphStoreCsmOrganizationHasCsmCustomerSortInput>;
47084
+ };
47085
+ export declare type GraphStoreCsmOrganizationHasCsmCustomerInverseArgs = {
47086
+ after?: InputMaybe<Scalars['String']['input']>;
47087
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
47088
+ first?: InputMaybe<Scalars['Int']['input']>;
47089
+ id: Scalars['ID']['input'];
47090
+ queryContext?: InputMaybe<Scalars['String']['input']>;
47091
+ sort?: InputMaybe<GraphStoreCsmOrganizationHasCsmCustomerSortInput>;
47092
+ };
47093
+ export declare type GraphStoreCsmOrganizationHasJiraWorkItemArgs = {
47094
+ after?: InputMaybe<Scalars['String']['input']>;
47095
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
47096
+ first?: InputMaybe<Scalars['Int']['input']>;
47097
+ id: Scalars['ID']['input'];
47098
+ queryContext?: InputMaybe<Scalars['String']['input']>;
47099
+ sort?: InputMaybe<GraphStoreCsmOrganizationHasJiraWorkItemSortInput>;
47100
+ };
47101
+ export declare type GraphStoreCsmOrganizationHasJiraWorkItemInverseArgs = {
47102
+ after?: InputMaybe<Scalars['String']['input']>;
47103
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
47104
+ first?: InputMaybe<Scalars['Int']['input']>;
47105
+ id: Scalars['ID']['input'];
47106
+ queryContext?: InputMaybe<Scalars['String']['input']>;
47107
+ sort?: InputMaybe<GraphStoreCsmOrganizationHasJiraWorkItemSortInput>;
47108
+ };
46730
47109
  export declare type GraphStoreCustomerAssociatedIssueArgs = {
46731
47110
  after?: InputMaybe<Scalars['String']['input']>;
46732
47111
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -50363,6 +50742,22 @@ export declare type GraphStoreTeamHasAgentsInverseArgs = {
50363
50742
  queryContext?: InputMaybe<Scalars['String']['input']>;
50364
50743
  sort?: InputMaybe<GraphStoreTeamHasAgentsSortInput>;
50365
50744
  };
50745
+ export declare type GraphStoreTeamHasCustomFieldValueArgs = {
50746
+ after?: InputMaybe<Scalars['String']['input']>;
50747
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
50748
+ first?: InputMaybe<Scalars['Int']['input']>;
50749
+ id: Scalars['ID']['input'];
50750
+ queryContext?: InputMaybe<Scalars['String']['input']>;
50751
+ sort?: InputMaybe<GraphStoreTeamHasCustomFieldValueSortInput>;
50752
+ };
50753
+ export declare type GraphStoreTeamHasCustomFieldValueInverseArgs = {
50754
+ after?: InputMaybe<Scalars['String']['input']>;
50755
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
50756
+ first?: InputMaybe<Scalars['Int']['input']>;
50757
+ id: Scalars['ID']['input'];
50758
+ queryContext?: InputMaybe<Scalars['String']['input']>;
50759
+ sort?: InputMaybe<GraphStoreTeamHasCustomFieldValueSortInput>;
50760
+ };
50366
50761
  export declare type GraphStoreTeamIsOfTypeArgs = {
50367
50762
  after?: InputMaybe<Scalars['String']['input']>;
50368
50763
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -55246,6 +55641,12 @@ export declare enum GraphStoreCreateVulnerabilityAssociatedIssueVulnerabilityTyp
55246
55641
  export declare type GraphStoreCsmCustomerHasJiraWorkItemSortInput = {
55247
55642
  lastModified?: InputMaybe<GraphStoreSortInput>;
55248
55643
  };
55644
+ export declare type GraphStoreCsmOrganizationHasCsmCustomerSortInput = {
55645
+ lastModified?: InputMaybe<GraphStoreSortInput>;
55646
+ };
55647
+ export declare type GraphStoreCsmOrganizationHasJiraWorkItemSortInput = {
55648
+ lastModified?: InputMaybe<GraphStoreSortInput>;
55649
+ };
55249
55650
  export declare type GraphStoreCustomerAssociatedIssueSortInput = {
55250
55651
  lastModified?: InputMaybe<GraphStoreSortInput>;
55251
55652
  };
@@ -62887,6 +63288,62 @@ export declare type GraphStoreSimplifiedCsmCustomerHasJiraWorkItemInverseEdge =
62887
63288
  };
62888
63289
  export declare type GraphStoreSimplifiedCsmCustomerHasJiraWorkItemInverseUnion = CustomerServiceCsmCustomer;
62889
63290
  export declare type GraphStoreSimplifiedCsmCustomerHasJiraWorkItemUnion = JiraIssue;
63291
+ export declare type GraphStoreSimplifiedCsmOrganizationHasCsmCustomerConnection = HasPageInfo & {
63292
+ __typename?: 'GraphStoreSimplifiedCsmOrganizationHasCsmCustomerConnection';
63293
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCsmOrganizationHasCsmCustomerEdge>>>;
63294
+ pageInfo: PageInfo;
63295
+ };
63296
+ export declare type GraphStoreSimplifiedCsmOrganizationHasCsmCustomerEdge = {
63297
+ __typename?: 'GraphStoreSimplifiedCsmOrganizationHasCsmCustomerEdge';
63298
+ createdAt: Scalars['DateTime']['output'];
63299
+ cursor?: Maybe<Scalars['String']['output']>;
63300
+ id: Scalars['ID']['output'];
63301
+ lastUpdated: Scalars['DateTime']['output'];
63302
+ node?: Maybe<GraphStoreSimplifiedCsmOrganizationHasCsmCustomerUnion>;
63303
+ };
63304
+ export declare type GraphStoreSimplifiedCsmOrganizationHasCsmCustomerInverseConnection = HasPageInfo & {
63305
+ __typename?: 'GraphStoreSimplifiedCsmOrganizationHasCsmCustomerInverseConnection';
63306
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCsmOrganizationHasCsmCustomerInverseEdge>>>;
63307
+ pageInfo: PageInfo;
63308
+ };
63309
+ export declare type GraphStoreSimplifiedCsmOrganizationHasCsmCustomerInverseEdge = {
63310
+ __typename?: 'GraphStoreSimplifiedCsmOrganizationHasCsmCustomerInverseEdge';
63311
+ createdAt: Scalars['DateTime']['output'];
63312
+ cursor?: Maybe<Scalars['String']['output']>;
63313
+ id: Scalars['ID']['output'];
63314
+ lastUpdated: Scalars['DateTime']['output'];
63315
+ node?: Maybe<GraphStoreSimplifiedCsmOrganizationHasCsmCustomerInverseUnion>;
63316
+ };
63317
+ export declare type GraphStoreSimplifiedCsmOrganizationHasCsmCustomerInverseUnion = CustomerServiceCsmOrganization;
63318
+ export declare type GraphStoreSimplifiedCsmOrganizationHasCsmCustomerUnion = CustomerServiceCsmCustomer;
63319
+ export declare type GraphStoreSimplifiedCsmOrganizationHasJiraWorkItemConnection = HasPageInfo & {
63320
+ __typename?: 'GraphStoreSimplifiedCsmOrganizationHasJiraWorkItemConnection';
63321
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCsmOrganizationHasJiraWorkItemEdge>>>;
63322
+ pageInfo: PageInfo;
63323
+ };
63324
+ export declare type GraphStoreSimplifiedCsmOrganizationHasJiraWorkItemEdge = {
63325
+ __typename?: 'GraphStoreSimplifiedCsmOrganizationHasJiraWorkItemEdge';
63326
+ createdAt: Scalars['DateTime']['output'];
63327
+ cursor?: Maybe<Scalars['String']['output']>;
63328
+ id: Scalars['ID']['output'];
63329
+ lastUpdated: Scalars['DateTime']['output'];
63330
+ node?: Maybe<GraphStoreSimplifiedCsmOrganizationHasJiraWorkItemUnion>;
63331
+ };
63332
+ export declare type GraphStoreSimplifiedCsmOrganizationHasJiraWorkItemInverseConnection = HasPageInfo & {
63333
+ __typename?: 'GraphStoreSimplifiedCsmOrganizationHasJiraWorkItemInverseConnection';
63334
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCsmOrganizationHasJiraWorkItemInverseEdge>>>;
63335
+ pageInfo: PageInfo;
63336
+ };
63337
+ export declare type GraphStoreSimplifiedCsmOrganizationHasJiraWorkItemInverseEdge = {
63338
+ __typename?: 'GraphStoreSimplifiedCsmOrganizationHasJiraWorkItemInverseEdge';
63339
+ createdAt: Scalars['DateTime']['output'];
63340
+ cursor?: Maybe<Scalars['String']['output']>;
63341
+ id: Scalars['ID']['output'];
63342
+ lastUpdated: Scalars['DateTime']['output'];
63343
+ node?: Maybe<GraphStoreSimplifiedCsmOrganizationHasJiraWorkItemInverseUnion>;
63344
+ };
63345
+ export declare type GraphStoreSimplifiedCsmOrganizationHasJiraWorkItemInverseUnion = CustomerServiceCsmOrganization;
63346
+ export declare type GraphStoreSimplifiedCsmOrganizationHasJiraWorkItemUnion = JiraIssue;
62890
63347
  export declare type GraphStoreSimplifiedCustomerAssociatedIssueConnection = HasPageInfo & {
62891
63348
  __typename?: 'GraphStoreSimplifiedCustomerAssociatedIssueConnection';
62892
63349
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCustomerAssociatedIssueEdge>>>;
@@ -67495,6 +67952,34 @@ export declare type GraphStoreSimplifiedTeamHasAgentsInverseEdge = {
67495
67952
  };
67496
67953
  export declare type GraphStoreSimplifiedTeamHasAgentsInverseUnion = TeamV2;
67497
67954
  export declare type GraphStoreSimplifiedTeamHasAgentsUnion = AppUser | AtlassianAccountUser | CustomerUser;
67955
+ export declare type GraphStoreSimplifiedTeamHasCustomFieldValueConnection = HasPageInfo & {
67956
+ __typename?: 'GraphStoreSimplifiedTeamHasCustomFieldValueConnection';
67957
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamHasCustomFieldValueEdge>>>;
67958
+ pageInfo: PageInfo;
67959
+ };
67960
+ export declare type GraphStoreSimplifiedTeamHasCustomFieldValueEdge = {
67961
+ __typename?: 'GraphStoreSimplifiedTeamHasCustomFieldValueEdge';
67962
+ createdAt: Scalars['DateTime']['output'];
67963
+ cursor?: Maybe<Scalars['String']['output']>;
67964
+ id: Scalars['ID']['output'];
67965
+ lastUpdated: Scalars['DateTime']['output'];
67966
+ node?: Maybe<GraphStoreSimplifiedTeamHasCustomFieldValueUnion>;
67967
+ };
67968
+ export declare type GraphStoreSimplifiedTeamHasCustomFieldValueInverseConnection = HasPageInfo & {
67969
+ __typename?: 'GraphStoreSimplifiedTeamHasCustomFieldValueInverseConnection';
67970
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamHasCustomFieldValueInverseEdge>>>;
67971
+ pageInfo: PageInfo;
67972
+ };
67973
+ export declare type GraphStoreSimplifiedTeamHasCustomFieldValueInverseEdge = {
67974
+ __typename?: 'GraphStoreSimplifiedTeamHasCustomFieldValueInverseEdge';
67975
+ createdAt: Scalars['DateTime']['output'];
67976
+ cursor?: Maybe<Scalars['String']['output']>;
67977
+ id: Scalars['ID']['output'];
67978
+ lastUpdated: Scalars['DateTime']['output'];
67979
+ node?: Maybe<GraphStoreSimplifiedTeamHasCustomFieldValueInverseUnion>;
67980
+ };
67981
+ export declare type GraphStoreSimplifiedTeamHasCustomFieldValueInverseUnion = TeamV2;
67982
+ export declare type GraphStoreSimplifiedTeamHasCustomFieldValueUnion = TeamCustomFieldValue;
67498
67983
  export declare type GraphStoreSimplifiedTeamIsOfTypeConnection = HasPageInfo & {
67499
67984
  __typename?: 'GraphStoreSimplifiedTeamIsOfTypeConnection';
67500
67985
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamIsOfTypeEdge>>>;
@@ -71916,6 +72401,9 @@ export declare type GraphStoreTeamConnectedToContainerSortInput = {
71916
72401
  export declare type GraphStoreTeamHasAgentsSortInput = {
71917
72402
  lastModified?: InputMaybe<GraphStoreSortInput>;
71918
72403
  };
72404
+ export declare type GraphStoreTeamHasCustomFieldValueSortInput = {
72405
+ lastModified?: InputMaybe<GraphStoreSortInput>;
72406
+ };
71919
72407
  export declare type GraphStoreTeamIsOfTypeSortInput = {
71920
72408
  lastModified?: InputMaybe<GraphStoreSortInput>;
71921
72409
  };
@@ -72454,6 +72942,8 @@ export declare type GraphStoreV2 = {
72454
72942
  atlassianProjectLinksAtlassianProject?: Maybe<GraphStoreV2SimplifiedAtlassianProjectLinksAtlassianProjectConnection>;
72455
72943
  atlassianTeamHasAtlassianAgent?: Maybe<GraphStoreV2SimplifiedAtlassianTeamHasAtlassianAgentConnection>;
72456
72944
  atlassianTeamHasAtlassianAgentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianTeamHasAtlassianAgentInverseConnection>;
72945
+ atlassianTeamHasAtlassianTeamCustomFieldValue?: Maybe<GraphStoreV2SimplifiedAtlassianTeamHasAtlassianTeamCustomFieldValueConnection>;
72946
+ atlassianTeamHasAtlassianTeamCustomFieldValueInverse?: Maybe<GraphStoreV2SimplifiedAtlassianTeamHasAtlassianTeamCustomFieldValueInverseConnection>;
72457
72947
  atlassianTeamHasChildAtlassianTeam?: Maybe<GraphStoreV2SimplifiedAtlassianTeamHasChildAtlassianTeamConnection>;
72458
72948
  atlassianTeamHasChildAtlassianTeamInverse?: Maybe<GraphStoreV2SimplifiedAtlassianTeamHasChildAtlassianTeamInverseConnection>;
72459
72949
  atlassianTeamIsAtlassianTeamType?: Maybe<GraphStoreV2SimplifiedAtlassianTeamIsAtlassianTeamTypeConnection>;
@@ -72698,6 +73188,10 @@ export declare type GraphStoreV2 = {
72698
73188
  contentEntityLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedContentEntityLinksEntityInverseConnection>;
72699
73189
  csmCustomerLinksJiraWorkItem?: Maybe<GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemConnection>;
72700
73190
  csmCustomerLinksJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemInverseConnection>;
73191
+ csmOrganizationLinksCsmCustomer?: Maybe<GraphStoreV2SimplifiedCsmOrganizationLinksCsmCustomerConnection>;
73192
+ csmOrganizationLinksCsmCustomerInverse?: Maybe<GraphStoreV2SimplifiedCsmOrganizationLinksCsmCustomerInverseConnection>;
73193
+ csmOrganizationLinksJiraWorkItem?: Maybe<GraphStoreV2SimplifiedCsmOrganizationLinksJiraWorkItemConnection>;
73194
+ csmOrganizationLinksJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedCsmOrganizationLinksJiraWorkItemInverseConnection>;
72701
73195
  customer360CustomerHasExternalConversation?: Maybe<GraphStoreV2SimplifiedCustomer360CustomerHasExternalConversationConnection>;
72702
73196
  customer360CustomerHasExternalConversationInverse?: Maybe<GraphStoreV2SimplifiedCustomer360CustomerHasExternalConversationInverseConnection>;
72703
73197
  customer360CustomerLinksJiraWorkItem?: Maybe<GraphStoreV2SimplifiedCustomer360CustomerLinksJiraWorkItemConnection>;
@@ -73255,6 +73749,20 @@ export declare type GraphStoreV2AtlassianTeamHasAtlassianAgentInverseArgs = {
73255
73749
  id: Scalars['ID']['input'];
73256
73750
  sort?: InputMaybe<GraphStoreV2AtlassianTeamHasAtlassianAgentSortInput>;
73257
73751
  };
73752
+ export declare type GraphStoreV2AtlassianTeamHasAtlassianTeamCustomFieldValueArgs = {
73753
+ after?: InputMaybe<Scalars['String']['input']>;
73754
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
73755
+ first?: InputMaybe<Scalars['Int']['input']>;
73756
+ id: Scalars['ID']['input'];
73757
+ sort?: InputMaybe<GraphStoreV2AtlassianTeamHasAtlassianTeamCustomFieldValueSortInput>;
73758
+ };
73759
+ export declare type GraphStoreV2AtlassianTeamHasAtlassianTeamCustomFieldValueInverseArgs = {
73760
+ after?: InputMaybe<Scalars['String']['input']>;
73761
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
73762
+ first?: InputMaybe<Scalars['Int']['input']>;
73763
+ id: Scalars['ID']['input'];
73764
+ sort?: InputMaybe<GraphStoreV2AtlassianTeamHasAtlassianTeamCustomFieldValueSortInput>;
73765
+ };
73258
73766
  export declare type GraphStoreV2AtlassianTeamHasChildAtlassianTeamArgs = {
73259
73767
  after?: InputMaybe<Scalars['String']['input']>;
73260
73768
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -74971,6 +75479,34 @@ export declare type GraphStoreV2CsmCustomerLinksJiraWorkItemInverseArgs = {
74971
75479
  id: Scalars['ID']['input'];
74972
75480
  sort?: InputMaybe<GraphStoreV2CsmCustomerLinksJiraWorkItemSortInput>;
74973
75481
  };
75482
+ export declare type GraphStoreV2CsmOrganizationLinksCsmCustomerArgs = {
75483
+ after?: InputMaybe<Scalars['String']['input']>;
75484
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
75485
+ first?: InputMaybe<Scalars['Int']['input']>;
75486
+ id: Scalars['ID']['input'];
75487
+ sort?: InputMaybe<GraphStoreV2CsmOrganizationLinksCsmCustomerSortInput>;
75488
+ };
75489
+ export declare type GraphStoreV2CsmOrganizationLinksCsmCustomerInverseArgs = {
75490
+ after?: InputMaybe<Scalars['String']['input']>;
75491
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
75492
+ first?: InputMaybe<Scalars['Int']['input']>;
75493
+ id: Scalars['ID']['input'];
75494
+ sort?: InputMaybe<GraphStoreV2CsmOrganizationLinksCsmCustomerSortInput>;
75495
+ };
75496
+ export declare type GraphStoreV2CsmOrganizationLinksJiraWorkItemArgs = {
75497
+ after?: InputMaybe<Scalars['String']['input']>;
75498
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
75499
+ first?: InputMaybe<Scalars['Int']['input']>;
75500
+ id: Scalars['ID']['input'];
75501
+ sort?: InputMaybe<GraphStoreV2CsmOrganizationLinksJiraWorkItemSortInput>;
75502
+ };
75503
+ export declare type GraphStoreV2CsmOrganizationLinksJiraWorkItemInverseArgs = {
75504
+ after?: InputMaybe<Scalars['String']['input']>;
75505
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
75506
+ first?: InputMaybe<Scalars['Int']['input']>;
75507
+ id: Scalars['ID']['input'];
75508
+ sort?: InputMaybe<GraphStoreV2CsmOrganizationLinksJiraWorkItemSortInput>;
75509
+ };
74974
75510
  export declare type GraphStoreV2Customer360CustomerHasExternalConversationArgs = {
74975
75511
  after?: InputMaybe<Scalars['String']['input']>;
74976
75512
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -77917,6 +78453,9 @@ export declare type GraphStoreV2AtlassianProjectLinksAtlassianProjectSortInput =
77917
78453
  export declare type GraphStoreV2AtlassianTeamHasAtlassianAgentSortInput = {
77918
78454
  lastModified?: InputMaybe<GraphStoreSortInput>;
77919
78455
  };
78456
+ export declare type GraphStoreV2AtlassianTeamHasAtlassianTeamCustomFieldValueSortInput = {
78457
+ lastModified?: InputMaybe<GraphStoreSortInput>;
78458
+ };
77920
78459
  export declare type GraphStoreV2AtlassianTeamHasChildAtlassianTeamSortInput = {
77921
78460
  createdAt?: InputMaybe<GraphStoreSortInput>;
77922
78461
  fromAti?: InputMaybe<GraphStoreSortInput>;
@@ -78924,6 +79463,12 @@ export declare type GraphStoreV2CreateLoomVideoHasConfluencePagePayload = {
78924
79463
  export declare type GraphStoreV2CsmCustomerLinksJiraWorkItemSortInput = {
78925
79464
  lastModified?: InputMaybe<GraphStoreSortInput>;
78926
79465
  };
79466
+ export declare type GraphStoreV2CsmOrganizationLinksCsmCustomerSortInput = {
79467
+ lastModified?: InputMaybe<GraphStoreSortInput>;
79468
+ };
79469
+ export declare type GraphStoreV2CsmOrganizationLinksJiraWorkItemSortInput = {
79470
+ lastModified?: InputMaybe<GraphStoreSortInput>;
79471
+ };
78927
79472
  export declare type GraphStoreV2Customer360CustomerHasExternalConversationSortInput = {
78928
79473
  lastModified?: InputMaybe<GraphStoreSortInput>;
78929
79474
  };
@@ -81543,6 +82088,34 @@ export declare type GraphStoreV2SimplifiedAtlassianTeamHasAtlassianAgentInverseE
81543
82088
  };
81544
82089
  export declare type GraphStoreV2SimplifiedAtlassianTeamHasAtlassianAgentInverseUnion = TeamV2;
81545
82090
  export declare type GraphStoreV2SimplifiedAtlassianTeamHasAtlassianAgentUnion = AppUser | AtlassianAccountUser | CustomerUser;
82091
+ export declare type GraphStoreV2SimplifiedAtlassianTeamHasAtlassianTeamCustomFieldValueConnection = HasPageInfo & {
82092
+ __typename?: 'GraphStoreV2SimplifiedAtlassianTeamHasAtlassianTeamCustomFieldValueConnection';
82093
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianTeamHasAtlassianTeamCustomFieldValueEdge>>>;
82094
+ pageInfo: PageInfo;
82095
+ };
82096
+ export declare type GraphStoreV2SimplifiedAtlassianTeamHasAtlassianTeamCustomFieldValueEdge = {
82097
+ __typename?: 'GraphStoreV2SimplifiedAtlassianTeamHasAtlassianTeamCustomFieldValueEdge';
82098
+ createdAt: Scalars['DateTime']['output'];
82099
+ cursor?: Maybe<Scalars['String']['output']>;
82100
+ id: Scalars['ID']['output'];
82101
+ lastUpdated: Scalars['DateTime']['output'];
82102
+ node?: Maybe<GraphStoreV2SimplifiedAtlassianTeamHasAtlassianTeamCustomFieldValueUnion>;
82103
+ };
82104
+ export declare type GraphStoreV2SimplifiedAtlassianTeamHasAtlassianTeamCustomFieldValueInverseConnection = HasPageInfo & {
82105
+ __typename?: 'GraphStoreV2SimplifiedAtlassianTeamHasAtlassianTeamCustomFieldValueInverseConnection';
82106
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianTeamHasAtlassianTeamCustomFieldValueInverseEdge>>>;
82107
+ pageInfo: PageInfo;
82108
+ };
82109
+ export declare type GraphStoreV2SimplifiedAtlassianTeamHasAtlassianTeamCustomFieldValueInverseEdge = {
82110
+ __typename?: 'GraphStoreV2SimplifiedAtlassianTeamHasAtlassianTeamCustomFieldValueInverseEdge';
82111
+ createdAt: Scalars['DateTime']['output'];
82112
+ cursor?: Maybe<Scalars['String']['output']>;
82113
+ id: Scalars['ID']['output'];
82114
+ lastUpdated: Scalars['DateTime']['output'];
82115
+ node?: Maybe<GraphStoreV2SimplifiedAtlassianTeamHasAtlassianTeamCustomFieldValueInverseUnion>;
82116
+ };
82117
+ export declare type GraphStoreV2SimplifiedAtlassianTeamHasAtlassianTeamCustomFieldValueInverseUnion = TeamV2;
82118
+ export declare type GraphStoreV2SimplifiedAtlassianTeamHasAtlassianTeamCustomFieldValueUnion = TeamCustomFieldValue;
81546
82119
  export declare type GraphStoreV2SimplifiedAtlassianTeamHasChildAtlassianTeamConnection = HasPageInfo & HasTotal & {
81547
82120
  __typename?: 'GraphStoreV2SimplifiedAtlassianTeamHasChildAtlassianTeamConnection';
81548
82121
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianTeamHasChildAtlassianTeamEdge>>>;
@@ -85007,6 +85580,62 @@ export declare type GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemInverseEdg
85007
85580
  };
85008
85581
  export declare type GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemInverseUnion = CustomerServiceCsmCustomer;
85009
85582
  export declare type GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemUnion = JiraIssue;
85583
+ export declare type GraphStoreV2SimplifiedCsmOrganizationLinksCsmCustomerConnection = HasPageInfo & {
85584
+ __typename?: 'GraphStoreV2SimplifiedCsmOrganizationLinksCsmCustomerConnection';
85585
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedCsmOrganizationLinksCsmCustomerEdge>>>;
85586
+ pageInfo: PageInfo;
85587
+ };
85588
+ export declare type GraphStoreV2SimplifiedCsmOrganizationLinksCsmCustomerEdge = {
85589
+ __typename?: 'GraphStoreV2SimplifiedCsmOrganizationLinksCsmCustomerEdge';
85590
+ createdAt: Scalars['DateTime']['output'];
85591
+ cursor?: Maybe<Scalars['String']['output']>;
85592
+ id: Scalars['ID']['output'];
85593
+ lastUpdated: Scalars['DateTime']['output'];
85594
+ node?: Maybe<GraphStoreV2SimplifiedCsmOrganizationLinksCsmCustomerUnion>;
85595
+ };
85596
+ export declare type GraphStoreV2SimplifiedCsmOrganizationLinksCsmCustomerInverseConnection = HasPageInfo & {
85597
+ __typename?: 'GraphStoreV2SimplifiedCsmOrganizationLinksCsmCustomerInverseConnection';
85598
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedCsmOrganizationLinksCsmCustomerInverseEdge>>>;
85599
+ pageInfo: PageInfo;
85600
+ };
85601
+ export declare type GraphStoreV2SimplifiedCsmOrganizationLinksCsmCustomerInverseEdge = {
85602
+ __typename?: 'GraphStoreV2SimplifiedCsmOrganizationLinksCsmCustomerInverseEdge';
85603
+ createdAt: Scalars['DateTime']['output'];
85604
+ cursor?: Maybe<Scalars['String']['output']>;
85605
+ id: Scalars['ID']['output'];
85606
+ lastUpdated: Scalars['DateTime']['output'];
85607
+ node?: Maybe<GraphStoreV2SimplifiedCsmOrganizationLinksCsmCustomerInverseUnion>;
85608
+ };
85609
+ export declare type GraphStoreV2SimplifiedCsmOrganizationLinksCsmCustomerInverseUnion = CustomerServiceCsmOrganization;
85610
+ export declare type GraphStoreV2SimplifiedCsmOrganizationLinksCsmCustomerUnion = CustomerServiceCsmCustomer;
85611
+ export declare type GraphStoreV2SimplifiedCsmOrganizationLinksJiraWorkItemConnection = HasPageInfo & {
85612
+ __typename?: 'GraphStoreV2SimplifiedCsmOrganizationLinksJiraWorkItemConnection';
85613
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedCsmOrganizationLinksJiraWorkItemEdge>>>;
85614
+ pageInfo: PageInfo;
85615
+ };
85616
+ export declare type GraphStoreV2SimplifiedCsmOrganizationLinksJiraWorkItemEdge = {
85617
+ __typename?: 'GraphStoreV2SimplifiedCsmOrganizationLinksJiraWorkItemEdge';
85618
+ createdAt: Scalars['DateTime']['output'];
85619
+ cursor?: Maybe<Scalars['String']['output']>;
85620
+ id: Scalars['ID']['output'];
85621
+ lastUpdated: Scalars['DateTime']['output'];
85622
+ node?: Maybe<GraphStoreV2SimplifiedCsmOrganizationLinksJiraWorkItemUnion>;
85623
+ };
85624
+ export declare type GraphStoreV2SimplifiedCsmOrganizationLinksJiraWorkItemInverseConnection = HasPageInfo & {
85625
+ __typename?: 'GraphStoreV2SimplifiedCsmOrganizationLinksJiraWorkItemInverseConnection';
85626
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedCsmOrganizationLinksJiraWorkItemInverseEdge>>>;
85627
+ pageInfo: PageInfo;
85628
+ };
85629
+ export declare type GraphStoreV2SimplifiedCsmOrganizationLinksJiraWorkItemInverseEdge = {
85630
+ __typename?: 'GraphStoreV2SimplifiedCsmOrganizationLinksJiraWorkItemInverseEdge';
85631
+ createdAt: Scalars['DateTime']['output'];
85632
+ cursor?: Maybe<Scalars['String']['output']>;
85633
+ id: Scalars['ID']['output'];
85634
+ lastUpdated: Scalars['DateTime']['output'];
85635
+ node?: Maybe<GraphStoreV2SimplifiedCsmOrganizationLinksJiraWorkItemInverseUnion>;
85636
+ };
85637
+ export declare type GraphStoreV2SimplifiedCsmOrganizationLinksJiraWorkItemInverseUnion = CustomerServiceCsmOrganization;
85638
+ export declare type GraphStoreV2SimplifiedCsmOrganizationLinksJiraWorkItemUnion = JiraIssue;
85010
85639
  export declare type GraphStoreV2SimplifiedCustomer360CustomerHasExternalConversationConnection = HasPageInfo & {
85011
85640
  __typename?: 'GraphStoreV2SimplifiedCustomer360CustomerHasExternalConversationConnection';
85012
85641
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedCustomer360CustomerHasExternalConversationEdge>>>;
@@ -94314,6 +94943,13 @@ export declare type InfluentsNotificationActor = {
94314
94943
  avatarURL?: Maybe<Scalars['String']['output']>;
94315
94944
  displayName?: Maybe<Scalars['String']['output']>;
94316
94945
  };
94946
+ export declare type InfluentsNotificationActorFilter = {
94947
+ afterTimestamp?: InputMaybe<Scalars['DateTime']['input']>;
94948
+ beforeTimestamp?: InputMaybe<Scalars['DateTime']['input']>;
94949
+ categoryFilter?: InputMaybe<InfluentsNotificationCategory>;
94950
+ productFilter?: InputMaybe<Scalars['String']['input']>;
94951
+ readStateFilter?: InputMaybe<InfluentsNotificationReadState>;
94952
+ };
94317
94953
  export declare enum InfluentsNotificationActorType {
94318
94954
  Animated = "animated",
94319
94955
  Url = "url"
@@ -94499,10 +95135,15 @@ export declare type InfluentsNotificationPath = {
94499
95135
  };
94500
95136
  export declare type InfluentsNotificationQuery = {
94501
95137
  __typename?: 'InfluentsNotificationQuery';
95138
+ availableActors: Array<InfluentsNotificationActor>;
94502
95139
  notificationFeed: InfluentsNotificationFeedConnection;
94503
95140
  notificationGroup: InfluentsNotificationGroupConnection;
94504
95141
  unseenNotificationCount: Scalars['Int']['output'];
94505
95142
  };
95143
+ export declare type InfluentsNotificationQueryAvailableActorsArgs = {
95144
+ filter?: InputMaybe<InfluentsNotificationActorFilter>;
95145
+ first?: InputMaybe<Scalars['Int']['input']>;
95146
+ };
94506
95147
  export declare type InfluentsNotificationQueryNotificationFeedArgs = {
94507
95148
  after?: InputMaybe<Scalars['String']['input']>;
94508
95149
  filter?: InputMaybe<InfluentsNotificationFilter>;
@@ -96677,6 +97318,7 @@ export declare type JiraBacklogData = {
96677
97318
  selectedForDevelopmentColumn?: Maybe<JiraBacklogColumn>;
96678
97319
  sprints?: Maybe<Array<Maybe<JiraBacklogSprint>>>;
96679
97320
  supportsPages?: Maybe<Scalars['Boolean']['output']>;
97321
+ townsquareProjects?: Maybe<Array<Maybe<JiraBacklogTownsquareProject>>>;
96680
97322
  versionData?: Maybe<JiraBacklogVersionData>;
96681
97323
  };
96682
97324
  export declare type JiraBacklogEpicConfig = {
@@ -96759,6 +97401,7 @@ export declare type JiraBacklogIssue = {
96759
97401
  statusName?: Maybe<Scalars['String']['output']>;
96760
97402
  statusUrl?: Maybe<Scalars['String']['output']>;
96761
97403
  summary?: Maybe<Scalars['String']['output']>;
97404
+ townsquareProjectId?: Maybe<Scalars['String']['output']>;
96762
97405
  trackingStatistic?: Maybe<JiraBacklogStatisticFieldValue>;
96763
97406
  typeHierarchyLevel?: Maybe<Scalars['Int']['output']>;
96764
97407
  typeId?: Maybe<Scalars['String']['output']>;
@@ -96936,6 +97579,16 @@ export declare type JiraBacklogTimeTrackingSymbols = {
96936
97579
  minute?: Maybe<Scalars['String']['output']>;
96937
97580
  week?: Maybe<Scalars['String']['output']>;
96938
97581
  };
97582
+ export declare type JiraBacklogTownsquareProject = {
97583
+ __typename?: 'JiraBacklogTownsquareProject';
97584
+ hasPermission?: Maybe<Scalars['Boolean']['output']>;
97585
+ iconName?: Maybe<Scalars['String']['output']>;
97586
+ id?: Maybe<Scalars['String']['output']>;
97587
+ key?: Maybe<Scalars['String']['output']>;
97588
+ name?: Maybe<Scalars['String']['output']>;
97589
+ privateProject?: Maybe<Scalars['Boolean']['output']>;
97590
+ state?: Maybe<Scalars['String']['output']>;
97591
+ };
96939
97592
  export declare type JiraBacklogTrackingConfig = {
96940
97593
  __typename?: 'JiraBacklogTrackingConfig';
96941
97594
  currentTrackingStatistic?: Maybe<JiraBacklogStatisticsField>;
@@ -97280,6 +97933,14 @@ export declare type JiraBoardViewCellConnection = {
97280
97933
  errors?: Maybe<Array<QueryError>>;
97281
97934
  pageInfo?: Maybe<PageInfo>;
97282
97935
  };
97936
+ export declare type JiraBoardViewCellContainer = {
97937
+ cells?: Maybe<JiraBoardViewCellConnection>;
97938
+ };
97939
+ export declare type JiraBoardViewCellContainerCellsArgs = {
97940
+ after?: InputMaybe<Scalars['String']['input']>;
97941
+ first?: InputMaybe<Scalars['Int']['input']>;
97942
+ settings?: InputMaybe<JiraBoardViewSettings>;
97943
+ };
97283
97944
  export declare type JiraBoardViewCellEdge = {
97284
97945
  __typename?: 'JiraBoardViewCellEdge';
97285
97946
  cursor?: Maybe<Scalars['String']['output']>;
@@ -97307,7 +97968,7 @@ export declare type JiraBoardViewColumnEdge = {
97307
97968
  cursor?: Maybe<Scalars['String']['output']>;
97308
97969
  node?: Maybe<JiraBoardViewColumn>;
97309
97970
  };
97310
- export declare type JiraBoardViewColumnLayout = Node & {
97971
+ export declare type JiraBoardViewColumnLayout = JiraBoardViewCellContainer & Node & {
97311
97972
  __typename?: 'JiraBoardViewColumnLayout';
97312
97973
  cells?: Maybe<JiraBoardViewCellConnection>;
97313
97974
  id: Scalars['ID']['output'];
@@ -97324,7 +97985,7 @@ export declare type JiraBoardViewFieldCardOption = JiraBoardViewCardOption & {
97324
97985
  field?: Maybe<JiraField>;
97325
97986
  id: Scalars['ID']['output'];
97326
97987
  };
97327
- export declare type JiraBoardViewFieldSwimlane = JiraBoardViewSwimlane & Node & {
97988
+ export declare type JiraBoardViewFieldSwimlane = JiraBoardViewCellContainer & JiraBoardViewSwimlane & Node & {
97328
97989
  __typename?: 'JiraBoardViewFieldSwimlane';
97329
97990
  cells?: Maybe<JiraBoardViewCellConnection>;
97330
97991
  field?: Maybe<JiraField>;
@@ -100215,6 +100876,7 @@ export declare enum JiraDeploymentsFeaturePrecondition {
100215
100876
  export declare type JiraDetailedView = JiraIssueSearchViewMetadata & JiraView & Node & {
100216
100877
  __typename?: 'JiraDetailedView';
100217
100878
  canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
100879
+ defaultJql?: Maybe<Scalars['String']['output']>;
100218
100880
  error?: Maybe<QueryError>;
100219
100881
  fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
100220
100882
  filterId?: Maybe<Scalars['String']['output']>;
@@ -100930,6 +101592,11 @@ export declare type JiraFallbackField = JiraIssueField & JiraIssueFieldConfigura
100930
101592
  renderedFieldHtml?: Maybe<Scalars['String']['output']>;
100931
101593
  type: Scalars['String']['output'];
100932
101594
  };
101595
+ export declare type JiraFavicon = {
101596
+ __typename?: 'JiraFavicon';
101597
+ isCustom?: Maybe<Scalars['Boolean']['output']>;
101598
+ path?: Maybe<Scalars['String']['output']>;
101599
+ };
100933
101600
  export declare type JiraFavourite = JiraBoard | JiraCustomFilter | JiraDashboard | JiraPlan | JiraProject | JiraServiceManagementQueue | JiraSystemFilter;
100934
101601
  export declare type JiraFavouriteConnection = {
100935
101602
  __typename?: 'JiraFavouriteConnection';
@@ -102410,6 +103077,7 @@ export declare type JiraGroupedListView = JiraIssueSearchViewMetadata & JiraSpre
102410
103077
  __typename?: 'JiraGroupedListView';
102411
103078
  canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
102412
103079
  conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
103080
+ defaultJql?: Maybe<Scalars['String']['output']>;
102413
103081
  error?: Maybe<QueryError>;
102414
103082
  fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
102415
103083
  filterId?: Maybe<Scalars['String']['output']>;
@@ -104588,6 +105256,10 @@ export declare type JiraIssueSearchGroupByFieldMutationPayload = Payload & {
104588
105256
  errors?: Maybe<Array<MutationError>>;
104589
105257
  success: Scalars['Boolean']['output'];
104590
105258
  };
105259
+ export declare type JiraIssueSearchGroupByInput = {
105260
+ groupByJql?: InputMaybe<Scalars['String']['input']>;
105261
+ jql?: InputMaybe<Scalars['String']['input']>;
105262
+ };
104591
105263
  export declare type JiraIssueSearchHideDonePreferenceMutationPayload = Payload & {
104592
105264
  __typename?: 'JiraIssueSearchHideDonePreferenceMutationPayload';
104593
105265
  errors?: Maybe<Array<MutationError>>;
@@ -104604,6 +105276,7 @@ export declare type JiraIssueSearchInput = {
104604
105276
  childIssuesInput?: InputMaybe<JiraIssueSearchChildIssuesInput>;
104605
105277
  customInput?: InputMaybe<JiraIssueSearchCustomInput>;
104606
105278
  filterId?: InputMaybe<Scalars['String']['input']>;
105279
+ groupByInput?: InputMaybe<JiraIssueSearchGroupByInput>;
104607
105280
  jql?: InputMaybe<Scalars['String']['input']>;
104608
105281
  searchWithLastUsedJql?: InputMaybe<Scalars['Boolean']['input']>;
104609
105282
  };
@@ -106310,6 +106983,7 @@ export declare type JiraListView = JiraIssueSearchViewMetadata & JiraSpreadsheet
106310
106983
  __typename?: 'JiraListView';
106311
106984
  canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
106312
106985
  conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
106986
+ defaultJql?: Maybe<Scalars['String']['output']>;
106313
106987
  error?: Maybe<QueryError>;
106314
106988
  fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
106315
106989
  filterId?: Maybe<Scalars['String']['output']>;
@@ -106370,6 +107044,11 @@ export declare type JiraListViewViewSettingsArgs = {
106370
107044
  settings?: InputMaybe<JiraIssueSearchSettings>;
106371
107045
  staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
106372
107046
  };
107047
+ export declare type JiraLogo = {
107048
+ __typename?: 'JiraLogo';
107049
+ isCustom?: Maybe<Scalars['Boolean']['output']>;
107050
+ path?: Maybe<Scalars['String']['output']>;
107051
+ };
106373
107052
  export declare type JiraLongRunningTaskProgress = {
106374
107053
  __typename?: 'JiraLongRunningTaskProgress';
106375
107054
  description?: Maybe<Scalars['String']['output']>;
@@ -106389,6 +107068,15 @@ export declare enum JiraLongRunningTaskStatus {
106389
107068
  Failed = "FAILED",
106390
107069
  Running = "RUNNING"
106391
107070
  }
107071
+ export declare type JiraLookAndFeel = {
107072
+ __typename?: 'JiraLookAndFeel';
107073
+ favicon?: Maybe<JiraFavicon>;
107074
+ logo?: Maybe<JiraLogo>;
107075
+ };
107076
+ export declare type JiraLookAndFeelImageInput = {
107077
+ mediaFileId?: InputMaybe<Scalars['ID']['input']>;
107078
+ url?: InputMaybe<Scalars['URL']['input']>;
107079
+ };
106392
107080
  export declare type JiraMediaAttachmentFile = {
106393
107081
  __typename?: 'JiraMediaAttachmentFile';
106394
107082
  attachmentId?: Maybe<Scalars['String']['output']>;
@@ -112345,6 +113033,22 @@ export declare type JiraReportsPage = {
112345
113033
  __typename?: 'JiraReportsPage';
112346
113034
  categories?: Maybe<Array<Maybe<JiraReportCategory>>>;
112347
113035
  };
113036
+ export declare type JiraResetFaviconInput = {
113037
+ cloudId: Scalars['ID']['input'];
113038
+ };
113039
+ export declare type JiraResetFaviconPayload = Payload & {
113040
+ __typename?: 'JiraResetFaviconPayload';
113041
+ errors?: Maybe<Array<MutationError>>;
113042
+ success: Scalars['Boolean']['output'];
113043
+ };
113044
+ export declare type JiraResetLogoInput = {
113045
+ cloudId: Scalars['ID']['input'];
113046
+ };
113047
+ export declare type JiraResetLogoPayload = Payload & {
113048
+ __typename?: 'JiraResetLogoPayload';
113049
+ errors?: Maybe<Array<MutationError>>;
113050
+ success: Scalars['Boolean']['output'];
113051
+ };
112348
113052
  export declare type JiraResolution = Node & {
112349
113053
  __typename?: 'JiraResolution';
112350
113054
  description?: Maybe<Scalars['String']['output']>;
@@ -114325,6 +115029,15 @@ export declare type JiraSetDefaultNavigationItemPayload = Payload & {
114325
115029
  previousDefault?: Maybe<JiraNavigationItem>;
114326
115030
  success: Scalars['Boolean']['output'];
114327
115031
  };
115032
+ export declare type JiraSetFaviconInput = {
115033
+ cloudId: Scalars['ID']['input'];
115034
+ faviconImageInput: JiraLookAndFeelImageInput;
115035
+ };
115036
+ export declare type JiraSetFaviconPayload = Payload & {
115037
+ __typename?: 'JiraSetFaviconPayload';
115038
+ errors?: Maybe<Array<MutationError>>;
115039
+ success: Scalars['Boolean']['output'];
115040
+ };
114328
115041
  export declare type JiraSetFieldAssociationWithIssueTypesInput = {
114329
115042
  cloudId: Scalars['ID']['input'];
114330
115043
  fieldId: Scalars['ID']['input'];
@@ -114450,6 +115163,15 @@ export declare type JiraSetIssueSearchViewLayoutPayload = Payload & {
114450
115163
  errors?: Maybe<Array<MutationError>>;
114451
115164
  success: Scalars['Boolean']['output'];
114452
115165
  };
115166
+ export declare type JiraSetLogoInput = {
115167
+ cloudId: Scalars['ID']['input'];
115168
+ logoImageInput: JiraLookAndFeelImageInput;
115169
+ };
115170
+ export declare type JiraSetLogoPayload = Payload & {
115171
+ __typename?: 'JiraSetLogoPayload';
115172
+ errors?: Maybe<Array<MutationError>>;
115173
+ success: Scalars['Boolean']['output'];
115174
+ };
114453
115175
  export declare type JiraSetMostRecentlyViewedBoardPayload = Payload & {
114454
115176
  __typename?: 'JiraSetMostRecentlyViewedBoardPayload';
114455
115177
  board?: Maybe<JiraBoard>;
@@ -118517,7 +119239,6 @@ export declare type JpdViewUpdatedEvent = {
118517
119239
  viewUuid: Scalars['ID']['output'];
118518
119240
  };
118519
119241
  export declare type JpdViewsServiceCreateGlobalViewInput = {
118520
- cloudId: Scalars['String']['input'];
118521
119242
  name: Scalars['String']['input'];
118522
119243
  visualizationType: JpdViewsServiceVisualizationType;
118523
119244
  };
@@ -118540,7 +119261,7 @@ export declare type JpdViewsServiceGlobalView = JpdViewsServiceViewBase & Node &
118540
119261
  __typename?: 'JpdViewsServiceGlobalView';
118541
119262
  id: Scalars['ID']['output'];
118542
119263
  name: Scalars['String']['output'];
118543
- rank: Scalars['Int']['output'];
119264
+ rank?: Maybe<Scalars['Int']['output']>;
118544
119265
  visualizationType: JpdViewsServiceVisualizationType;
118545
119266
  };
118546
119267
  export declare type JpdViewsServiceGlobalViewConnection = {
@@ -118551,7 +119272,7 @@ export declare type JpdViewsServiceGlobalViewConnection = {
118551
119272
  export declare type JpdViewsServiceGlobalViewEdge = {
118552
119273
  __typename?: 'JpdViewsServiceGlobalViewEdge';
118553
119274
  cursor?: Maybe<Scalars['String']['output']>;
118554
- node: JpdViewsServiceGlobalView;
119275
+ node?: Maybe<JpdViewsServiceGlobalView>;
118555
119276
  };
118556
119277
  export declare type JpdViewsServiceGlobalViewsByCriteriaInput = {
118557
119278
  containsText: Scalars['String']['input'];
@@ -118593,7 +119314,7 @@ export declare type JpdViewsServiceUpdateGlobalViewPayload = Payload & {
118593
119314
  };
118594
119315
  export declare type JpdViewsServiceViewBase = {
118595
119316
  name: Scalars['String']['output'];
118596
- rank: Scalars['Int']['output'];
119317
+ rank?: Maybe<Scalars['Int']['output']>;
118597
119318
  visualizationType: JpdViewsServiceVisualizationType;
118598
119319
  };
118599
119320
  export declare enum JpdViewsServiceViewSortMode {
@@ -119557,6 +120278,7 @@ export declare enum JsmConversationMessageSource {
119557
120278
  }
119558
120279
  export declare type JsmConversationSettings = {
119559
120280
  __typename?: 'JsmConversationSettings';
120281
+ assignedTeam?: Maybe<TeamV2>;
119560
120282
  projectAri?: Maybe<Scalars['String']['output']>;
119561
120283
  slaList?: Maybe<Array<Maybe<JsmConversationSla>>>;
119562
120284
  teamId?: Maybe<Scalars['String']['output']>;
@@ -119980,8 +120702,8 @@ export declare type KitsuneFeedbackEvent = {
119980
120702
  };
119981
120703
  export declare type KitsuneFeedbackSummary = {
119982
120704
  __typename?: 'KitsuneFeedbackSummary';
120705
+ content: Scalars['KitsuneADF']['output'];
119983
120706
  generatedAt: Scalars['DateTime']['output'];
119984
- text: Scalars['String']['output'];
119985
120707
  };
119986
120708
  export declare type KitsuneField = KitsuneNode & {
119987
120709
  __typename?: 'KitsuneField';
@@ -120172,11 +120894,12 @@ export declare type KnowledgeBaseCategoryDetail = {
120172
120894
  id?: Maybe<Scalars['String']['output']>;
120173
120895
  name?: Maybe<Scalars['String']['output']>;
120174
120896
  };
120175
- export declare type KnowledgeBaseConfluenceServerLinkStatus = {
120176
- __typename?: 'KnowledgeBaseConfluenceServerLinkStatus';
120897
+ export declare type KnowledgeBaseConfluenceAppLinkDetails = {
120898
+ __typename?: 'KnowledgeBaseConfluenceAppLinkDetails';
120899
+ appLinkId?: Maybe<Scalars['String']['output']>;
120177
120900
  isConfluenceServerLinked: Scalars['Boolean']['output'];
120178
120901
  };
120179
- export declare type KnowledgeBaseConfluenceServerLinkStatusResponse = KnowledgeBaseConfluenceServerLinkStatus | QueryError;
120902
+ export declare type KnowledgeBaseConfluenceAppLinkDetailsResponse = KnowledgeBaseConfluenceAppLinkDetails | QueryError;
120180
120903
  export declare type KnowledgeBaseConfluenceSpaceSuggestions = KnowledgeBaseSourceSuggestionInterface & {
120181
120904
  __typename?: 'KnowledgeBaseConfluenceSpaceSuggestions';
120182
120905
  sourceARI?: Maybe<Scalars['ID']['output']>;
@@ -120221,6 +120944,7 @@ export declare type KnowledgeBaseLinkSourceResult = {
120221
120944
  mutationError?: Maybe<MutationError>;
120222
120945
  sourceARI?: Maybe<Scalars['ID']['output']>;
120223
120946
  sourceContainerARI?: Maybe<Scalars['ID']['output']>;
120947
+ sourceId?: Maybe<Scalars['String']['output']>;
120224
120948
  sourceVisibility?: Maybe<Scalars['String']['output']>;
120225
120949
  success?: Maybe<Scalars['Boolean']['output']>;
120226
120950
  };
@@ -120234,6 +120958,7 @@ export declare type KnowledgeBaseLinkedSource = {
120234
120958
  permissions?: Maybe<KnowledgeBaseSourcePermissionsResponse>;
120235
120959
  sourceARI?: Maybe<Scalars['ID']['output']>;
120236
120960
  sourceId?: Maybe<Scalars['ID']['output']>;
120961
+ sourceSettingsUrl?: Maybe<Scalars['String']['output']>;
120237
120962
  sourceType?: Maybe<Scalars['String']['output']>;
120238
120963
  sourceVisibility?: Maybe<Scalars['String']['output']>;
120239
120964
  url?: Maybe<Scalars['String']['output']>;
@@ -129873,7 +130598,9 @@ export declare type Mutation = {
129873
130598
  agentStudio_deleteAgent?: Maybe<AgentStudioDeleteAgentPayload>;
129874
130599
  agentStudio_deleteScenario?: Maybe<AgentStudioDeleteScenarioPayload>;
129875
130600
  agentStudio_deleteWidget?: Maybe<AgentStudioDeleteWidgetPayload>;
130601
+ agentStudio_duplicateAgent?: Maybe<AgentStudioCreateAgentPayload>;
129876
130602
  agentStudio_modifyDatasetItem?: Maybe<AgentStudioUpdateDatasetItemPayload>;
130603
+ agentStudio_publishAgentVersion?: Maybe<AgentStudioPublishAgentVersionPayload>;
129877
130604
  agentStudio_removeActorRoles?: Maybe<AgentStudioUpdateAgentPermissionPayload>;
129878
130605
  agentStudio_removeDataset?: Maybe<AgentStudioDeleteDatasetPayload>;
129879
130606
  agentStudio_removeDatasetItem?: Maybe<AgentStudioDeleteDatasetItemPayload>;
@@ -129896,6 +130623,7 @@ export declare type Mutation = {
129896
130623
  agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
129897
130624
  agentWorkspace_deleteSchedule?: Maybe<AgentWorkspaceDeleteSchedulePayload>;
129898
130625
  agentWorkspace_endBreak?: Maybe<AgentWorkspaceAgentAvailability>;
130626
+ agentWorkspace_setDefaultCapacity?: Maybe<AgentWorkspaceSetDefaultCapacityPayload>;
129899
130627
  agentWorkspace_startBreak?: Maybe<AgentWorkspaceAgentAvailability>;
129900
130628
  agentWorkspace_updateSchedule?: Maybe<AgentWorkspaceUpdateSchedulePayload>;
129901
130629
  appRecommendations?: Maybe<AppRecMutation>;
@@ -130070,6 +130798,7 @@ export declare type Mutation = {
130070
130798
  confluence_generateLegacyEditorReport?: Maybe<ConfluenceSpaceReportPayload>;
130071
130799
  confluence_generateSearchPerformedEvent?: Maybe<ConfluenceGenerateSearchPerformedEventPayload>;
130072
130800
  confluence_generateSpacePermissionAuditReport?: Maybe<ConfluenceAdminReportPayload>;
130801
+ confluence_generateSpacePermissionCombinations?: Maybe<ConfluenceGenerateSpacePermissionCombinationsPayload>;
130073
130802
  confluence_insertOfflineVersion?: Maybe<ConfluenceInsertOfflineVersionPayload>;
130074
130803
  confluence_inviteUsers?: Maybe<ConfluenceInviteUserPayload>;
130075
130804
  confluence_makeSubCalendarPrivateUrl?: Maybe<ConfluenceMakeSubCalendarPrivateUrlPayload>;
@@ -130108,6 +130837,7 @@ export declare type Mutation = {
130108
130837
  confluence_updateContentAccessRequest?: Maybe<ConfluenceUpdateContentAccessRequestPayload>;
130109
130838
  confluence_updateContentAccessRequestSettings?: Maybe<ConfluenceUpdateAccessRequestSettingsPayload>;
130110
130839
  confluence_updateContentAppearance?: Maybe<ConfluenceUpdateContentAppearancePayload>;
130840
+ confluence_updateContentApproval?: Maybe<ConfluenceContentApprovalPayload>;
130111
130841
  confluence_updateContentDirectRestrictions?: Maybe<ConfluenceUpdateContentDirectRestrictionsPayload>;
130112
130842
  confluence_updateContentMode?: Maybe<ConfluenceUpdateContentModePayload>;
130113
130843
  confluence_updateCoverPicture?: Maybe<ConfluenceUpdateCoverPicturePayload>;
@@ -130119,6 +130849,7 @@ export declare type Mutation = {
130119
130849
  confluence_updateNcsPdfExportConfiguration?: Maybe<ConfluenceUpdateNcsPdfExportConfigurationPayload>;
130120
130850
  confluence_updatePage?: Maybe<ConfluenceUpdatePagePayload>;
130121
130851
  confluence_updateQuestion?: Maybe<ConfluenceUpdateQuestionPayload>;
130852
+ confluence_updateReviewerDecision?: Maybe<ConfluenceWorkflowReviewerDecisionPayload>;
130122
130853
  confluence_updateShareableLink?: Maybe<ConfluenceUpdateShareableLinksPayload>;
130123
130854
  confluence_updateSpaceAccessRequestSettings?: Maybe<ConfluenceUpdateAccessRequestSettingsPayload>;
130124
130855
  confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
@@ -130432,6 +131163,8 @@ export declare type Mutation = {
130432
131163
  jira_renameBoardViewStatusColumn?: Maybe<JiraRenameBoardViewStatusColumnPayload>;
130433
131164
  jira_reorderBoardViewColumn?: Maybe<JiraReorderBoardViewColumnPayload>;
130434
131165
  jira_reorderProjectsSidebarMenuItem?: Maybe<JiraProjectsSidebarMenu>;
131166
+ jira_resetFavicon?: Maybe<JiraResetFaviconPayload>;
131167
+ jira_resetLogo?: Maybe<JiraResetLogoPayload>;
130435
131168
  jira_restoreCustomFields?: Maybe<JiraRestoreCustomFieldsPayload>;
130436
131169
  jira_restoreGlobalCustomFields?: Maybe<JiraRestoreGlobalCustomFieldsPayload>;
130437
131170
  jira_scheduleTimelineItem?: Maybe<JiraScheduleTimelineItemPayload>;
@@ -130463,6 +131196,7 @@ export declare type Mutation = {
130463
131196
  jira_setBoardViewWorkflowSelected?: Maybe<JiraSetBoardViewWorkflowSelectedPayload>;
130464
131197
  jira_setCapacityMostRecentSubRoute?: Maybe<JiraSetCapacityMostRecentSubRoutePayload>;
130465
131198
  jira_setCustomFieldTranslation?: Maybe<JiraSetCustomFieldTranslationPayload>;
131199
+ jira_setFavicon?: Maybe<JiraSetFaviconPayload>;
130466
131200
  jira_setFieldSetsPreferences?: Maybe<JiraSetFieldSetsPreferencesPayload>;
130467
131201
  jira_setGlobalPermissionUserGroups?: Maybe<JiraGlobalPermissionSetUserGroupsPayload>;
130468
131202
  jira_setIsAgentAssignable?: Maybe<JiraSetIsAgentAssignableResponsePayload>;
@@ -130474,6 +131208,7 @@ export declare type Mutation = {
130474
131208
  jira_setIssueSearchHierarchyEnabled?: Maybe<JiraSetIssueSearchHierarchyEnabledPayload>;
130475
131209
  jira_setIssueSearchJql?: Maybe<JiraSetIssueSearchJqlPayload>;
130476
131210
  jira_setIssueSearchViewLayout?: Maybe<JiraSetIssueSearchViewLayoutPayload>;
131211
+ jira_setLogo?: Maybe<JiraSetLogoPayload>;
130477
131212
  jira_setShowUnscheduledIssuesCalendarPanel?: Maybe<JiraShowUnscheduledIssuesCalendarMutationPayload>;
130478
131213
  jira_setTimelineHighlightedReleases?: Maybe<JiraSetTimelineHighlightedReleasesPayload>;
130479
131214
  jira_setTimelineViewRangeMode?: Maybe<JiraSetTimelineViewRangeModePayload>;
@@ -130517,6 +131252,7 @@ export declare type Mutation = {
130517
131252
  kitsune_updateFeedback?: Maybe<KitsuneFeedback>;
130518
131253
  kitsune_updateSection?: Maybe<KitsuneSection>;
130519
131254
  kitsune_updateSpace?: Maybe<KitsuneSpace>;
131255
+ kitsune_updateView?: Maybe<KitsuneView>;
130520
131256
  knowledgeBase?: Maybe<KnowledgeBaseMutationApi>;
130521
131257
  knowledgeBaseSpacePermission_updateView: KnowledgeBaseSpacePermissionMutationResponse;
130522
131258
  knowledgeBase_linkSources?: Maybe<KnowledgeBaseLinkSourcesResponse>;
@@ -130991,12 +131727,19 @@ export declare type MutationAgentStudio_DeleteWidgetArgs = {
130991
131727
  cloudId: Scalars['String']['input'];
130992
131728
  widgetId: Scalars['ID']['input'];
130993
131729
  };
131730
+ export declare type MutationAgentStudio_DuplicateAgentArgs = {
131731
+ id: Scalars['ID']['input'];
131732
+ input?: InputMaybe<AgentStudioDuplicateAgentInput>;
131733
+ };
130994
131734
  export declare type MutationAgentStudio_ModifyDatasetItemArgs = {
130995
131735
  cloudId: Scalars['String']['input'];
130996
131736
  input: AgentStudioUpdateDatasetItemInput;
130997
131737
  productType: AgentStudioProductType;
130998
131738
  projectContainerAri: Scalars['ID']['input'];
130999
131739
  };
131740
+ export declare type MutationAgentStudio_PublishAgentVersionArgs = {
131741
+ id: Scalars['ID']['input'];
131742
+ };
131000
131743
  export declare type MutationAgentStudio_RemoveActorRolesArgs = {
131001
131744
  id: Scalars['ID']['input'];
131002
131745
  input: AgentStudioUpdateAgentPermissionInput;
@@ -131094,6 +131837,9 @@ export declare type MutationAgentWorkspace_DeleteScheduleArgs = {
131094
131837
  export declare type MutationAgentWorkspace_EndBreakArgs = {
131095
131838
  agentId: Scalars['ID']['input'];
131096
131839
  };
131840
+ export declare type MutationAgentWorkspace_SetDefaultCapacityArgs = {
131841
+ input: AgentWorkspaceSetDefaultCapacityInput;
131842
+ };
131097
131843
  export declare type MutationAgentWorkspace_StartBreakArgs = {
131098
131844
  agentId: Scalars['ID']['input'];
131099
131845
  };
@@ -131528,6 +132274,7 @@ export declare type MutationBulkUpdateMainSpaceSidebarLinksArgs = {
131528
132274
  };
131529
132275
  export declare type MutationChangeManagement_RecordLastRovoRiskAssessmentArgs = {
131530
132276
  input: ChangeManagementUpdateLastRovoRiskAssessmentInput;
132277
+ keepUpdatedAt?: InputMaybe<Scalars['Boolean']['input']>;
131531
132278
  };
131532
132279
  export declare type MutationChangeManagement_UpdateGlobalRiskAssessmentSettingsArgs = {
131533
132280
  input: ChangeManagementUpdateGlobalRiskAssessmentSettingsInput;
@@ -131745,6 +132492,9 @@ export declare type MutationConfluence_GenerateSpacePermissionAuditReportArgs =
131745
132492
  spaceIds?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
131746
132493
  spaceType?: InputMaybe<ConfluenceSpacePermissionAuditReportSpaceType>;
131747
132494
  };
132495
+ export declare type MutationConfluence_GenerateSpacePermissionCombinationsArgs = {
132496
+ cloudId: Scalars['ID']['input'];
132497
+ };
131748
132498
  export declare type MutationConfluence_InsertOfflineVersionArgs = {
131749
132499
  cloudId: Scalars['ID']['input'];
131750
132500
  input?: InputMaybe<ConfluenceInsertOfflineVersionInput>;
@@ -131898,6 +132648,10 @@ export declare type MutationConfluence_UpdateContentAppearanceArgs = {
131898
132648
  cloudId: Scalars['ID']['input'];
131899
132649
  input: ConfluenceUpdateContentAppearanceInput;
131900
132650
  };
132651
+ export declare type MutationConfluence_UpdateContentApprovalArgs = {
132652
+ cloudId: Scalars['ID']['input'];
132653
+ updateContentApprovalGraphQLInput: ConfluenceUpdateContentApprovalRequestInput;
132654
+ };
131901
132655
  export declare type MutationConfluence_UpdateContentDirectRestrictionsArgs = {
131902
132656
  cloudId: Scalars['ID']['input'];
131903
132657
  input: ConfluenceUpdateContentDirectRestrictionsInput;
@@ -131944,6 +132698,10 @@ export declare type MutationConfluence_UpdateQuestionArgs = {
131944
132698
  cloudId: Scalars['ID']['input'];
131945
132699
  input: ConfluenceUpdateQuestionInput;
131946
132700
  };
132701
+ export declare type MutationConfluence_UpdateReviewerDecisionArgs = {
132702
+ cloudId: Scalars['ID']['input'];
132703
+ confluenceUpdateReviewerDecisionInput: ConfluenceUpdateReviewerDecisionInput;
132704
+ };
131947
132705
  export declare type MutationConfluence_UpdateShareableLinkArgs = {
131948
132706
  cloudId: Scalars['ID']['input'];
131949
132707
  input: ConfluenceUpdateShareableLinksInput;
@@ -132978,6 +133736,12 @@ export declare type MutationJira_ReorderBoardViewColumnArgs = {
132978
133736
  export declare type MutationJira_ReorderProjectsSidebarMenuItemArgs = {
132979
133737
  input: JiraReorderSidebarMenuItemInput;
132980
133738
  };
133739
+ export declare type MutationJira_ResetFaviconArgs = {
133740
+ input: JiraResetFaviconInput;
133741
+ };
133742
+ export declare type MutationJira_ResetLogoArgs = {
133743
+ input: JiraResetLogoInput;
133744
+ };
132981
133745
  export declare type MutationJira_RestoreCustomFieldsArgs = {
132982
133746
  cloudId: Scalars['ID']['input'];
132983
133747
  input: JiraRestoreCustomFieldsInput;
@@ -133075,6 +133839,9 @@ export declare type MutationJira_SetCustomFieldTranslationArgs = {
133075
133839
  cloudId: Scalars['ID']['input'];
133076
133840
  input: JiraSetCustomFieldTranslationInput;
133077
133841
  };
133842
+ export declare type MutationJira_SetFaviconArgs = {
133843
+ input: JiraSetFaviconInput;
133844
+ };
133078
133845
  export declare type MutationJira_SetFieldSetsPreferencesArgs = {
133079
133846
  input: JiraSetFieldSetsPreferencesInput;
133080
133847
  };
@@ -133110,6 +133877,9 @@ export declare type MutationJira_SetIssueSearchJqlArgs = {
133110
133877
  export declare type MutationJira_SetIssueSearchViewLayoutArgs = {
133111
133878
  input: JiraSetIssueSearchViewLayoutInput;
133112
133879
  };
133880
+ export declare type MutationJira_SetLogoArgs = {
133881
+ input: JiraSetLogoInput;
133882
+ };
133113
133883
  export declare type MutationJira_SetShowUnscheduledIssuesCalendarPanelArgs = {
133114
133884
  cloudId: Scalars['ID']['input'];
133115
133885
  show: Scalars['Boolean']['input'];
@@ -133171,6 +133941,7 @@ export declare type MutationJira_UpdateSchemeFieldPerWorkTypeCustomizationsArgs
133171
133941
  input?: InputMaybe<JiraFieldWorkTypeCustomizationsInput>;
133172
133942
  };
133173
133943
  export declare type MutationJpdViewsService_CreateGlobalViewArgs = {
133944
+ cloudId: Scalars['String']['input'];
133174
133945
  input: JpdViewsServiceCreateGlobalViewInput;
133175
133946
  };
133176
133947
  export declare type MutationJpdViewsService_DeleteGlobalViewArgs = {
@@ -133265,6 +134036,12 @@ export declare type MutationKitsune_UpdateSpaceArgs = {
133265
134036
  id: Scalars['ID']['input'];
133266
134037
  name?: InputMaybe<Scalars['String']['input']>;
133267
134038
  };
134039
+ export declare type MutationKitsune_UpdateViewArgs = {
134040
+ description?: InputMaybe<Scalars['String']['input']>;
134041
+ id: Scalars['ID']['input'];
134042
+ name?: InputMaybe<Scalars['String']['input']>;
134043
+ type?: InputMaybe<KitsuneViewType>;
134044
+ };
133268
134045
  export declare type MutationKnowledgeBaseArgs = {
133269
134046
  cloudId: Scalars['ID']['input'];
133270
134047
  };
@@ -136211,6 +136988,7 @@ export declare type PolarisComment = {
136211
136988
  __typename?: 'PolarisComment';
136212
136989
  aaid: Scalars['String']['output'];
136213
136990
  account?: Maybe<User>;
136991
+ ari?: Maybe<Scalars['ID']['output']>;
136214
136992
  content: Scalars['JSON']['output'];
136215
136993
  created: Scalars['String']['output'];
136216
136994
  id: Scalars['ID']['output'];
@@ -137260,17 +138038,22 @@ export declare type Query = {
137260
138038
  agentStudio_evaluationProject?: Maybe<AgentStudioBatchEvaluationProject>;
137261
138039
  agentStudio_evaluationResultList?: Maybe<AgentStudioEvaluationResultsResult>;
137262
138040
  agentStudio_getAgentActorRoles?: Maybe<AgentStudioActorRoles>;
138041
+ agentStudio_getAgentByProductAri?: Maybe<AgentStudioProductAriAgentResult>;
137263
138042
  agentStudio_getAgentUsePermissionSettings?: Maybe<AgentStudioAgentUsePermissionSettings>;
138043
+ agentStudio_getAgentVersions?: Maybe<AgentStudioAgentVersionsResult>;
137264
138044
  agentStudio_getAgents?: Maybe<AgentStudioAgentsConnection>;
137265
138045
  agentStudio_getByExternalReference?: Maybe<AgentStudioAgentResult>;
137266
138046
  agentStudio_getCreateAgentPermissions?: Maybe<AgentStudioAgentCreatePermissionsConnection>;
137267
138047
  agentStudio_getToolsByIdAndSource?: Maybe<Array<AgentStudioTool>>;
137268
138048
  agentStudio_getWidgetContainersByAgentId?: Maybe<AgentStudioWidgetContainersByAgentIdResult>;
137269
138049
  agentStudio_getWidgetsByAgentIdAndContainerType?: Maybe<AgentStudioWidgetsByAgentIdAndContainerTypeResult>;
138050
+ agentStudio_hasVersionCapability?: Maybe<AgentStudioHasVersionCapabilityResult>;
137270
138051
  agentStudio_insightsConfiguration?: Maybe<AgentStudioInsightsConfigurationResult>;
137271
138052
  agentStudio_jobExecutionHistoryList?: Maybe<AgentStudioJobExecutionHistory>;
137272
138053
  agentStudio_jobRun?: Maybe<AgentStudioBatchEvaluationJobRun>;
137273
138054
  agentStudio_jobRunList?: Maybe<AgentStudioBatchEvaluationJobRunResult>;
138055
+ agentStudio_liveConversationHistoryById?: Maybe<AgentStudioConversationHistoryResult>;
138056
+ agentStudio_liveConversationListByContainerId?: Maybe<AgentStudioConversationListResult>;
137274
138057
  agentStudio_scenarioById?: Maybe<AgentStudioScenarioResult>;
137275
138058
  agentStudio_scenarioListByContainerId?: Maybe<AgentStudioScenariosResult>;
137276
138059
  agentStudio_scenariosByIds?: Maybe<Array<Maybe<AgentStudioScenario>>>;
@@ -137281,6 +138064,8 @@ export declare type Query = {
137281
138064
  agentStudio_validateScenarios?: Maybe<AgentStudioScenarioValidateModeOutput>;
137282
138065
  agentStudio_widgetByContainerAri?: Maybe<AgentStudioWidgetByContainerAriResult>;
137283
138066
  agentWorkspace_availability?: Maybe<AgentWorkspaceAvailabilityConnection>;
138067
+ agentWorkspace_capacity?: Maybe<AgentWorkspaceCapacityConnection>;
138068
+ agentWorkspace_defaultCapacity?: Maybe<AgentWorkspaceDefaultCapacity>;
137284
138069
  agentWorkspace_schedule?: Maybe<AgentWorkspaceSchedule>;
137285
138070
  agentWorkspace_schedules?: Maybe<Array<AgentWorkspaceSchedule>>;
137286
138071
  agentWorkspace_shifts?: Maybe<AgentWorkspaceShiftsConnection>;
@@ -137381,11 +138166,15 @@ export declare type Query = {
137381
138166
  atlasProjectsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
137382
138167
  atlassianStudio_userSiteContext?: Maybe<AtlassianStudioUserSiteContextResult>;
137383
138168
  availableContentStates?: Maybe<AvailableContentStates>;
138169
+ avpPermissions_getCapabilities?: Maybe<AvpPermissionsGetCapabilitiesResponse>;
137384
138170
  avpPermissions_getDashboardIdentityAccess?: Maybe<AvpPermissionsDashboardIdentityAccess>;
138171
+ avpPermissions_hasCapability?: Maybe<AvpPermissionsHasCapabilityResponse>;
137385
138172
  avpPermissions_hello?: Maybe<AvpPermissionsHelloResponse>;
137386
138173
  avp_getChart?: Maybe<AvpChart>;
138174
+ avp_getChartTemplatePreview?: Maybe<AvpChartTemplatePreview>;
137387
138175
  avp_getChartTemplates?: Maybe<Array<AvpChartTemplate>>;
137388
138176
  avp_getDashboard?: Maybe<AvpDashboard>;
138177
+ avp_getDashboardIdBySlug?: Maybe<AvpGetDashboardIdBySlugPayload>;
137389
138178
  avp_getDashboardTemplates?: Maybe<Array<AvpDashboardTemplate>>;
137390
138179
  avp_getDashboardsByAris?: Maybe<Array<Maybe<AvpDashboard>>>;
137391
138180
  avp_getFilterExpression?: Maybe<AvpFilterExpression>;
@@ -137428,10 +138217,10 @@ export declare type Query = {
137428
138217
  ccp_transactionAccounts?: Maybe<Array<Maybe<CcpTransactionAccount>>>;
137429
138218
  cfo_analytics?: Maybe<CfoAnalyticsResult>;
137430
138219
  changeManagement_globalRiskAssessmentSettings: ChangeManagementGlobalRiskAssessmentSettingsPayload;
137431
- changeManagement_globalRiskAssessmentSettingsByIssue: ChangeManagementGlobalRiskAssessmentSettingsPayload;
138220
+ changeManagement_globalRiskAssessmentSettingsByIssue?: Maybe<ChangeManagementGlobalRiskAssessmentSettingsPayload>;
137432
138221
  changeManagement_lastRovoRiskAssessment: ChangeManagementLastRovoRiskAssessmentPayload;
137433
138222
  changeManagement_rovoRiskAssessmentSettings: ChangeManagementRovoRiskAssessmentSettingsPayload;
137434
- changeManagement_rovoRiskAssessmentSettingsByIssue: ChangeManagementRovoRiskAssessmentSettingsPayload;
138223
+ changeManagement_rovoRiskAssessmentSettingsByIssue?: Maybe<ChangeManagementRovoRiskAssessmentSettingsPayload>;
137435
138224
  channelPlatform_chatRequestDetails?: Maybe<ChannelPlatformGetChannelTokenResponse>;
137436
138225
  channelPlatform_createContact?: Maybe<ChannelPlatformCreateContactResponse>;
137437
138226
  channelPlatform_evaluateChannelAvailability?: Maybe<ChannelPlatformChannelAvailabilityResponse>;
@@ -137490,6 +138279,7 @@ export declare type Query = {
137490
138279
  confluence_contentAISummaries?: Maybe<Array<Maybe<ConfluenceContentAiSummaryResponse>>>;
137491
138280
  confluence_contentAccessRequestByStatus?: Maybe<ConfluenceContentAccessRequestConnection>;
137492
138281
  confluence_contentAnalyticsCountUserByContentType?: Maybe<ConfluenceContentAnalyticsCountUserByContentType>;
138282
+ confluence_contentApprovalStatuses?: Maybe<Array<Maybe<ConfluenceApprovalsWorkflowStatus>>>;
137493
138283
  confluence_contentPermissions?: Maybe<ConfluenceContentPermissions>;
137494
138284
  confluence_contentReactionsSummary?: Maybe<ConfluenceReactionSummary>;
137495
138285
  confluence_contentSmartLinksForDraft?: Maybe<PaginatedSmartLinkList>;
@@ -137517,6 +138307,7 @@ export declare type Query = {
137517
138307
  confluence_getSmartContentFeatures?: Maybe<Array<Maybe<SmartPageFeatures>>>;
137518
138308
  confluence_getTotalPendingContentAccessRequestsCount?: Maybe<Scalars['Int']['output']>;
137519
138309
  confluence_getWacTemplate?: Maybe<ConfluenceWacTemplate>;
138310
+ confluence_getWorkflowReviewByApplicationId?: Maybe<ConfluenceWorkflowReviewWithDecisionsPayload>;
137520
138311
  confluence_hasClearPermissionForSpace?: Maybe<Scalars['Boolean']['output']>;
137521
138312
  confluence_hasDivergedFromDefaultSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
137522
138313
  confluence_importsAll?: Maybe<Array<Maybe<ConfluenceImport>>>;
@@ -137876,6 +138667,7 @@ export declare type Query = {
137876
138667
  jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
137877
138668
  jira_issuesByIds?: Maybe<Array<Maybe<JiraIssue>>>;
137878
138669
  jira_jiraServiceManagementDefaultCommentBehavior?: Maybe<JiraServiceManagementDefaultCommentBehavior>;
138670
+ jira_lookAndFeel?: Maybe<JiraLookAndFeel>;
137879
138671
  jira_mergeIssuesOperationProgress?: Maybe<JiraMergeIssuesOperationProgressResult>;
137880
138672
  jira_onboardingConfigById?: Maybe<JiraOnboardingConfig>;
137881
138673
  jira_onboardingConfigByTarget?: Maybe<JiraOnboardingConfig>;
@@ -137916,7 +138708,7 @@ export declare type Query = {
137916
138708
  knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
137917
138709
  knowledgeBaseSpacePermission_bulkQuery: Array<Maybe<KnowledgeBaseSpacePermissionQueryResponse>>;
137918
138710
  knowledgeBase_agentSearch?: Maybe<KnowledgeBaseAgentArticleSearchResponse>;
137919
- knowledgeBase_confluenceServerLinkStatus?: Maybe<KnowledgeBaseConfluenceServerLinkStatusResponse>;
138711
+ knowledgeBase_confluenceAppLinkDetails?: Maybe<KnowledgeBaseConfluenceAppLinkDetailsResponse>;
137920
138712
  knowledgeBase_getLinkedSourceTypes?: Maybe<KnowledgeBaseLinkedSourceTypesResponse>;
137921
138713
  knowledgeBase_linkedSources?: Maybe<KnowledgeBaseLinkedSourcesResponse>;
137922
138714
  knowledgeBase_searchArticles?: Maybe<KnowledgeBaseArticleSearchResponse>;
@@ -138514,6 +139306,7 @@ export declare type QueryAgentAi_SummarizeIssueArgs = {
138514
139306
  export declare type QueryAgentStudio_AgentByIdArgs = {
138515
139307
  id: Scalars['ID']['input'];
138516
139308
  product?: InputMaybe<Scalars['String']['input']>;
139309
+ version?: InputMaybe<AgentStudioAgentVersionInput>;
138517
139310
  workspaceId?: InputMaybe<Scalars['String']['input']>;
138518
139311
  };
138519
139312
  export declare type QueryAgentStudio_AgentByIdentityAccountIdArgs = {
@@ -138615,9 +139408,18 @@ export declare type QueryAgentStudio_GetAgentActorRolesArgs = {
138615
139408
  first?: InputMaybe<Scalars['Int']['input']>;
138616
139409
  id: Scalars['ID']['input'];
138617
139410
  };
139411
+ export declare type QueryAgentStudio_GetAgentByProductAriArgs = {
139412
+ cloudId: Scalars['String']['input'];
139413
+ productAri: Scalars['ID']['input'];
139414
+ };
138618
139415
  export declare type QueryAgentStudio_GetAgentUsePermissionSettingsArgs = {
138619
139416
  id: Scalars['ID']['input'];
138620
139417
  };
139418
+ export declare type QueryAgentStudio_GetAgentVersionsArgs = {
139419
+ after?: InputMaybe<Scalars['String']['input']>;
139420
+ first?: InputMaybe<Scalars['Int']['input']>;
139421
+ id: Scalars['ID']['input'];
139422
+ };
138621
139423
  export declare type QueryAgentStudio_GetAgentsArgs = {
138622
139424
  after?: InputMaybe<Scalars['String']['input']>;
138623
139425
  cloudId: Scalars['String']['input'];
@@ -138649,6 +139451,9 @@ export declare type QueryAgentStudio_GetWidgetsByAgentIdAndContainerTypeArgs = {
138649
139451
  cloudId: Scalars['String']['input'];
138650
139452
  widgetContainerType: AgentStudioWidgetContainerType;
138651
139453
  };
139454
+ export declare type QueryAgentStudio_HasVersionCapabilityArgs = {
139455
+ cloudId: Scalars['String']['input'];
139456
+ };
138652
139457
  export declare type QueryAgentStudio_InsightsConfigurationArgs = {
138653
139458
  cloudId: Scalars['String']['input'];
138654
139459
  id: Scalars['ID']['input'];
@@ -138675,6 +139480,22 @@ export declare type QueryAgentStudio_JobRunListArgs = {
138675
139480
  projectContainerAri: Scalars['ID']['input'];
138676
139481
  status?: InputMaybe<AgentStudioJobRunStatus>;
138677
139482
  };
139483
+ export declare type QueryAgentStudio_LiveConversationHistoryByIdArgs = {
139484
+ after?: InputMaybe<Scalars['String']['input']>;
139485
+ cloudId: Scalars['String']['input'];
139486
+ conversationId: Scalars['ID']['input'];
139487
+ experienceId: Scalars['String']['input'];
139488
+ first?: InputMaybe<Scalars['Int']['input']>;
139489
+ productType: AgentStudioProductType;
139490
+ };
139491
+ export declare type QueryAgentStudio_LiveConversationListByContainerIdArgs = {
139492
+ after?: InputMaybe<Scalars['String']['input']>;
139493
+ cloudId: Scalars['String']['input'];
139494
+ containerAri: Scalars['ID']['input'];
139495
+ experienceId: Scalars['String']['input'];
139496
+ first?: InputMaybe<Scalars['Int']['input']>;
139497
+ productType: AgentStudioProductType;
139498
+ };
138678
139499
  export declare type QueryAgentStudio_ScenarioByIdArgs = {
138679
139500
  containerId: Scalars['ID']['input'];
138680
139501
  id: Scalars['ID']['input'];
@@ -138725,6 +139546,13 @@ export declare type QueryAgentStudio_WidgetByContainerAriArgs = {
138725
139546
  export declare type QueryAgentWorkspace_AvailabilityArgs = {
138726
139547
  input: AgentWorkspaceAvailabilityInput;
138727
139548
  };
139549
+ export declare type QueryAgentWorkspace_CapacityArgs = {
139550
+ input: AgentWorkspaceCapacityInput;
139551
+ };
139552
+ export declare type QueryAgentWorkspace_DefaultCapacityArgs = {
139553
+ cloudId: Scalars['ID']['input'];
139554
+ projectKey: Scalars['String']['input'];
139555
+ };
138728
139556
  export declare type QueryAgentWorkspace_ScheduleArgs = {
138729
139557
  cloudId: Scalars['ID']['input'];
138730
139558
  projectId?: InputMaybe<Scalars['ID']['input']>;
@@ -139259,9 +140087,15 @@ export declare type QueryAtlassianStudio_UserSiteContextArgs = {
139259
140087
  export declare type QueryAvailableContentStatesArgs = {
139260
140088
  contentId: Scalars['ID']['input'];
139261
140089
  };
140090
+ export declare type QueryAvpPermissions_GetCapabilitiesArgs = {
140091
+ input: AvpPermissionsGetCapabilitiesInput;
140092
+ };
139262
140093
  export declare type QueryAvpPermissions_GetDashboardIdentityAccessArgs = {
139263
140094
  input: AvpPermissionsGetDashboardIdentityAccessInput;
139264
140095
  };
140096
+ export declare type QueryAvpPermissions_HasCapabilityArgs = {
140097
+ input: AvpPermissionsHasCapabilityInput;
140098
+ };
139265
140099
  export declare type QueryAvpPermissions_HelloArgs = {
139266
140100
  cloudId: Scalars['ID']['input'];
139267
140101
  integrationId: Scalars['String']['input'];
@@ -139269,6 +140103,11 @@ export declare type QueryAvpPermissions_HelloArgs = {
139269
140103
  export declare type QueryAvp_GetChartArgs = {
139270
140104
  chartAri: Scalars['ID']['input'];
139271
140105
  };
140106
+ export declare type QueryAvp_GetChartTemplatePreviewArgs = {
140107
+ cloudId: Scalars['ID']['input'];
140108
+ templateFileName: Scalars['String']['input'];
140109
+ workspaceId: Scalars['ID']['input'];
140110
+ };
139272
140111
  export declare type QueryAvp_GetChartTemplatesArgs = {
139273
140112
  cloudId: Scalars['ID']['input'];
139274
140113
  locations: Array<Scalars['String']['input']>;
@@ -139277,6 +140116,11 @@ export declare type QueryAvp_GetChartTemplatesArgs = {
139277
140116
  export declare type QueryAvp_GetDashboardArgs = {
139278
140117
  dashboardAri: Scalars['ID']['input'];
139279
140118
  };
140119
+ export declare type QueryAvp_GetDashboardIdBySlugArgs = {
140120
+ cloudId: Scalars['ID']['input'];
140121
+ slug: Scalars['String']['input'];
140122
+ workspaceId: Scalars['ID']['input'];
140123
+ };
139280
140124
  export declare type QueryAvp_GetDashboardTemplatesArgs = {
139281
140125
  input: AvpGetDashboardTemplatesInput;
139282
140126
  };
@@ -139677,6 +140521,10 @@ export declare type QueryConfluence_ContentAnalyticsCountUserByContentTypeArgs =
139677
140521
  startTime: Scalars['String']['input'];
139678
140522
  subType?: InputMaybe<Scalars['String']['input']>;
139679
140523
  };
140524
+ export declare type QueryConfluence_ContentApprovalStatusesArgs = {
140525
+ cloudId: Scalars['ID']['input'];
140526
+ transitionType?: InputMaybe<ConfluenceApprovalTransitionType>;
140527
+ };
139680
140528
  export declare type QueryConfluence_ContentPermissionsArgs = {
139681
140529
  cloudId: Scalars['ID']['input'];
139682
140530
  contentId: Scalars['ID']['input'];
@@ -139809,6 +140657,10 @@ export declare type QueryConfluence_GetTotalPendingContentAccessRequestsCountArg
139809
140657
  export declare type QueryConfluence_GetWacTemplateArgs = {
139810
140658
  cloudId: Scalars['ID']['input'];
139811
140659
  };
140660
+ export declare type QueryConfluence_GetWorkflowReviewByApplicationIdArgs = {
140661
+ applicationId: Scalars['Long']['input'];
140662
+ cloudId: Scalars['ID']['input'];
140663
+ };
139812
140664
  export declare type QueryConfluence_HasClearPermissionForSpaceArgs = {
139813
140665
  cloudId: Scalars['ID']['input'];
139814
140666
  spaceKey: Scalars['String']['input'];
@@ -139835,6 +140687,7 @@ export declare type QueryConfluence_LatestKnowledgeGraphObjectV2Args = {
139835
140687
  cloudId: Scalars['String']['input'];
139836
140688
  contentId: Scalars['ID']['input'];
139837
140689
  contentType: KnowledgeGraphContentType;
140690
+ entryPoint?: InputMaybe<Scalars['String']['input']>;
139838
140691
  objectType: KnowledgeGraphObjectType;
139839
140692
  };
139840
140693
  export declare type QueryConfluence_LegacyEditorReportDownloadLinkArgs = {
@@ -141346,6 +142199,9 @@ export declare type QueryJira_IssuesByIdsArgs = {
141346
142199
  export declare type QueryJira_JiraServiceManagementDefaultCommentBehaviorArgs = {
141347
142200
  cloudId: Scalars['ID']['input'];
141348
142201
  };
142202
+ export declare type QueryJira_LookAndFeelArgs = {
142203
+ cloudId: Scalars['ID']['input'];
142204
+ };
141349
142205
  export declare type QueryJira_MergeIssuesOperationProgressArgs = {
141350
142206
  input: JiraMergeIssuesOperationProgressInput;
141351
142207
  };
@@ -141508,7 +142364,7 @@ export declare type QueryKnowledgeBaseSpacePermission_BulkQueryArgs = {
141508
142364
  export declare type QueryKnowledgeBase_AgentSearchArgs = {
141509
142365
  searchInput?: InputMaybe<KnowledgeBaseAgentArticleSearchInput>;
141510
142366
  };
141511
- export declare type QueryKnowledgeBase_ConfluenceServerLinkStatusArgs = {
142367
+ export declare type QueryKnowledgeBase_ConfluenceAppLinkDetailsArgs = {
141512
142368
  cloudId: Scalars['ID']['input'];
141513
142369
  projectIdentifier: Scalars['String']['input'];
141514
142370
  };
@@ -145143,6 +145999,8 @@ export declare enum Scope {
145143
145999
  ReadContainer = "READ_CONTAINER",
145144
146000
  ReadCustomer = "READ_CUSTOMER",
145145
146001
  ReadDesign = "READ_DESIGN",
146002
+ ReadDeveloperSpace = "READ_DEVELOPER_SPACE",
146003
+ ReadFeedbackFeedback = "READ_FEEDBACK_FEEDBACK",
145146
146004
  ReadJiraUser = "READ_JIRA_USER",
145147
146005
  ReadJiraWork = "READ_JIRA_WORK",
145148
146006
  ReadJswBoardScope = "READ_JSW_BOARD_SCOPE",
@@ -145257,6 +146115,8 @@ export declare enum Scope {
145257
146115
  WriteContainer = "WRITE_CONTAINER",
145258
146116
  WriteCustomer = "WRITE_CUSTOMER",
145259
146117
  WriteDesign = "WRITE_DESIGN",
146118
+ WriteDeveloperSpace = "WRITE_DEVELOPER_SPACE",
146119
+ WriteFeedbackFeedback = "WRITE_FEEDBACK_FEEDBACK",
145260
146120
  WriteJiraWork = "WRITE_JIRA_WORK",
145261
146121
  WriteJswBoardScope = "WRITE_JSW_BOARD_SCOPE",
145262
146122
  WriteJswBoardScopeAdmin = "WRITE_JSW_BOARD_SCOPE_ADMIN",
@@ -145672,6 +146532,10 @@ export declare type SearchLayerDefinition = {
145672
146532
  shadowId?: InputMaybe<Scalars['String']['input']>;
145673
146533
  subEntity?: InputMaybe<Scalars['String']['input']>;
145674
146534
  };
146535
+ export declare enum SearchLinkedEntitiesType {
146536
+ Messages = "messages",
146537
+ Thread = "thread"
146538
+ }
145675
146539
  export declare enum SearchLinkedEntityGranularity {
145676
146540
  AllMatchingMessages = "ALL_MATCHING_MESSAGES",
145677
146541
  Default = "DEFAULT",
@@ -146035,9 +146899,16 @@ export declare type SearchResultGoogleSpreadsheet = SearchL2FeatureProvider & Se
146035
146899
  type: SearchResultType;
146036
146900
  url: Scalars['String']['output'];
146037
146901
  };
146902
+ export declare type SearchResultGraphAttachment = {
146903
+ __typename?: 'SearchResultGraphAttachment';
146904
+ fileType?: Maybe<Scalars['String']['output']>;
146905
+ title?: Maybe<Scalars['String']['output']>;
146906
+ url?: Maybe<Scalars['String']['output']>;
146907
+ };
146038
146908
  export declare type SearchResultGraphDocument = SearchL2FeatureProvider & SearchResult & {
146039
146909
  __typename?: 'SearchResultGraphDocument';
146040
146910
  allContributors?: Maybe<Array<ThirdPartyUser>>;
146911
+ attachments?: Maybe<Array<SearchResultGraphAttachment>>;
146041
146912
  bodyText?: Maybe<Scalars['String']['output']>;
146042
146913
  connectorType?: Maybe<Scalars['String']['output']>;
146043
146914
  containerName?: Maybe<Scalars['String']['output']>;
@@ -146051,7 +146922,9 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
146051
146922
  l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
146052
146923
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
146053
146924
  linkedEntities?: Maybe<Array<SearchResultGraphDocument>>;
146925
+ linkedEntitiesType?: Maybe<SearchLinkedEntitiesType>;
146054
146926
  linkedResults?: Maybe<Array<SearchLinkedResult>>;
146927
+ links?: Maybe<Array<Scalars['String']['output']>>;
146055
146928
  navBoostScore?: Maybe<Scalars['Float']['output']>;
146056
146929
  owner?: Maybe<ThirdPartyUser>;
146057
146930
  permissionLevel?: Maybe<Scalars['String']['output']>;
@@ -146388,7 +147261,7 @@ export declare type SearchTalentFilter = {
146388
147261
  teams?: InputMaybe<Array<Scalars['String']['input']>>;
146389
147262
  };
146390
147263
  export declare type SearchTeamsFilters = {
146391
- attachmentFileType?: InputMaybe<Scalars['String']['input']>;
147264
+ attachmentFileTypes?: InputMaybe<Array<Scalars['String']['input']>>;
146392
147265
  hasAttachment?: InputMaybe<Scalars['Boolean']['input']>;
146393
147266
  hasLink?: InputMaybe<Scalars['Boolean']['input']>;
146394
147267
  };
@@ -166706,6 +167579,13 @@ export declare type SpfAskActivityLink = {
166706
167579
  linkText?: Maybe<Scalars['String']['output']>;
166707
167580
  linkUrl?: Maybe<Scalars['String']['output']>;
166708
167581
  };
167582
+ export declare type SpfAskActivityProposedDate = {
167583
+ __typename?: 'SpfAskActivityProposedDate';
167584
+ proposedDate?: Maybe<Scalars['String']['output']>;
167585
+ proposedDateType?: Maybe<SpfAskTargetDateType>;
167586
+ targetDate?: Maybe<Scalars['String']['output']>;
167587
+ targetDateType?: Maybe<SpfAskTargetDateType>;
167588
+ };
166709
167589
  export declare type SpfAskActivityResult = QueryError | SpfAskActivity;
166710
167590
  export declare enum SpfAskActivityType {
166711
167591
  Created = "CREATED",
@@ -166737,6 +167617,12 @@ export declare type SpfAskActivityUpdatedPriority = SpfAskActivityUpdatedValue &
166737
167617
  newValue?: Maybe<SpfAskPriority>;
166738
167618
  oldValue?: Maybe<SpfAskPriority>;
166739
167619
  };
167620
+ export declare type SpfAskActivityUpdatedProposedDate = SpfAskActivityUpdatedValue & {
167621
+ __typename?: 'SpfAskActivityUpdatedProposedDate';
167622
+ attribute: SpfAskActivityAttribute;
167623
+ newValue?: Maybe<SpfAskActivityProposedDate>;
167624
+ oldValue?: Maybe<SpfAskActivityProposedDate>;
167625
+ };
166740
167626
  export declare type SpfAskActivityUpdatedStatus = SpfAskActivityUpdatedValue & {
166741
167627
  __typename?: 'SpfAskActivityUpdatedStatus';
166742
167628
  attribute: SpfAskActivityAttribute;
@@ -170912,6 +171798,22 @@ export declare type TownsquareCommentEdge = {
170912
171798
  cursor: Scalars['String']['output'];
170913
171799
  node?: Maybe<TownsquareComment>;
170914
171800
  };
171801
+ export declare type TownsquareCompletionGoalState = {
171802
+ __typename?: 'TownsquareCompletionGoalState';
171803
+ label?: Maybe<Scalars['String']['output']>;
171804
+ localizedLabel?: Maybe<TownsquareLocalizationField>;
171805
+ score?: Maybe<Scalars['Float']['output']>;
171806
+ value?: Maybe<TownsquareGoalStateValue>;
171807
+ };
171808
+ export declare type TownsquareCompletionGoalStateLabelArgs = {
171809
+ includeScore?: InputMaybe<Scalars['Boolean']['input']>;
171810
+ };
171811
+ export declare type TownsquareCompletionProjectState = {
171812
+ __typename?: 'TownsquareCompletionProjectState';
171813
+ label?: Maybe<Scalars['String']['output']>;
171814
+ localizedLabel?: Maybe<TownsquareLocalizationField>;
171815
+ value?: Maybe<TownsquareProjectStateValue>;
171816
+ };
170915
171817
  export declare type TownsquareContributor = {
170916
171818
  __typename?: 'TownsquareContributor';
170917
171819
  teamContributor?: Maybe<TownsquareTeamContributor>;
@@ -171553,7 +172455,9 @@ export declare enum TownsquareGoalSortEnum {
171553
172455
  }
171554
172456
  export declare type TownsquareGoalState = {
171555
172457
  __typename?: 'TownsquareGoalState';
172458
+ atCompletionState?: Maybe<TownsquareCompletionGoalState>;
171556
172459
  label?: Maybe<Scalars['String']['output']>;
172460
+ localizedLabel?: Maybe<TownsquareLocalizationField>;
171557
172461
  score?: Maybe<Scalars['Float']['output']>;
171558
172462
  value?: Maybe<TownsquareGoalStateValue>;
171559
172463
  };
@@ -172816,7 +173720,9 @@ export declare enum TownsquareProjectSortEnum {
172816
173720
  }
172817
173721
  export declare type TownsquareProjectState = {
172818
173722
  __typename?: 'TownsquareProjectState';
173723
+ atCompletionState?: Maybe<TownsquareCompletionProjectState>;
172819
173724
  label?: Maybe<Scalars['String']['output']>;
173725
+ localizedLabel?: Maybe<TownsquareLocalizationField>;
172820
173726
  value?: Maybe<TownsquareProjectStateValue>;
172821
173727
  };
172822
173728
  export declare enum TownsquareProjectStateValue {
@@ -173590,6 +174496,7 @@ export declare type TownsquareShareProjectUserInput = {
173590
174496
  };
173591
174497
  export declare type TownsquareStatus = {
173592
174498
  __typename?: 'TownsquareStatus';
174499
+ atCompletionState?: Maybe<TownsquareCompletionGoalState>;
173593
174500
  localizedLabel?: Maybe<TownsquareLocalizationField>;
173594
174501
  score?: Maybe<Scalars['Float']['output']>;
173595
174502
  value?: Maybe<Scalars['String']['output']>;
@@ -176021,6 +176928,7 @@ export declare type TrelloInboxNotificationsUpdated = {
176021
176928
  __typename?: 'TrelloInboxNotificationsUpdated';
176022
176929
  onQuickCaptureNotificationsCleared?: Maybe<Array<TrelloQuickCaptureNotificationCleared>>;
176023
176930
  quickCaptureCards?: Maybe<Array<TrelloInboxQuickCaptureCard>>;
176931
+ quickCaptureCardsCreated?: Maybe<Array<TrelloQuickCaptureNotification>>;
176024
176932
  };
176025
176933
  export declare type TrelloInboxPrefs = TrelloBaseBoardPrefs & {
176026
176934
  __typename?: 'TrelloInboxPrefs';
@@ -177142,6 +178050,7 @@ export declare type TrelloPlannerCalendarEventUpdated = {
177142
178050
  onPlannerCalendarEventCardDeleted?: Maybe<Array<TrelloPlannerCalendarEventCardDeleted>>;
177143
178051
  parentEventId?: Maybe<Scalars['ID']['output']>;
177144
178052
  plannerCalendarId?: Maybe<Scalars['ID']['output']>;
178053
+ providerCalendarId?: Maybe<Scalars['ID']['output']>;
177145
178054
  readOnly?: Maybe<Scalars['Boolean']['output']>;
177146
178055
  startAt?: Maybe<Scalars['DateTime']['output']>;
177147
178056
  status?: Maybe<TrelloPlannerCalendarEventStatus>;