@forge/cli-shared 8.15.3-next.1 → 8.15.3-next.3

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.
@@ -2271,6 +2271,7 @@ export declare type AdminAuditLogContainer = {
2271
2271
  type: AdminAuditLogContainerType;
2272
2272
  };
2273
2273
  export declare enum AdminAuditLogContainerType {
2274
+ App = "APP",
2274
2275
  Org = "ORG",
2275
2276
  Site = "SITE"
2276
2277
  }
@@ -2579,17 +2580,8 @@ export declare type AdminExternalCollaboratorFeature = {
2579
2580
  };
2580
2581
  export declare type AdminFeature = AdminAiFeature | AdminAuditLogFeature | AdminCustomDomains | AdminDataResidencyFeature | AdminExternalCollaboratorFeature | AdminFreezeWindowsFeature | AdminInsightsFeature | AdminIpAllowlistingFeature | AdminReleaseTrackFeature | AdminSandboxFeature | AdminStorageFeature | AdminUserManagement;
2581
2582
  export declare type AdminFetchAdminAuditLogEventsInput = {
2582
- action?: InputMaybe<Array<Scalars['String']['input']>>;
2583
- actor?: InputMaybe<Array<Scalars['String']['input']>>;
2584
- appType?: InputMaybe<Scalars['String']['input']>;
2585
- correlationId?: InputMaybe<Scalars['String']['input']>;
2586
2583
  format?: InputMaybe<AdminAuditLogEventMessageFormat>;
2587
- from?: InputMaybe<Scalars['String']['input']>;
2588
- ip?: InputMaybe<Array<Scalars['String']['input']>>;
2589
- location?: InputMaybe<Scalars['String']['input']>;
2590
- query?: InputMaybe<Scalars['String']['input']>;
2591
- sortOrder?: InputMaybe<SortDirection>;
2592
- to?: InputMaybe<Scalars['String']['input']>;
2584
+ query: Scalars['String']['input'];
2593
2585
  };
2594
2586
  export declare type AdminFetchGroupInput = {
2595
2587
  directoryId?: InputMaybe<Scalars['String']['input']>;
@@ -2897,6 +2889,24 @@ export declare type AdminOrgDirectoryDetail = {
2897
2889
  samlConfigurationId?: Maybe<Scalars['ID']['output']>;
2898
2890
  scimDirectoryId?: Maybe<Scalars['ID']['output']>;
2899
2891
  };
2892
+ export declare type AdminOrgPolicy = {
2893
+ __typename?: 'AdminOrgPolicy';
2894
+ createdAt?: Maybe<Scalars['String']['output']>;
2895
+ id?: Maybe<Scalars['ID']['output']>;
2896
+ metadata?: Maybe<Scalars['String']['output']>;
2897
+ name: Scalars['String']['output'];
2898
+ ownerId?: Maybe<Scalars['String']['output']>;
2899
+ queryData?: Maybe<Scalars['String']['output']>;
2900
+ rule?: Maybe<Scalars['String']['output']>;
2901
+ status: Scalars['String']['output'];
2902
+ type: Scalars['String']['output'];
2903
+ updatedAt?: Maybe<Scalars['String']['output']>;
2904
+ };
2905
+ export declare type AdminOrgPolicyConnection = {
2906
+ __typename?: 'AdminOrgPolicyConnection';
2907
+ edges?: Maybe<Array<AdminOrgPolicyEdge>>;
2908
+ pageInfo: PageInfo;
2909
+ };
2900
2910
  export declare type AdminOrgPolicyDetail = {
2901
2911
  __typename?: 'AdminOrgPolicyDetail';
2902
2912
  authPolicy: AdminAuthPolicyConfig;
@@ -2907,6 +2917,11 @@ export declare type AdminOrgPolicyDetail = {
2907
2917
  numberOfUsers?: Maybe<Scalars['Int']['output']>;
2908
2918
  policyType: AdminAuthenticationPolicyType;
2909
2919
  };
2920
+ export declare type AdminOrgPolicyEdge = {
2921
+ __typename?: 'AdminOrgPolicyEdge';
2922
+ cursor: Scalars['String']['output'];
2923
+ node: AdminOrgPolicy;
2924
+ };
2910
2925
  export declare type AdminOrganization = {
2911
2926
  __typename?: 'AdminOrganization';
2912
2927
  id: Scalars['ID']['output'];
@@ -4574,6 +4589,7 @@ export declare type AgentStudioTeamsChannelDetails = {
4574
4589
  };
4575
4590
  export declare type AgentStudioTool = {
4576
4591
  __typename?: 'AgentStudioTool';
4592
+ configured?: Maybe<Scalars['Boolean']['output']>;
4577
4593
  definitionId?: Maybe<Scalars['String']['output']>;
4578
4594
  definitionSource?: Maybe<AgentStudioToolDefinitionSource>;
4579
4595
  description?: Maybe<Scalars['String']['output']>;
@@ -4600,6 +4616,7 @@ export declare type AgentStudioToolIdAndSource = {
4600
4616
  toolId: Scalars['String']['input'];
4601
4617
  };
4602
4618
  export declare type AgentStudioToolInput = {
4619
+ configured?: InputMaybe<Scalars['Boolean']['input']>;
4603
4620
  definitionId: Scalars['String']['input'];
4604
4621
  definitionSource: AgentStudioToolDefinitionSource;
4605
4622
  toolId?: InputMaybe<Scalars['String']['input']>;
@@ -4793,6 +4810,7 @@ export declare type AgentWorkspaceAgent = {
4793
4810
  displayName: Scalars['String']['output'];
4794
4811
  id: Scalars['ID']['output'];
4795
4812
  skills: Array<AgentWorkspaceUserSkill>;
4813
+ teamARIs: Array<Scalars['ID']['output']>;
4796
4814
  teamIds: Array<Scalars['ID']['output']>;
4797
4815
  teamNames: Array<Scalars['String']['output']>;
4798
4816
  teams?: Maybe<Array<TeamV2>>;
@@ -4803,10 +4821,11 @@ export declare type AgentWorkspaceAgentAvailability = {
4803
4821
  agentId: Scalars['ID']['output'];
4804
4822
  agentName: Scalars['String']['output'];
4805
4823
  status: AgentWorkspaceAvailabilityStatus;
4824
+ teamARIs: Array<Scalars['ID']['output']>;
4806
4825
  teamIds: Array<Scalars['ID']['output']>;
4807
4826
  teamNames: Array<Scalars['String']['output']>;
4808
4827
  teams?: Maybe<Array<TeamV2>>;
4809
- updatedAt: Scalars['DateTime']['output'];
4828
+ updatedAt?: Maybe<Scalars['DateTime']['output']>;
4810
4829
  };
4811
4830
  export declare type AgentWorkspaceAgentShifts = {
4812
4831
  __typename?: 'AgentWorkspaceAgentShifts';
@@ -5052,6 +5071,7 @@ export declare type AgentWorkspaceCreateScheduleInput = {
5052
5071
  projectKey?: InputMaybe<Scalars['String']['input']>;
5053
5072
  recurrence?: InputMaybe<AgentWorkspaceRecurrenceRuleInput>;
5054
5073
  startTime: Scalars['DateTime']['input'];
5074
+ teamId?: InputMaybe<Scalars['ID']['input']>;
5055
5075
  };
5056
5076
  export declare type AgentWorkspaceCreateSchedulePayload = {
5057
5077
  __typename?: 'AgentWorkspaceCreateSchedulePayload';
@@ -5152,6 +5172,7 @@ export declare type AgentWorkspaceSchedule = {
5152
5172
  recurrence?: Maybe<AgentWorkspaceRecurrenceRule>;
5153
5173
  recurring: Scalars['Boolean']['output'];
5154
5174
  startTime: Scalars['DateTime']['output'];
5175
+ teamId?: Maybe<Scalars['ID']['output']>;
5155
5176
  updatedAt: Scalars['DateTime']['output'];
5156
5177
  };
5157
5178
  export declare type AgentWorkspaceScheduleError = {
@@ -5321,6 +5342,7 @@ export declare type AgentWorkspaceUpdateScheduleInput = {
5321
5342
  recurrence?: InputMaybe<AgentWorkspaceRecurrenceRuleInput>;
5322
5343
  scheduleId: Scalars['ID']['input'];
5323
5344
  startTime: Scalars['DateTime']['input'];
5345
+ teamId?: InputMaybe<Scalars['ID']['input']>;
5324
5346
  };
5325
5347
  export declare type AgentWorkspaceUpdateSchedulePayload = {
5326
5348
  __typename?: 'AgentWorkspaceUpdateSchedulePayload';
@@ -7156,6 +7178,7 @@ export declare type ArjHierarchyConfigurationLevel = {
7156
7178
  export declare type AssetsAriAttribute = AssetsObjectTypeAttribute & {
7157
7179
  __typename?: 'AssetsARIAttribute';
7158
7180
  id: Scalars['ID']['output'];
7181
+ maximumCardinality?: Maybe<Scalars['Int']['output']>;
7159
7182
  name?: Maybe<Scalars['String']['output']>;
7160
7183
  };
7161
7184
  export declare type AssetsAriAttributeOnObject = AssetsAttributeOnObject & {
@@ -9330,6 +9353,7 @@ export declare type AssetsDatetimeAttributeValue = {
9330
9353
  export declare type AssetsEmailAttribute = AssetsObjectTypeAttribute & {
9331
9354
  __typename?: 'AssetsEmailAttribute';
9332
9355
  id: Scalars['ID']['output'];
9356
+ maximumCardinality?: Maybe<Scalars['Int']['output']>;
9333
9357
  name?: Maybe<Scalars['String']['output']>;
9334
9358
  };
9335
9359
  export declare type AssetsEmailAttributeOnObject = AssetsAttributeOnObject & {
@@ -9349,6 +9373,7 @@ export declare type AssetsFloatAttribute = AssetsObjectTypeAttribute & {
9349
9373
  __typename?: 'AssetsFloatAttribute';
9350
9374
  id: Scalars['ID']['output'];
9351
9375
  name?: Maybe<Scalars['String']['output']>;
9376
+ suffix?: Maybe<Scalars['String']['output']>;
9352
9377
  };
9353
9378
  export declare type AssetsFloatAttributeOnObject = AssetsAttributeOnObject & {
9354
9379
  __typename?: 'AssetsFloatAttributeOnObject';
@@ -9366,6 +9391,7 @@ export declare type AssetsFloatAttributeValue = {
9366
9391
  export declare type AssetsGroupAttribute = AssetsObjectTypeAttribute & {
9367
9392
  __typename?: 'AssetsGroupAttribute';
9368
9393
  id: Scalars['ID']['output'];
9394
+ maximumCardinality?: Maybe<Scalars['Int']['output']>;
9369
9395
  name?: Maybe<Scalars['String']['output']>;
9370
9396
  };
9371
9397
  export declare type AssetsGroupAttributeOnObject = AssetsAttributeOnObject & {
@@ -9416,6 +9442,7 @@ export declare type AssetsIntegerAttribute = AssetsObjectTypeAttribute & {
9416
9442
  __typename?: 'AssetsIntegerAttribute';
9417
9443
  id: Scalars['ID']['output'];
9418
9444
  name?: Maybe<Scalars['String']['output']>;
9445
+ suffix?: Maybe<Scalars['String']['output']>;
9419
9446
  };
9420
9447
  export declare type AssetsIntegerAttributeOnObject = AssetsAttributeOnObject & {
9421
9448
  __typename?: 'AssetsIntegerAttributeOnObject';
@@ -9461,6 +9488,7 @@ export declare type AssetsObjectAqlResult = {
9461
9488
  export declare type AssetsObjectAttribute = AssetsObjectTypeAttribute & {
9462
9489
  __typename?: 'AssetsObjectAttribute';
9463
9490
  id: Scalars['ID']['output'];
9491
+ maximumCardinality?: Maybe<Scalars['Int']['output']>;
9464
9492
  name?: Maybe<Scalars['String']['output']>;
9465
9493
  qlQuery?: Maybe<Scalars['String']['output']>;
9466
9494
  referenceObjectType?: Maybe<AssetsObjectType>;
@@ -9522,6 +9550,7 @@ export declare type AssetsSchema = Node & {
9522
9550
  export declare type AssetsSelectAttribute = AssetsObjectTypeAttribute & {
9523
9551
  __typename?: 'AssetsSelectAttribute';
9524
9552
  id: Scalars['ID']['output'];
9553
+ maximumCardinality?: Maybe<Scalars['Int']['output']>;
9525
9554
  name?: Maybe<Scalars['String']['output']>;
9526
9555
  options?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
9527
9556
  };
@@ -9562,6 +9591,7 @@ export declare type AssetsServiceObjectAttributesArgs = {
9562
9591
  export declare type AssetsSpaceAttribute = AssetsObjectTypeAttribute & {
9563
9592
  __typename?: 'AssetsSpaceAttribute';
9564
9593
  id: Scalars['ID']['output'];
9594
+ maximumCardinality?: Maybe<Scalars['Int']['output']>;
9565
9595
  name?: Maybe<Scalars['String']['output']>;
9566
9596
  };
9567
9597
  export declare type AssetsSpaceAttributeOnObject = AssetsAttributeOnObject & {
@@ -9622,6 +9652,7 @@ export declare type AssetsStatusType = {
9622
9652
  export declare type AssetsTagAttribute = AssetsObjectTypeAttribute & {
9623
9653
  __typename?: 'AssetsTagAttribute';
9624
9654
  id: Scalars['ID']['output'];
9655
+ maximumCardinality?: Maybe<Scalars['Int']['output']>;
9625
9656
  name?: Maybe<Scalars['String']['output']>;
9626
9657
  };
9627
9658
  export declare type AssetsTagAttributeOnObject = AssetsAttributeOnObject & {
@@ -9670,6 +9701,7 @@ export declare type AssetsTextareaAttributeValue = {
9670
9701
  export declare type AssetsUrlAttribute = AssetsObjectTypeAttribute & {
9671
9702
  __typename?: 'AssetsURLAttribute';
9672
9703
  id: Scalars['ID']['output'];
9704
+ maximumCardinality?: Maybe<Scalars['Int']['output']>;
9673
9705
  name?: Maybe<Scalars['String']['output']>;
9674
9706
  };
9675
9707
  export declare type AssetsUrlAttributeOnObject = AssetsAttributeOnObject & {
@@ -9687,6 +9719,7 @@ export declare type AssetsUrlAttributeValue = {
9687
9719
  export declare type AssetsUserAttribute = AssetsObjectTypeAttribute & {
9688
9720
  __typename?: 'AssetsUserAttribute';
9689
9721
  id: Scalars['ID']['output'];
9722
+ maximumCardinality?: Maybe<Scalars['Int']['output']>;
9690
9723
  name?: Maybe<Scalars['String']['output']>;
9691
9724
  userGroups?: Maybe<Array<AssetsGroupAttributeValue>>;
9692
9725
  };
@@ -10090,6 +10123,9 @@ export declare type BlockServiceBatchRetrieveBlocksPayload = {
10090
10123
  error: Array<BlockServiceBlockErrorPayload>;
10091
10124
  success: Array<BlockServiceBlockPayload>;
10092
10125
  };
10126
+ export declare type BlockServiceBatchUpdateBlocksInput = {
10127
+ blocks: Array<BlockServiceUpdateBlockInput>;
10128
+ };
10093
10129
  export declare type BlockServiceBlockErrorPayload = {
10094
10130
  __typename?: 'BlockServiceBlockErrorPayload';
10095
10131
  blockAri: Scalars['String']['output'];
@@ -12967,6 +13003,17 @@ export declare type ChannelPlatformAgentStatusResponse = {
12967
13003
  __typename?: 'ChannelPlatformAgentStatusResponse';
12968
13004
  status?: Maybe<Scalars['String']['output']>;
12969
13005
  };
13006
+ export declare type ChannelPlatformAttachmentMetadataResponse = {
13007
+ __typename?: 'ChannelPlatformAttachmentMetadataResponse';
13008
+ success?: Maybe<Scalars['Boolean']['output']>;
13009
+ };
13010
+ export declare type ChannelPlatformAttachmentPreviewUrlResponse = {
13011
+ __typename?: 'ChannelPlatformAttachmentPreviewUrlResponse';
13012
+ attachmentId?: Maybe<Scalars['String']['output']>;
13013
+ expireAt?: Maybe<Scalars['String']['output']>;
13014
+ filename?: Maybe<Scalars['String']['output']>;
13015
+ preSignedUrl: Scalars['String']['output'];
13016
+ };
12970
13017
  export declare type ChannelPlatformAttendee = {
12971
13018
  __typename?: 'ChannelPlatformAttendee';
12972
13019
  attendeeId?: Maybe<Scalars['String']['output']>;
@@ -13106,6 +13153,12 @@ export declare type ChannelPlatformMediaPlacement = {
13106
13153
  signalingUrl?: Maybe<Scalars['String']['output']>;
13107
13154
  turnControlUrl?: Maybe<Scalars['String']['output']>;
13108
13155
  };
13156
+ export declare type ChannelPlatformMediaTokenResponse = {
13157
+ __typename?: 'ChannelPlatformMediaTokenResponse';
13158
+ clientId?: Maybe<Scalars['String']['output']>;
13159
+ collectionName?: Maybe<Scalars['String']['output']>;
13160
+ token?: Maybe<Scalars['String']['output']>;
13161
+ };
13109
13162
  export declare type ChannelPlatformMeeting = {
13110
13163
  __typename?: 'ChannelPlatformMeeting';
13111
13164
  mediaPlacement?: Maybe<ChannelPlatformMediaPlacement>;
@@ -13245,6 +13298,10 @@ export declare type ChannelPlatformTicket = {
13245
13298
  ticketKey?: Maybe<Scalars['String']['output']>;
13246
13299
  };
13247
13300
  export declare type ChannelPlatformTokenResponse = ChannelPlatformGetChannelTokenResponse | ChannelPlatformSubmitTicketResponse;
13301
+ export declare type ChannelPlatformTracMetricsResponse = {
13302
+ __typename?: 'ChannelPlatformTracMetricsResponse';
13303
+ success?: Maybe<Scalars['Boolean']['output']>;
13304
+ };
13248
13305
  export declare type ChannelPlatformTranscriptEntry = {
13249
13306
  __typename?: 'ChannelPlatformTranscriptEntry';
13250
13307
  contactId?: Maybe<Scalars['String']['output']>;
@@ -23778,7 +23835,7 @@ export declare type ConfluenceCreateCommentOnQuestionPayload = {
23778
23835
  };
23779
23836
  export declare type ConfluenceCreateContentApprovalRequestInput = {
23780
23837
  comment?: InputMaybe<Scalars['String']['input']>;
23781
- contentId: Scalars['Long']['input'];
23838
+ contentId: Scalars['ID']['input'];
23782
23839
  contentStatus: GraphQlContentStatus;
23783
23840
  reviewers?: InputMaybe<Array<InputMaybe<ConfluenceContentApprovalReviewerInput>>>;
23784
23841
  version: Scalars['Int']['input'];
@@ -23916,7 +23973,7 @@ export declare type ConfluenceCreateTopicPayload = Payload & {
23916
23973
  topic?: Maybe<ConfluenceTopic>;
23917
23974
  };
23918
23975
  export declare type ConfluenceCreateWorkflowApplicationRequestInput = {
23919
- contentId: Scalars['Long']['input'];
23976
+ contentId: Scalars['ID']['input'];
23920
23977
  contentStatus: GraphQlContentStatus;
23921
23978
  isActive?: InputMaybe<Scalars['Boolean']['input']>;
23922
23979
  version?: InputMaybe<Scalars['Int']['input']>;
@@ -26223,7 +26280,8 @@ export declare enum ConfluencePermission {
26223
26280
  View = "VIEW"
26224
26281
  }
26225
26282
  export declare type ConfluencePermissionCombinationPrincipalTypeAssignmentInput = {
26226
- principalType: ConfluencePermissionTransitionPrincipalType;
26283
+ mutationPrincipalType?: InputMaybe<ConfluencePermissionTransitionMutationPrincipalType>;
26284
+ principalType?: InputMaybe<ConfluencePermissionTransitionPrincipalType>;
26227
26285
  removeAccess: Scalars['Boolean']['input'];
26228
26286
  roleId?: InputMaybe<Scalars['ID']['input']>;
26229
26287
  };
@@ -26251,6 +26309,14 @@ export declare type ConfluencePermissionTransitionBulkRemoveAccessPayload = Payl
26251
26309
  success: Scalars['Boolean']['output'];
26252
26310
  taskId?: Maybe<Scalars['ID']['output']>;
26253
26311
  };
26312
+ export declare enum ConfluencePermissionTransitionMutationPrincipalType {
26313
+ AllLicensedUsersUserClass = "ALL_LICENSED_USERS_USER_CLASS",
26314
+ AllProductAdminsUserClass = "ALL_PRODUCT_ADMINS_USER_CLASS",
26315
+ Anonymous = "ANONYMOUS",
26316
+ Group = "GROUP",
26317
+ Guest = "GUEST",
26318
+ User = "USER"
26319
+ }
26254
26320
  export declare type ConfluencePermissionTransitionPrincipal = {
26255
26321
  __typename?: 'ConfluencePermissionTransitionPrincipal';
26256
26322
  email?: Maybe<Scalars['String']['output']>;
@@ -26991,6 +27057,7 @@ export declare type ConfluenceReviewerDecisionInfo = {
26991
27057
  principalType: ConfluencePrincipalType;
26992
27058
  required?: Maybe<Scalars['Boolean']['output']>;
26993
27059
  reviewerDecisionStatus?: Maybe<ConfluenceReviewerDecisionState>;
27060
+ reviewerId?: Maybe<Scalars['ID']['output']>;
26994
27061
  user?: Maybe<AtlassianUser>;
26995
27062
  };
26996
27063
  export declare enum ConfluenceReviewerDecisionState {
@@ -28462,6 +28529,7 @@ export declare type ConfluenceUser = {
28462
28529
  __typename?: 'ConfluenceUser';
28463
28530
  accessStatus: AccessStatus;
28464
28531
  accountId?: Maybe<Scalars['String']['output']>;
28532
+ confluenceUserDetailsId?: Maybe<Scalars['ID']['output']>;
28465
28533
  currentUser?: Maybe<CurrentUserOperations>;
28466
28534
  groups: Array<Maybe<Scalars['String']['output']>>;
28467
28535
  groupsWithId: Array<Maybe<Group>>;
@@ -28614,8 +28682,14 @@ export declare type ConfluenceWorkflowApplicationDetails = {
28614
28682
  contentId?: Maybe<Scalars['ID']['output']>;
28615
28683
  contentStatus?: Maybe<Scalars['String']['output']>;
28616
28684
  contentVersion?: Maybe<Scalars['Int']['output']>;
28685
+ creationDate?: Maybe<ConfluenceApprovalsDate>;
28686
+ creator?: Maybe<AtlassianUser>;
28687
+ creatorAaid?: Maybe<Scalars['ID']['output']>;
28617
28688
  id?: Maybe<Scalars['ID']['output']>;
28618
28689
  isActive?: Maybe<Scalars['Boolean']['output']>;
28690
+ lastModificationDate?: Maybe<ConfluenceApprovalsDate>;
28691
+ modifier?: Maybe<AtlassianUser>;
28692
+ modifierAaid?: Maybe<Scalars['ID']['output']>;
28619
28693
  workflowId?: Maybe<Scalars['ID']['output']>;
28620
28694
  workflowStatusId?: Maybe<Scalars['ID']['output']>;
28621
28695
  };
@@ -29033,6 +29107,8 @@ export declare type ContentAnalyticsLastViewedAtByPageItem = {
29033
29107
  };
29034
29108
  export declare type ContentAnalyticsPageViewInfo = {
29035
29109
  __typename?: 'ContentAnalyticsPageViewInfo';
29110
+ confluenceUser?: Maybe<ConfluenceUser>;
29111
+ confluenceUserDetailsId: Scalars['ID']['output'];
29036
29112
  isEngaged?: Maybe<Scalars['Boolean']['output']>;
29037
29113
  isPrivate?: Maybe<Scalars['Boolean']['output']>;
29038
29114
  lastVersionViewed: Scalars['Int']['output'];
@@ -31405,9 +31481,13 @@ export declare type CplsCreateCustomContributionTargetWithWorkAssociationInput =
31405
31481
  export declare type CplsCreateCustomContributionTargetWithWorkAssociationPayload = Payload & {
31406
31482
  __typename?: 'CplsCreateCustomContributionTargetWithWorkAssociationPayload';
31407
31483
  contributorWorkAssociation?: Maybe<CplsContributorWorkEdge>;
31484
+ contributorWorkAssociationByScope?: Maybe<CplsContributorWorkEdge>;
31408
31485
  errors?: Maybe<Array<MutationError>>;
31409
31486
  success: Scalars['Boolean']['output'];
31410
31487
  };
31488
+ export declare type CplsCreateCustomContributionTargetWithWorkAssociationPayloadContributorWorkAssociationByScopeArgs = {
31489
+ scopeId: Scalars['ID']['input'];
31490
+ };
31411
31491
  export declare type CplsCustomContributionTarget = {
31412
31492
  __typename?: 'CplsCustomContributionTarget';
31413
31493
  id: Scalars['ID']['output'];
@@ -31614,12 +31694,16 @@ export declare type CplsViewSettingsInput = {
31614
31694
  };
31615
31695
  export declare type CplsWork = {
31616
31696
  __typename?: 'CplsWork';
31697
+ contributorsByIds?: Maybe<Array<Maybe<CplsWorkContributorEdge>>>;
31617
31698
  id: Scalars['ID']['output'];
31618
31699
  resourcing?: Maybe<CplsWorkResourcing>;
31619
31700
  workContributors?: Maybe<CplsWorkContributorConnection>;
31620
31701
  workData?: Maybe<CplsWorkData>;
31621
31702
  workDataId?: Maybe<Scalars['ID']['output']>;
31622
31703
  };
31704
+ export declare type CplsWorkContributorsByIdsArgs = {
31705
+ contributorIds: Array<Scalars['ID']['input']>;
31706
+ };
31623
31707
  export declare type CplsWorkWorkContributorsArgs = {
31624
31708
  after?: InputMaybe<Scalars['String']['input']>;
31625
31709
  before?: InputMaybe<Scalars['String']['input']>;
@@ -35648,6 +35732,7 @@ export declare type DevAiRovoDevCreateSessionByCloudIdInput = {
35648
35732
  options?: InputMaybe<DevAiRovoDevCreateSessionOptionsInput>;
35649
35733
  promptAdf?: InputMaybe<Scalars['JSON']['input']>;
35650
35734
  repository: DevAiRovoDevRepositoryInput;
35735
+ source?: InputMaybe<Scalars['String']['input']>;
35651
35736
  useCase?: InputMaybe<Scalars['String']['input']>;
35652
35737
  xid?: InputMaybe<Scalars['String']['input']>;
35653
35738
  };
@@ -35658,6 +35743,7 @@ export declare type DevAiRovoDevCreateSessionInput = {
35658
35743
  options?: InputMaybe<DevAiRovoDevCreateSessionOptionsInput>;
35659
35744
  promptAdf?: InputMaybe<Scalars['JSON']['input']>;
35660
35745
  repository: DevAiRovoDevRepositoryInput;
35746
+ source?: InputMaybe<Scalars['String']['input']>;
35661
35747
  useCase?: InputMaybe<Scalars['String']['input']>;
35662
35748
  workspaceAri: Scalars['ID']['input'];
35663
35749
  xid?: InputMaybe<Scalars['String']['input']>;
@@ -35815,6 +35901,9 @@ export declare type DevAiSandbox = {
35815
35901
  readiness?: Maybe<DevAiSandboxReadiness>;
35816
35902
  };
35817
35903
  export declare enum DevAiSandboxError {
35904
+ ApplicationsStartFailed = "APPLICATIONS_START_FAILED",
35905
+ HibernationRestoreFailed = "HIBERNATION_RESTORE_FAILED",
35906
+ RepoCloneFailed = "REPO_CLONE_FAILED",
35818
35907
  Unknown = "UNKNOWN"
35819
35908
  }
35820
35909
  export declare type DevAiSandboxProgress = {
@@ -39595,6 +39684,8 @@ export declare type ExternalIcon = {
39595
39684
  export declare type ExternalLargeContent = {
39596
39685
  __typename?: 'ExternalLargeContent';
39597
39686
  asText?: Maybe<Scalars['String']['output']>;
39687
+ mediaTextUrl?: Maybe<Scalars['String']['output']>;
39688
+ mediaThumbnailUrl?: Maybe<Scalars['String']['output']>;
39598
39689
  mimeType?: Maybe<Scalars['String']['output']>;
39599
39690
  };
39600
39691
  export declare type ExternalLocation = {
@@ -42970,6 +43061,7 @@ export declare type GraphIntegrationMcpAdminManagementMcpServerMetaData = {
42970
43061
  export declare type GraphIntegrationMcpAdminManagementMcpServerNode = {
42971
43062
  __typename?: 'GraphIntegrationMcpAdminManagementMcpServerNode';
42972
43063
  authConsentUrl?: Maybe<Scalars['URL']['output']>;
43064
+ autoEnableNewTools: Scalars['Boolean']['output'];
42973
43065
  baseUrl: Scalars['URL']['output'];
42974
43066
  displayName: Scalars['String']['output'];
42975
43067
  endpointPath?: Maybe<Scalars['String']['output']>;
@@ -43028,6 +43120,7 @@ export declare enum GraphIntegrationMcpAdminManagementMcpToolStatus {
43028
43120
  NewToolDeny = "NEW_TOOL_DENY"
43029
43121
  }
43030
43122
  export declare type GraphIntegrationMcpAdminManagementRegisterMcpServerInput = {
43123
+ autoEnableNewTools?: InputMaybe<Scalars['Boolean']['input']>;
43031
43124
  cloudId: Scalars['ID']['input'];
43032
43125
  displayName: Scalars['String']['input'];
43033
43126
  endpointPath?: InputMaybe<Scalars['String']['input']>;
@@ -46029,6 +46122,10 @@ export declare type GraphStore = {
46029
46122
  changeProposalHasAtlasGoalBatch?: Maybe<GraphStoreBatchChangeProposalHasAtlasGoalConnection>;
46030
46123
  changeProposalHasAtlasGoalInverse?: Maybe<GraphStoreSimplifiedChangeProposalHasAtlasGoalInverseConnection>;
46031
46124
  changeProposalHasAtlasGoalInverseBatch?: Maybe<GraphStoreBatchChangeProposalHasAtlasGoalConnection>;
46125
+ changeProposalHasWork?: Maybe<GraphStoreSimplifiedChangeProposalHasWorkConnection>;
46126
+ changeProposalHasWorkBatch?: Maybe<GraphStoreBatchChangeProposalHasWorkConnection>;
46127
+ changeProposalHasWorkInverse?: Maybe<GraphStoreSimplifiedChangeProposalHasWorkInverseConnection>;
46128
+ changeProposalHasWorkInverseBatch?: Maybe<GraphStoreBatchChangeProposalHasWorkConnection>;
46032
46129
  commitBelongsToPullRequest?: Maybe<GraphStoreSimplifiedCommitBelongsToPullRequestConnection>;
46033
46130
  commitBelongsToPullRequestInverse?: Maybe<GraphStoreSimplifiedCommitBelongsToPullRequestInverseConnection>;
46034
46131
  commitInRepo?: Maybe<GraphStoreSimplifiedCommitInRepoConnection>;
@@ -47865,6 +47962,36 @@ export declare type GraphStoreChangeProposalHasAtlasGoalInverseBatchArgs = {
47865
47962
  queryContext?: InputMaybe<Scalars['String']['input']>;
47866
47963
  sort?: InputMaybe<GraphStoreChangeProposalHasAtlasGoalSortInput>;
47867
47964
  };
47965
+ export declare type GraphStoreChangeProposalHasWorkArgs = {
47966
+ after?: InputMaybe<Scalars['String']['input']>;
47967
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
47968
+ first?: InputMaybe<Scalars['Int']['input']>;
47969
+ id: Scalars['ID']['input'];
47970
+ queryContext?: InputMaybe<Scalars['String']['input']>;
47971
+ sort?: InputMaybe<GraphStoreChangeProposalHasWorkSortInput>;
47972
+ };
47973
+ export declare type GraphStoreChangeProposalHasWorkBatchArgs = {
47974
+ after?: InputMaybe<Scalars['String']['input']>;
47975
+ first?: InputMaybe<Scalars['Int']['input']>;
47976
+ ids: Array<Scalars['ID']['input']>;
47977
+ queryContext?: InputMaybe<Scalars['String']['input']>;
47978
+ sort?: InputMaybe<GraphStoreChangeProposalHasWorkSortInput>;
47979
+ };
47980
+ export declare type GraphStoreChangeProposalHasWorkInverseArgs = {
47981
+ after?: InputMaybe<Scalars['String']['input']>;
47982
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
47983
+ first?: InputMaybe<Scalars['Int']['input']>;
47984
+ id: Scalars['ID']['input'];
47985
+ queryContext?: InputMaybe<Scalars['String']['input']>;
47986
+ sort?: InputMaybe<GraphStoreChangeProposalHasWorkSortInput>;
47987
+ };
47988
+ export declare type GraphStoreChangeProposalHasWorkInverseBatchArgs = {
47989
+ after?: InputMaybe<Scalars['String']['input']>;
47990
+ first?: InputMaybe<Scalars['Int']['input']>;
47991
+ ids: Array<Scalars['ID']['input']>;
47992
+ queryContext?: InputMaybe<Scalars['String']['input']>;
47993
+ sort?: InputMaybe<GraphStoreChangeProposalHasWorkSortInput>;
47994
+ };
47868
47995
  export declare type GraphStoreCommitBelongsToPullRequestArgs = {
47869
47996
  after?: InputMaybe<Scalars['String']['input']>;
47870
47997
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -55076,6 +55203,47 @@ export declare type GraphStoreBatchChangeProposalHasAtlasGoalStartNode = {
55076
55203
  id: Scalars['ID']['output'];
55077
55204
  };
55078
55205
  export declare type GraphStoreBatchChangeProposalHasAtlasGoalStartUnion = MercuryChangeProposal;
55206
+ export declare type GraphStoreBatchChangeProposalHasWorkConnection = HasPageInfo & {
55207
+ __typename?: 'GraphStoreBatchChangeProposalHasWorkConnection';
55208
+ edges: Array<Maybe<GraphStoreBatchChangeProposalHasWorkEdge>>;
55209
+ nodes: Array<Maybe<GraphStoreBatchChangeProposalHasWorkNode>>;
55210
+ pageInfo: PageInfo;
55211
+ };
55212
+ export declare type GraphStoreBatchChangeProposalHasWorkEdge = {
55213
+ __typename?: 'GraphStoreBatchChangeProposalHasWorkEdge';
55214
+ node: GraphStoreBatchChangeProposalHasWorkInnerConnection;
55215
+ };
55216
+ export declare type GraphStoreBatchChangeProposalHasWorkEndNode = {
55217
+ __typename?: 'GraphStoreBatchChangeProposalHasWorkEndNode';
55218
+ data?: Maybe<GraphStoreBatchChangeProposalHasWorkEndUnion>;
55219
+ id: Scalars['ID']['output'];
55220
+ };
55221
+ export declare type GraphStoreBatchChangeProposalHasWorkEndUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
55222
+ export declare type GraphStoreBatchChangeProposalHasWorkInnerConnection = {
55223
+ __typename?: 'GraphStoreBatchChangeProposalHasWorkInnerConnection';
55224
+ edges: Array<Maybe<GraphStoreBatchChangeProposalHasWorkInnerEdge>>;
55225
+ nodes: Array<Maybe<GraphStoreBatchChangeProposalHasWorkNode>>;
55226
+ requestedId: Scalars['ID']['output'];
55227
+ };
55228
+ export declare type GraphStoreBatchChangeProposalHasWorkInnerEdge = {
55229
+ __typename?: 'GraphStoreBatchChangeProposalHasWorkInnerEdge';
55230
+ cursor?: Maybe<Scalars['String']['output']>;
55231
+ node: GraphStoreBatchChangeProposalHasWorkNode;
55232
+ };
55233
+ export declare type GraphStoreBatchChangeProposalHasWorkNode = Node & {
55234
+ __typename?: 'GraphStoreBatchChangeProposalHasWorkNode';
55235
+ createdAt: Scalars['DateTime']['output'];
55236
+ from: GraphStoreBatchChangeProposalHasWorkStartNode;
55237
+ id: Scalars['ID']['output'];
55238
+ lastUpdated: Scalars['DateTime']['output'];
55239
+ to: GraphStoreBatchChangeProposalHasWorkEndNode;
55240
+ };
55241
+ export declare type GraphStoreBatchChangeProposalHasWorkStartNode = {
55242
+ __typename?: 'GraphStoreBatchChangeProposalHasWorkStartNode';
55243
+ data?: Maybe<GraphStoreBatchChangeProposalHasWorkStartUnion>;
55244
+ id: Scalars['ID']['output'];
55245
+ };
55246
+ export declare type GraphStoreBatchChangeProposalHasWorkStartUnion = MercuryChangeProposal;
55079
55247
  export declare type GraphStoreBatchContentReferencedEntityConnection = HasPageInfo & {
55080
55248
  __typename?: 'GraphStoreBatchContentReferencedEntityConnection';
55081
55249
  edges: Array<Maybe<GraphStoreBatchContentReferencedEntityEdge>>;
@@ -56278,6 +56446,9 @@ export declare type GraphStoreCalendarHasLinkedDocumentSortInput = {
56278
56446
  export declare type GraphStoreChangeProposalHasAtlasGoalSortInput = {
56279
56447
  lastModified?: InputMaybe<GraphStoreSortInput>;
56280
56448
  };
56449
+ export declare type GraphStoreChangeProposalHasWorkSortInput = {
56450
+ lastModified?: InputMaybe<GraphStoreSortInput>;
56451
+ };
56281
56452
  export declare type GraphStoreCommitBelongsToPullRequestSortInput = {
56282
56453
  lastModified?: InputMaybe<GraphStoreSortInput>;
56283
56454
  };
@@ -64002,6 +64173,34 @@ export declare type GraphStoreSimplifiedChangeProposalHasAtlasGoalInverseEdge =
64002
64173
  };
64003
64174
  export declare type GraphStoreSimplifiedChangeProposalHasAtlasGoalInverseUnion = MercuryChangeProposal;
64004
64175
  export declare type GraphStoreSimplifiedChangeProposalHasAtlasGoalUnion = TownsquareGoal;
64176
+ export declare type GraphStoreSimplifiedChangeProposalHasWorkConnection = HasPageInfo & {
64177
+ __typename?: 'GraphStoreSimplifiedChangeProposalHasWorkConnection';
64178
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedChangeProposalHasWorkEdge>>>;
64179
+ pageInfo: PageInfo;
64180
+ };
64181
+ export declare type GraphStoreSimplifiedChangeProposalHasWorkEdge = {
64182
+ __typename?: 'GraphStoreSimplifiedChangeProposalHasWorkEdge';
64183
+ createdAt: Scalars['DateTime']['output'];
64184
+ cursor?: Maybe<Scalars['String']['output']>;
64185
+ id: Scalars['ID']['output'];
64186
+ lastUpdated: Scalars['DateTime']['output'];
64187
+ node?: Maybe<GraphStoreSimplifiedChangeProposalHasWorkUnion>;
64188
+ };
64189
+ export declare type GraphStoreSimplifiedChangeProposalHasWorkInverseConnection = HasPageInfo & {
64190
+ __typename?: 'GraphStoreSimplifiedChangeProposalHasWorkInverseConnection';
64191
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedChangeProposalHasWorkInverseEdge>>>;
64192
+ pageInfo: PageInfo;
64193
+ };
64194
+ export declare type GraphStoreSimplifiedChangeProposalHasWorkInverseEdge = {
64195
+ __typename?: 'GraphStoreSimplifiedChangeProposalHasWorkInverseEdge';
64196
+ createdAt: Scalars['DateTime']['output'];
64197
+ cursor?: Maybe<Scalars['String']['output']>;
64198
+ id: Scalars['ID']['output'];
64199
+ lastUpdated: Scalars['DateTime']['output'];
64200
+ node?: Maybe<GraphStoreSimplifiedChangeProposalHasWorkInverseUnion>;
64201
+ };
64202
+ export declare type GraphStoreSimplifiedChangeProposalHasWorkInverseUnion = MercuryChangeProposal;
64203
+ export declare type GraphStoreSimplifiedChangeProposalHasWorkUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
64005
64204
  export declare type GraphStoreSimplifiedCommitBelongsToPullRequestConnection = HasPageInfo & {
64006
64205
  __typename?: 'GraphStoreSimplifiedCommitBelongsToPullRequestConnection';
64007
64206
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCommitBelongsToPullRequestEdge>>>;
@@ -74818,6 +75017,8 @@ export declare type GraphStoreV2 = {
74818
75017
  externalWorkerLinksThirdPartyUserInverse?: Maybe<GraphStoreV2SimplifiedExternalWorkerLinksThirdPartyUserInverseConnection>;
74819
75018
  focusAskImpactsWorkEntity?: Maybe<GraphStoreV2SimplifiedFocusAskImpactsWorkEntityConnection>;
74820
75019
  focusAskImpactsWorkEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusAskImpactsWorkEntityInverseConnection>;
75020
+ focusChangeProposalHasWorkEntity?: Maybe<GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityConnection>;
75021
+ focusChangeProposalHasWorkEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityInverseConnection>;
74821
75022
  focusFocusAreaHasAtlassianGoal?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasAtlassianGoalConnection>;
74822
75023
  focusFocusAreaHasAtlassianGoalInverse?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasAtlassianGoalInverseConnection>;
74823
75024
  focusFocusAreaHasChildFocusFocusArea?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasChildFocusFocusAreaConnection>;
@@ -78460,6 +78661,20 @@ export declare type GraphStoreV2FocusAskImpactsWorkEntityInverseArgs = {
78460
78661
  id: Scalars['ID']['input'];
78461
78662
  sort?: InputMaybe<GraphStoreV2FocusAskImpactsWorkEntitySortInput>;
78462
78663
  };
78664
+ export declare type GraphStoreV2FocusChangeProposalHasWorkEntityArgs = {
78665
+ after?: InputMaybe<Scalars['String']['input']>;
78666
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
78667
+ first?: InputMaybe<Scalars['Int']['input']>;
78668
+ id: Scalars['ID']['input'];
78669
+ sort?: InputMaybe<GraphStoreV2FocusChangeProposalHasWorkEntitySortInput>;
78670
+ };
78671
+ export declare type GraphStoreV2FocusChangeProposalHasWorkEntityInverseArgs = {
78672
+ after?: InputMaybe<Scalars['String']['input']>;
78673
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
78674
+ first?: InputMaybe<Scalars['Int']['input']>;
78675
+ id: Scalars['ID']['input'];
78676
+ sort?: InputMaybe<GraphStoreV2FocusChangeProposalHasWorkEntitySortInput>;
78677
+ };
78463
78678
  export declare type GraphStoreV2FocusFocusAreaHasAtlassianGoalArgs = {
78464
78679
  after?: InputMaybe<Scalars['String']['input']>;
78465
78680
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -81755,6 +81970,9 @@ export declare type GraphStoreV2ExternalWorkerLinksThirdPartyUserSortInput = {
81755
81970
  export declare type GraphStoreV2FocusAskImpactsWorkEntitySortInput = {
81756
81971
  lastModified?: InputMaybe<GraphStoreSortInput>;
81757
81972
  };
81973
+ export declare type GraphStoreV2FocusChangeProposalHasWorkEntitySortInput = {
81974
+ lastModified?: InputMaybe<GraphStoreSortInput>;
81975
+ };
81758
81976
  export declare type GraphStoreV2FocusFocusAreaHasAtlassianGoalSortInput = {
81759
81977
  lastModified?: InputMaybe<GraphStoreSortInput>;
81760
81978
  };
@@ -90206,6 +90424,34 @@ export declare type GraphStoreV2SimplifiedFocusAskImpactsWorkEntityInverseEdge =
90206
90424
  };
90207
90425
  export declare type GraphStoreV2SimplifiedFocusAskImpactsWorkEntityInverseUnion = SpfAsk;
90208
90426
  export declare type GraphStoreV2SimplifiedFocusAskImpactsWorkEntityUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
90427
+ export declare type GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityConnection = HasPageInfo & {
90428
+ __typename?: 'GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityConnection';
90429
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityEdge>>>;
90430
+ pageInfo: PageInfo;
90431
+ };
90432
+ export declare type GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityEdge = {
90433
+ __typename?: 'GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityEdge';
90434
+ createdAt: Scalars['DateTime']['output'];
90435
+ cursor?: Maybe<Scalars['String']['output']>;
90436
+ id: Scalars['ID']['output'];
90437
+ lastUpdated: Scalars['DateTime']['output'];
90438
+ node?: Maybe<GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityUnion>;
90439
+ };
90440
+ export declare type GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityInverseConnection = HasPageInfo & {
90441
+ __typename?: 'GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityInverseConnection';
90442
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityInverseEdge>>>;
90443
+ pageInfo: PageInfo;
90444
+ };
90445
+ export declare type GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityInverseEdge = {
90446
+ __typename?: 'GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityInverseEdge';
90447
+ createdAt: Scalars['DateTime']['output'];
90448
+ cursor?: Maybe<Scalars['String']['output']>;
90449
+ id: Scalars['ID']['output'];
90450
+ lastUpdated: Scalars['DateTime']['output'];
90451
+ node?: Maybe<GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityInverseUnion>;
90452
+ };
90453
+ export declare type GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityInverseUnion = MercuryChangeProposal;
90454
+ export declare type GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
90209
90455
  export declare type GraphStoreV2SimplifiedFocusFocusAreaHasAtlassianGoalConnection = HasPageInfo & {
90210
90456
  __typename?: 'GraphStoreV2SimplifiedFocusFocusAreaHasAtlassianGoalConnection';
90211
90457
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasAtlassianGoalEdge>>>;
@@ -98013,8 +98259,9 @@ export declare type JiraAiEnablementIssueInput = {
98013
98259
  issueId?: InputMaybe<Scalars['ID']['input']>;
98014
98260
  issueKey?: InputMaybe<Scalars['String']['input']>;
98015
98261
  };
98016
- export declare type JiraAlignAggCustomProjectType = {
98262
+ export declare type JiraAlignAggCustomProjectType = Node & {
98017
98263
  __typename?: 'JiraAlignAggCustomProjectType';
98264
+ id: Scalars['ID']['output'];
98018
98265
  label: Scalars['String']['output'];
98019
98266
  value: JiraAlignAggProjectType;
98020
98267
  };
@@ -99809,6 +100056,7 @@ export declare type JiraBoardViewFieldCardOption = JiraBoardViewCardOption & {
99809
100056
  export declare type JiraBoardViewFieldSwimlane = JiraBoardViewCellContainer & JiraBoardViewSwimlane & Node & {
99810
100057
  __typename?: 'JiraBoardViewFieldSwimlane';
99811
100058
  cells?: Maybe<JiraBoardViewCellConnection>;
100059
+ collapsed?: Maybe<Scalars['Boolean']['output']>;
99812
100060
  field?: Maybe<JiraField>;
99813
100061
  id: Scalars['ID']['output'];
99814
100062
  totalIssueCount?: Maybe<Scalars['Int']['output']>;
@@ -99923,6 +100171,7 @@ export declare type JiraBoardViewStatusEdge = {
99923
100171
  };
99924
100172
  export declare type JiraBoardViewSwimlane = {
99925
100173
  cells?: Maybe<JiraBoardViewCellConnection>;
100174
+ collapsed?: Maybe<Scalars['Boolean']['output']>;
99926
100175
  id: Scalars['ID']['output'];
99927
100176
  totalIssueCount?: Maybe<Scalars['Int']['output']>;
99928
100177
  };
@@ -103405,6 +103654,10 @@ export declare type JiraEstimate = {
103405
103654
  export declare type JiraEstimateInput = {
103406
103655
  timeInSeconds: Scalars['Long']['input'];
103407
103656
  };
103657
+ export declare enum JiraExperienceContext {
103658
+ Standard = "STANDARD",
103659
+ Timeline = "TIMELINE"
103660
+ }
103408
103661
  export declare type JiraExportIssueDetailsInput = {
103409
103662
  includeComments?: InputMaybe<Scalars['Boolean']['input']>;
103410
103663
  includeFields?: InputMaybe<Scalars['Boolean']['input']>;
@@ -103494,6 +103747,7 @@ export declare type JiraFetchBulkOperationDetailsResponse = {
103494
103747
  export declare type JiraFetchBulkOperationDetailsResponseBulkEditFieldsArgs = {
103495
103748
  after?: InputMaybe<Scalars['String']['input']>;
103496
103749
  before?: InputMaybe<Scalars['String']['input']>;
103750
+ experience?: InputMaybe<JiraExperienceContext>;
103497
103751
  first?: InputMaybe<Scalars['Int']['input']>;
103498
103752
  last?: InputMaybe<Scalars['Int']['input']>;
103499
103753
  search?: InputMaybe<JiraBulkEditFieldsSearch>;
@@ -103761,6 +104015,7 @@ export declare type JiraFieldSchemeAssociatedFieldsInput = {
103761
104015
  nameOrDescriptionFilter?: InputMaybe<Scalars['String']['input']>;
103762
104016
  requiredOnIssueTypesFilter?: InputMaybe<Array<JiraFieldsRequiredOnIssueTypesFilterInput>>;
103763
104017
  schemeId: Scalars['ID']['input'];
104018
+ sortBy?: InputMaybe<Array<JiraFieldSchemesSort>>;
103764
104019
  };
103765
104020
  export declare type JiraFieldSchemeAssociatedIssueTypesInput = {
103766
104021
  nameFilter?: InputMaybe<Scalars['String']['input']>;
@@ -103799,6 +104054,11 @@ export declare type JiraFieldSchemesEdge = {
103799
104054
  };
103800
104055
  export declare type JiraFieldSchemesInput = {
103801
104056
  nameOrDescriptionFilter?: InputMaybe<Scalars['String']['input']>;
104057
+ sortBy?: InputMaybe<Array<JiraFieldSchemesSort>>;
104058
+ };
104059
+ export declare type JiraFieldSchemesSort = {
104060
+ direction: SortDirection;
104061
+ key: Scalars['String']['input'];
103802
104062
  };
103803
104063
  export declare enum JiraFieldScopeType {
103804
104064
  All = "ALL",
@@ -104124,6 +104384,7 @@ export declare type JiraForgeDateField = JiraIssueField & JiraIssueFieldConfigur
104124
104384
  fieldConfig?: Maybe<JiraFieldConfig>;
104125
104385
  fieldId: Scalars['String']['output'];
104126
104386
  fieldOperations?: Maybe<JiraFieldOperation>;
104387
+ formattedText?: Maybe<Scalars['String']['output']>;
104127
104388
  id: Scalars['ID']['output'];
104128
104389
  isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
104129
104390
  isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
@@ -104141,6 +104402,7 @@ export declare type JiraForgeDatetimeField = JiraIssueField & JiraIssueFieldConf
104141
104402
  fieldConfig?: Maybe<JiraFieldConfig>;
104142
104403
  fieldId: Scalars['String']['output'];
104143
104404
  fieldOperations?: Maybe<JiraFieldOperation>;
104405
+ formattedText?: Maybe<Scalars['String']['output']>;
104144
104406
  id: Scalars['ID']['output'];
104145
104407
  isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
104146
104408
  isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
@@ -104194,6 +104456,7 @@ export declare type JiraForgeGroupField = JiraIssueField & JiraIssueFieldConfigu
104194
104456
  fieldConfig?: Maybe<JiraFieldConfig>;
104195
104457
  fieldId: Scalars['String']['output'];
104196
104458
  fieldOperations?: Maybe<JiraFieldOperation>;
104459
+ formattedText?: Maybe<Scalars['String']['output']>;
104197
104460
  groups?: Maybe<JiraGroupConnection>;
104198
104461
  id: Scalars['ID']['output'];
104199
104462
  isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
@@ -104220,6 +104483,7 @@ export declare type JiraForgeGroupsField = JiraIssueField & JiraIssueFieldConfig
104220
104483
  fieldConfig?: Maybe<JiraFieldConfig>;
104221
104484
  fieldId: Scalars['String']['output'];
104222
104485
  fieldOperations?: Maybe<JiraFieldOperation>;
104486
+ formattedText?: Maybe<Scalars['String']['output']>;
104223
104487
  groups?: Maybe<JiraGroupConnection>;
104224
104488
  id: Scalars['ID']['output'];
104225
104489
  isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
@@ -104275,6 +104539,7 @@ export declare type JiraForgeNumberField = JiraIssueField & JiraIssueFieldConfig
104275
104539
  fieldConfig?: Maybe<JiraFieldConfig>;
104276
104540
  fieldId: Scalars['String']['output'];
104277
104541
  fieldOperations?: Maybe<JiraFieldOperation>;
104542
+ formattedText?: Maybe<Scalars['String']['output']>;
104278
104543
  id: Scalars['ID']['output'];
104279
104544
  isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
104280
104545
  isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
@@ -104292,6 +104557,7 @@ export declare type JiraForgeObjectField = JiraIssueField & JiraIssueFieldConfig
104292
104557
  fieldConfig?: Maybe<JiraFieldConfig>;
104293
104558
  fieldId: Scalars['String']['output'];
104294
104559
  fieldOperations?: Maybe<JiraFieldOperation>;
104560
+ formattedText?: Maybe<Scalars['String']['output']>;
104295
104561
  id: Scalars['ID']['output'];
104296
104562
  isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
104297
104563
  isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
@@ -104342,6 +104608,7 @@ export declare type JiraForgeStringField = JiraIssueField & JiraIssueFieldConfig
104342
104608
  fieldConfig?: Maybe<JiraFieldConfig>;
104343
104609
  fieldId: Scalars['String']['output'];
104344
104610
  fieldOperations?: Maybe<JiraFieldOperation>;
104611
+ formattedText?: Maybe<Scalars['String']['output']>;
104345
104612
  id: Scalars['ID']['output'];
104346
104613
  isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
104347
104614
  isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
@@ -104359,6 +104626,7 @@ export declare type JiraForgeStringsField = JiraIssueField & JiraIssueFieldConfi
104359
104626
  fieldConfig?: Maybe<JiraFieldConfig>;
104360
104627
  fieldId: Scalars['String']['output'];
104361
104628
  fieldOperations?: Maybe<JiraFieldOperation>;
104629
+ formattedText?: Maybe<Scalars['String']['output']>;
104362
104630
  id: Scalars['ID']['output'];
104363
104631
  isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
104364
104632
  isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
@@ -104421,6 +104689,7 @@ export declare type JiraForgeUserField = JiraIssueField & JiraIssueFieldConfigur
104421
104689
  fieldConfig?: Maybe<JiraFieldConfig>;
104422
104690
  fieldId: Scalars['String']['output'];
104423
104691
  fieldOperations?: Maybe<JiraFieldOperation>;
104692
+ formattedText?: Maybe<Scalars['String']['output']>;
104424
104693
  id: Scalars['ID']['output'];
104425
104694
  isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
104426
104695
  isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
@@ -104448,6 +104717,7 @@ export declare type JiraForgeUsersField = JiraIssueField & JiraIssueFieldConfigu
104448
104717
  fieldConfig?: Maybe<JiraFieldConfig>;
104449
104718
  fieldId: Scalars['String']['output'];
104450
104719
  fieldOperations?: Maybe<JiraFieldOperation>;
104720
+ formattedText?: Maybe<Scalars['String']['output']>;
104451
104721
  id: Scalars['ID']['output'];
104452
104722
  isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
104453
104723
  isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
@@ -112152,6 +112422,7 @@ export declare type JiraProject = Node & {
112152
112422
  reportCategories?: Maybe<JiraReportCategoryConnection>;
112153
112423
  repositories?: Maybe<GraphStoreSimplifiedProjectAssociatedRepoConnection>;
112154
112424
  requestTypes?: Maybe<JiraServiceManagementRequestTypeConnection>;
112425
+ schemeAssociatedFields?: Maybe<JiraFieldSchemeAssociatedFieldsConnection>;
112155
112426
  selectedDeploymentAppsProperty?: Maybe<Array<JiraDeploymentApp>>;
112156
112427
  servicesAvailableToLinkWith?: Maybe<DevOpsServiceConnection>;
112157
112428
  similarIssues?: Maybe<JiraSimilarIssues>;
@@ -112300,6 +112571,11 @@ export declare type JiraProjectRequestTypesArgs = {
112300
112571
  after?: InputMaybe<Scalars['String']['input']>;
112301
112572
  first?: InputMaybe<Scalars['Int']['input']>;
112302
112573
  };
112574
+ export declare type JiraProjectSchemeAssociatedFieldsArgs = {
112575
+ after?: InputMaybe<Scalars['String']['input']>;
112576
+ first?: InputMaybe<Scalars['Int']['input']>;
112577
+ input?: InputMaybe<JiraProjectSchemeAssociatedFieldsInput>;
112578
+ };
112303
112579
  export declare type JiraProjectServicesAvailableToLinkWithArgs = {
112304
112580
  after?: InputMaybe<Scalars['String']['input']>;
112305
112581
  filter?: InputMaybe<DevOpsServicesFilterInput>;
@@ -112830,6 +113106,10 @@ export declare type JiraProjectRoleGrantTypeValue = Node & {
112830
113106
  id: Scalars['ID']['output'];
112831
113107
  role: JiraRole;
112832
113108
  };
113109
+ export declare type JiraProjectSchemeAssociatedFieldsInput = {
113110
+ fieldTypeGroupsFilter?: InputMaybe<Array<Scalars['String']['input']>>;
113111
+ nameOrDescriptionFilter?: InputMaybe<Scalars['String']['input']>;
113112
+ };
112833
113113
  export declare type JiraProjectShortcut = Node & {
112834
113114
  __typename?: 'JiraProjectShortcut';
112835
113115
  id: Scalars['ID']['output'];
@@ -113184,6 +113464,7 @@ export declare type JiraQuery = {
113184
113464
  jiraProjectsByJql?: Maybe<JiraProjectConnection>;
113185
113465
  jiraProjectsMappedToHelpCenter?: Maybe<JiraProjectConnection>;
113186
113466
  jiraServiceManagementRequestTypeCategoriesByProject?: Maybe<JiraServiceManagementRequestTypeCategoryConnection>;
113467
+ jiraServiceManagementSlaIssue?: Maybe<JiraServiceManagementSlaIssueResult>;
113187
113468
  jpdDeliveryIssueLinkTypeId?: Maybe<Scalars['ID']['output']>;
113188
113469
  jqlBuilder?: Maybe<JiraJqlBuilder>;
113189
113470
  jsmProjectTeamType?: Maybe<JiraServiceManagementProjectTeamType>;
@@ -113945,6 +114226,10 @@ export declare type JiraQueryJiraServiceManagementRequestTypeCategoriesByProject
113945
114226
  first?: InputMaybe<Scalars['Int']['input']>;
113946
114227
  projectId: Scalars['ID']['input'];
113947
114228
  };
114229
+ export declare type JiraQueryJiraServiceManagementSlaIssueArgs = {
114230
+ cloudId: Scalars['ID']['input'];
114231
+ issueKey: Scalars['String']['input'];
114232
+ };
113948
114233
  export declare type JiraQueryJpdDeliveryIssueLinkTypeIdArgs = {
113949
114234
  cloudId: Scalars['ID']['input'];
113950
114235
  };
@@ -116697,6 +116982,47 @@ export declare type JiraServiceManagementSentimentFieldPayload = Payload & {
116697
116982
  field?: Maybe<JiraServiceManagementSentimentField>;
116698
116983
  success: Scalars['Boolean']['output'];
116699
116984
  };
116985
+ export declare type JiraServiceManagementSlaCompleteGoal = {
116986
+ __typename?: 'JiraServiceManagementSlaCompleteGoal';
116987
+ breachTime?: Maybe<Scalars['String']['output']>;
116988
+ failed?: Maybe<Scalars['Boolean']['output']>;
116989
+ goalTime?: Maybe<Scalars['String']['output']>;
116990
+ remainingTime?: Maybe<Scalars['String']['output']>;
116991
+ startTime?: Maybe<Scalars['String']['output']>;
116992
+ stopTime?: Maybe<Scalars['String']['output']>;
116993
+ };
116994
+ export declare type JiraServiceManagementSlaGoalDetailedView = {
116995
+ __typename?: 'JiraServiceManagementSlaGoalDetailedView';
116996
+ active?: Maybe<Scalars['Boolean']['output']>;
116997
+ breachTime?: Maybe<Scalars['String']['output']>;
116998
+ calendarName?: Maybe<Scalars['String']['output']>;
116999
+ closed?: Maybe<Scalars['Boolean']['output']>;
117000
+ completeGoals?: Maybe<Array<JiraServiceManagementSlaCompleteGoal>>;
117001
+ currentJqlMatch?: Maybe<Scalars['String']['output']>;
117002
+ emergencyLevel?: Maybe<Scalars['String']['output']>;
117003
+ failed?: Maybe<Scalars['Boolean']['output']>;
117004
+ goalTime?: Maybe<Scalars['String']['output']>;
117005
+ goalTimeLong?: Maybe<Scalars['String']['output']>;
117006
+ incalculableSlaError?: Maybe<Scalars['String']['output']>;
117007
+ metricName?: Maybe<Scalars['String']['output']>;
117008
+ nextConditionMatch?: Maybe<Scalars['String']['output']>;
117009
+ paused?: Maybe<Scalars['Boolean']['output']>;
117010
+ remainingTime?: Maybe<Scalars['String']['output']>;
117011
+ remainingTimeLong?: Maybe<Scalars['String']['output']>;
117012
+ slaDisplayFormat?: Maybe<Scalars['String']['output']>;
117013
+ startTime?: Maybe<Scalars['String']['output']>;
117014
+ stopTime?: Maybe<Scalars['String']['output']>;
117015
+ };
117016
+ export declare type JiraServiceManagementSlaIssue = {
117017
+ __typename?: 'JiraServiceManagementSlaIssue';
117018
+ goalViews?: Maybe<Array<JiraServiceManagementSlaGoalDetailedView>>;
117019
+ hasPreviousCycles?: Maybe<Scalars['Boolean']['output']>;
117020
+ };
117021
+ export declare type JiraServiceManagementSlaIssueResult = {
117022
+ __typename?: 'JiraServiceManagementSlaIssueResult';
117023
+ errors?: Maybe<Array<QueryError>>;
117024
+ slaIssue?: Maybe<JiraServiceManagementSlaIssue>;
117025
+ };
116700
117026
  export declare type JiraServiceManagementTeamResponder = {
116701
117027
  __typename?: 'JiraServiceManagementTeamResponder';
116702
117028
  teamId?: Maybe<Scalars['String']['output']>;
@@ -116954,6 +117280,19 @@ export declare type JiraSetBoardViewStatusColumnMappingRenameStatusInput = {
116954
117280
  name: Scalars['String']['input'];
116955
117281
  statusId: Scalars['ID']['input'];
116956
117282
  };
117283
+ export declare type JiraSetBoardViewSwimlaneStateInput = {
117284
+ collapsed: Scalars['Boolean']['input'];
117285
+ settings?: InputMaybe<JiraBoardViewSettings>;
117286
+ swimlaneId: Scalars['ID']['input'];
117287
+ viewId: Scalars['ID']['input'];
117288
+ };
117289
+ export declare type JiraSetBoardViewSwimlaneStatePayload = Payload & {
117290
+ __typename?: 'JiraSetBoardViewSwimlaneStatePayload';
117291
+ boardView?: Maybe<JiraBoardView>;
117292
+ errors?: Maybe<Array<MutationError>>;
117293
+ success: Scalars['Boolean']['output'];
117294
+ swimlane?: Maybe<JiraBoardViewSwimlane>;
117295
+ };
116957
117296
  export declare type JiraSetBoardViewWorkflowSelectedInput = {
116958
117297
  selectedWorkflowId: Scalars['ID']['input'];
116959
117298
  settings?: InputMaybe<JiraBoardViewSettings>;
@@ -121316,6 +121655,16 @@ export declare type JpdViewUpdatedEvent = {
121316
121655
  viewId: Scalars['Int']['output'];
121317
121656
  viewUuid: Scalars['ID']['output'];
121318
121657
  };
121658
+ export declare type JpdViewsServiceAssociateGlobalViewInput = {
121659
+ containerId: Scalars['String']['input'];
121660
+ containerType: JpdViewsServiceGlobalViewAssociationContainerType;
121661
+ id: Scalars['ID']['input'];
121662
+ };
121663
+ export declare type JpdViewsServiceAssociateGlobalViewPayload = Payload & {
121664
+ __typename?: 'JpdViewsServiceAssociateGlobalViewPayload';
121665
+ errors?: Maybe<Array<MutationError>>;
121666
+ success: Scalars['Boolean']['output'];
121667
+ };
121319
121668
  export declare type JpdViewsServiceAxisConfig = {
121320
121669
  __typename?: 'JpdViewsServiceAxisConfig';
121321
121670
  dimension: Scalars['String']['output'];
@@ -121424,6 +121773,9 @@ export declare type JpdViewsServiceGlobalView = JpdViewsServiceViewBase & Node &
121424
121773
  viewId: Scalars['String']['output'];
121425
121774
  visualizationType: JpdViewsServiceVisualizationType;
121426
121775
  };
121776
+ export declare enum JpdViewsServiceGlobalViewAssociationContainerType {
121777
+ Project = "PROJECT"
121778
+ }
121427
121779
  export declare type JpdViewsServiceGlobalViewConnection = {
121428
121780
  __typename?: 'JpdViewsServiceGlobalViewConnection';
121429
121781
  edges?: Maybe<Array<JpdViewsServiceGlobalViewEdge>>;
@@ -121587,8 +121939,8 @@ export declare enum JpdViewsServiceViewSortMode {
121587
121939
  }
121588
121940
  export declare enum JpdViewsServiceVisualizationType {
121589
121941
  Board = "BOARD",
121590
- List = "LIST",
121591
121942
  Matrix = "MATRIX",
121943
+ Table = "TABLE",
121592
121944
  Timeline = "TIMELINE"
121593
121945
  }
121594
121946
  export declare type JsmAgentWorkspaceLocations = {
@@ -122994,6 +123346,7 @@ export declare type KitsuneFeedbackEvent = {
122994
123346
  id: Scalars['ID']['output'];
122995
123347
  sourceCategoryId: Scalars['ID']['output'];
122996
123348
  spaceId: Scalars['ID']['output'];
123349
+ summary?: Maybe<KitsuneFeedbackSummary>;
122997
123350
  tenantId: Scalars['ID']['output'];
122998
123351
  title?: Maybe<Scalars['String']['output']>;
122999
123352
  type: Scalars['String']['output'];
@@ -123121,12 +123474,137 @@ export declare type KitsuneSourceCategoryEdge = KitsuneEdge & {
123121
123474
  node?: Maybe<KitsuneSourceCategory>;
123122
123475
  };
123123
123476
  export declare enum KitsuneSourceCategoryType {
123477
+ AdaCx = "ADA_CX",
123478
+ Aircall = "AIRCALL",
123479
+ Airtable = "AIRTABLE",
123480
+ AlternativeTo = "ALTERNATIVE_TO",
123481
+ Amplitude = "AMPLITUDE",
123482
+ Api = "API",
123483
+ AppleAppStore = "APPLE_APP_STORE",
123484
+ Asana = "ASANA",
123485
+ Attio = "ATTIO",
123486
+ AudioFiles = "AUDIO_FILES",
123487
+ BigqueryByGoogle = "BIGQUERY_BY_GOOGLE",
123488
+ Bitbucket = "BITBUCKET",
123489
+ Blueconic = "BLUECONIC",
123490
+ Bluesky = "BLUESKY",
123491
+ Capterra = "CAPTERRA",
123492
+ ChorusByZoominfo = "CHORUS_BY_ZOOMINFO",
123493
+ Chrome = "CHROME",
123494
+ Circle = "CIRCLE",
123495
+ CiscoWebex = "CISCO_WEBEX",
123496
+ Claap = "CLAAP",
123497
+ Clickup = "CLICKUP",
123498
+ Close = "CLOSE",
123499
+ Confluence = "CONFLUENCE",
123500
+ Copper = "COPPER",
123501
+ Crisp = "CRISP",
123502
+ CsvFiles = "CSV_FILES",
123503
+ Customerly = "CUSTOMERLY",
123504
+ Discord = "DISCORD",
123505
+ Discourse = "DISCOURSE",
123506
+ Drift = "DRIFT",
123507
+ DropboxPaper = "DROPBOX_PAPER",
123508
+ Email = "EMAIL",
123509
+ Evernote = "EVERNOTE",
123510
+ ExcelSpreadsheets = "EXCEL_SPREADSHEETS",
123511
+ Facebook = "FACEBOOK",
123512
+ Fathom = "FATHOM",
123124
123513
  FeedbackApp = "FEEDBACK_APP",
123125
- Loom = "LOOM"
123514
+ Fillout = "FILLOUT",
123515
+ Fireflies = "FIREFLIES",
123516
+ Folk = "FOLK",
123517
+ Formstack = "FORMSTACK",
123518
+ Front = "FRONT",
123519
+ G2 = "G2",
123520
+ Gainsight = "GAINSIGHT",
123521
+ Getapp = "GETAPP",
123522
+ Github = "GITHUB",
123523
+ Gitlab = "GITLAB",
123524
+ Gong = "GONG",
123525
+ GoogleChat = "GOOGLE_CHAT",
123526
+ GoogleDocs = "GOOGLE_DOCS",
123527
+ GoogleForms = "GOOGLE_FORMS",
123528
+ GoogleMeet = "GOOGLE_MEET",
123529
+ GooglePlayStore = "GOOGLE_PLAY_STORE",
123530
+ GoogleSheets = "GOOGLE_SHEETS",
123531
+ Grain = "GRAIN",
123532
+ HelpScout = "HELP_SCOUT",
123533
+ Hubspot = "HUBSPOT",
123534
+ Ifttt = "IFTTT",
123535
+ ImageFiles = "IMAGE_FILES",
123536
+ Intercom = "INTERCOM",
123537
+ Jira = "JIRA",
123538
+ JiraProductDiscovery = "JIRA_PRODUCT_DISCOVERY",
123539
+ Jotform = "JOTFORM",
123540
+ Kustomer = "KUSTOMER",
123541
+ Linear = "LINEAR",
123542
+ Linkedin = "LINKEDIN",
123543
+ LogmeinGotomeeting = "LOGMEIN_GOTOMEETING",
123544
+ Loom = "LOOM",
123545
+ Make = "MAKE",
123546
+ Mattermost = "MATTERMOST",
123547
+ MicrosoftDynamics_365 = "MICROSOFT_DYNAMICS_365",
123548
+ Modjo = "MODJO",
123549
+ Monday = "MONDAY",
123550
+ N8N = "N8N",
123551
+ Notion = "NOTION",
123552
+ NotionTables = "NOTION_TABLES",
123553
+ Otter = "OTTER",
123554
+ PdfFiles = "PDF_FILES",
123555
+ Pipedrive = "PIPEDRIVE",
123556
+ Planhat = "PLANHAT",
123557
+ Pylon = "PYLON",
123558
+ Qualtrics = "QUALTRICS",
123559
+ Quip = "QUIP",
123560
+ Reddit = "REDDIT",
123561
+ Rewatch = "REWATCH",
123562
+ Salesforce = "SALESFORCE",
123563
+ Salesloft = "SALESLOFT",
123564
+ Segment = "SEGMENT",
123565
+ Sharepoint = "SHAREPOINT",
123566
+ Shortcut = "SHORTCUT",
123567
+ Slack = "SLACK",
123568
+ SlackHuddles = "SLACK_HUDDLES",
123569
+ Slite = "SLITE",
123570
+ Smartsheet = "SMARTSHEET",
123571
+ Snowflake = "SNOWFLAKE",
123572
+ SoftwareAdvice = "SOFTWARE_ADVICE",
123573
+ Surveymonkey = "SURVEYMONKEY",
123574
+ Surveyplanet = "SURVEYPLANET",
123575
+ Surveysparrow = "SURVEYSPARROW",
123576
+ Survicate = "SURVICATE",
123577
+ Tally = "TALLY",
123578
+ Tealium = "TEALIUM",
123579
+ Teams = "TEAMS",
123580
+ TextFiles = "TEXT_FILES",
123581
+ Threads = "THREADS",
123582
+ TlDv = "TL_DV",
123583
+ Totango = "TOTANGO",
123584
+ Trello = "TRELLO",
123585
+ Trustpilot = "TRUSTPILOT",
123586
+ Twist = "TWIST",
123587
+ TwitterX = "TWITTER_X",
123588
+ Typeform = "TYPEFORM",
123589
+ VideoFiles = "VIDEO_FILES",
123590
+ Vidyard = "VIDYARD",
123591
+ Vitally = "VITALLY",
123592
+ Word = "WORD",
123593
+ WorkplaceByMeta = "WORKPLACE_BY_META",
123594
+ Wufoo = "WUFOO",
123595
+ Zapier = "ZAPIER",
123596
+ Zendesk = "ZENDESK",
123597
+ Zoho = "ZOHO",
123598
+ Zoom = "ZOOM",
123599
+ ZoomTeamChat = "ZOOM_TEAM_CHAT"
123126
123600
  }
123127
123601
  export declare type KitsuneSourceInput = {
123128
123602
  sourceWeb?: InputMaybe<KitsuneSourceInputWeb>;
123129
123603
  };
123604
+ export declare type KitsuneSourceInputNew = {
123605
+ type: KitsuneSourceCategoryType;
123606
+ url: Scalars['String']['input'];
123607
+ };
123130
123608
  export declare type KitsuneSourceInputWeb = {
123131
123609
  url: Scalars['String']['input'];
123132
123610
  };
@@ -129157,6 +129635,10 @@ export declare type MercuryCostItem = Node & {
129157
129635
  investmentCategory?: Maybe<MercuryInvestmentCategory>;
129158
129636
  name: Scalars['String']['output'];
129159
129637
  };
129638
+ export declare type MercuryCostItemClassificationInput = {
129639
+ costSubtypeId?: InputMaybe<Scalars['ID']['input']>;
129640
+ costTypeId?: InputMaybe<Scalars['ID']['input']>;
129641
+ };
129160
129642
  export declare type MercuryCostItemConnection = {
129161
129643
  __typename?: 'MercuryCostItemConnection';
129162
129644
  edges?: Maybe<Array<MercuryCostItemEdge>>;
@@ -129292,6 +129774,28 @@ export declare type MercuryCreateCoreCustomFieldDefinitionInput = {
129292
129774
  singleSelectField?: InputMaybe<MercuryCreateSingleSelectCustomFieldDefinitionInput>;
129293
129775
  textField?: InputMaybe<MercuryCreateTextCustomFieldDefinitionInput>;
129294
129776
  };
129777
+ export declare type MercuryCreateCostItemInput = {
129778
+ focusAreaId: Scalars['ID']['input'];
129779
+ name: Scalars['String']['input'];
129780
+ };
129781
+ export declare type MercuryCreateCostItemPayload = Payload & {
129782
+ __typename?: 'MercuryCreateCostItemPayload';
129783
+ createdCostItem?: Maybe<MercuryCostItem>;
129784
+ errors?: Maybe<Array<MutationError>>;
129785
+ success: Scalars['Boolean']['output'];
129786
+ };
129787
+ export declare type MercuryCreateCostPeriodValueInput = {
129788
+ amount: Scalars['String']['input'];
129789
+ costItemId: Scalars['ID']['input'];
129790
+ financialVersionId: Scalars['ID']['input'];
129791
+ yearMonth: Scalars['String']['input'];
129792
+ };
129793
+ export declare type MercuryCreateCostPeriodValuePayload = Payload & {
129794
+ __typename?: 'MercuryCreateCostPeriodValuePayload';
129795
+ createdCostPeriodValue?: Maybe<MercuryCostPeriodValue>;
129796
+ errors?: Maybe<Array<MutationError>>;
129797
+ success: Scalars['Boolean']['output'];
129798
+ };
129295
129799
  export declare type MercuryCreateCostSubtypeInput = {
129296
129800
  costTypeId: Scalars['ID']['input'];
129297
129801
  name: Scalars['String']['input'];
@@ -129609,6 +130113,22 @@ export declare type MercuryDeleteCommentPayload = Payload & {
129609
130113
  errors?: Maybe<Array<MutationError>>;
129610
130114
  success: Scalars['Boolean']['output'];
129611
130115
  };
130116
+ export declare type MercuryDeleteCostItemInput = {
130117
+ id: Scalars['ID']['input'];
130118
+ };
130119
+ export declare type MercuryDeleteCostItemPayload = Payload & {
130120
+ __typename?: 'MercuryDeleteCostItemPayload';
130121
+ errors?: Maybe<Array<MutationError>>;
130122
+ success: Scalars['Boolean']['output'];
130123
+ };
130124
+ export declare type MercuryDeleteCostPeriodValueInput = {
130125
+ id: Scalars['ID']['input'];
130126
+ };
130127
+ export declare type MercuryDeleteCostPeriodValuePayload = Payload & {
130128
+ __typename?: 'MercuryDeleteCostPeriodValuePayload';
130129
+ errors?: Maybe<Array<MutationError>>;
130130
+ success: Scalars['Boolean']['output'];
130131
+ };
129612
130132
  export declare type MercuryDeleteCostSubtypeInput = {
129613
130133
  id: Scalars['ID']['input'];
129614
130134
  };
@@ -129815,6 +130335,7 @@ export declare type MercuryFinancialVersion = Node & {
129815
130335
  export declare enum MercuryFinancialVersionType {
129816
130336
  Actual = "ACTUAL",
129817
130337
  Baseline = "BASELINE",
130338
+ Budget = "BUDGET",
129818
130339
  Forecast = "FORECAST"
129819
130340
  }
129820
130341
  export declare type MercuryFiscalCalendarConfiguration = Node & {
@@ -129849,6 +130370,7 @@ export declare type MercuryFocusArea = Node & {
129849
130370
  aggregatedFocusAreaStatusCount?: Maybe<MercuryAggregatedFocusAreaStatusCount>;
129850
130371
  archived: Scalars['Boolean']['output'];
129851
130372
  ari: Scalars['String']['output'];
130373
+ asks?: Maybe<GraphStoreCypherQueryV2Connection>;
129852
130374
  changeSummary?: Maybe<MercuryChangeSummary>;
129853
130375
  costSummary?: Maybe<MercuryFocusAreaCostSummary>;
129854
130376
  createdDate: Scalars['String']['output'];
@@ -129880,6 +130402,10 @@ export declare type MercuryFocusArea = Node & {
129880
130402
  watchers?: Maybe<MercuryUserConnection>;
129881
130403
  watching: Scalars['Boolean']['output'];
129882
130404
  };
130405
+ export declare type MercuryFocusAreaAsksArgs = {
130406
+ after?: InputMaybe<Scalars['String']['input']>;
130407
+ first?: InputMaybe<Scalars['Int']['input']>;
130408
+ };
129883
130409
  export declare type MercuryFocusAreaFocusAreaStatusUpdatesArgs = {
129884
130410
  after?: InputMaybe<Scalars['String']['input']>;
129885
130411
  createdAtOrAfter?: InputMaybe<Scalars['DateTime']['input']>;
@@ -130345,15 +130871,29 @@ export declare type MercuryFundsMonthlySummary = {
130345
130871
  };
130346
130872
  export declare type MercuryFundsMutationApi = {
130347
130873
  __typename?: 'MercuryFundsMutationApi';
130874
+ createCostItem?: Maybe<MercuryCreateCostItemPayload>;
130875
+ createCostPeriodValue?: Maybe<MercuryCreateCostPeriodValuePayload>;
130348
130876
  createCostSubtype?: Maybe<MercuryCreateCostSubtypePayload>;
130349
130877
  createFiscalCalendarConfiguration?: Maybe<MercuryCreateFiscalCalendarConfigurationPayload>;
130350
130878
  createInvestmentCategory?: Maybe<MercuryCreateInvestmentCategoryPayload>;
130879
+ deleteCostItem?: Maybe<MercuryDeleteCostItemPayload>;
130880
+ deleteCostPeriodValue?: Maybe<MercuryDeleteCostPeriodValuePayload>;
130351
130881
  deleteCostSubtype?: Maybe<MercuryDeleteCostSubtypePayload>;
130352
130882
  deleteInvestmentCategory?: Maybe<MercuryDeleteInvestmentCategoryPayload>;
130353
130883
  updateActiveCurrency?: Maybe<MercuryUpdateActiveCurrencyPayload>;
130884
+ updateCostItemClassification?: Maybe<MercuryUpdateCostItemClassificationPayload>;
130885
+ updateCostItemExpenditureType?: Maybe<MercuryUpdateCostItemExpenditureTypePayload>;
130886
+ updateCostItemInvestmentCategory?: Maybe<MercuryUpdateCostItemInvestmentCategoryPayload>;
130887
+ updateCostPeriodValueAmount?: Maybe<MercuryUpdateCostPeriodValueAmountPayload>;
130354
130888
  updateCostSubtypeName?: Maybe<MercuryUpdateCostSubtypePayload>;
130355
130889
  updateInvestmentCategoryName?: Maybe<MercuryUpdateInvestmentCategoryPayload>;
130356
130890
  };
130891
+ export declare type MercuryFundsMutationApiCreateCostItemArgs = {
130892
+ input: MercuryCreateCostItemInput;
130893
+ };
130894
+ export declare type MercuryFundsMutationApiCreateCostPeriodValueArgs = {
130895
+ input: MercuryCreateCostPeriodValueInput;
130896
+ };
130357
130897
  export declare type MercuryFundsMutationApiCreateCostSubtypeArgs = {
130358
130898
  input: MercuryCreateCostSubtypeInput;
130359
130899
  };
@@ -130363,6 +130903,12 @@ export declare type MercuryFundsMutationApiCreateFiscalCalendarConfigurationArgs
130363
130903
  export declare type MercuryFundsMutationApiCreateInvestmentCategoryArgs = {
130364
130904
  input: MercuryCreateInvestmentCategoryInput;
130365
130905
  };
130906
+ export declare type MercuryFundsMutationApiDeleteCostItemArgs = {
130907
+ input: MercuryDeleteCostItemInput;
130908
+ };
130909
+ export declare type MercuryFundsMutationApiDeleteCostPeriodValueArgs = {
130910
+ input: MercuryDeleteCostPeriodValueInput;
130911
+ };
130366
130912
  export declare type MercuryFundsMutationApiDeleteCostSubtypeArgs = {
130367
130913
  input: MercuryDeleteCostSubtypeInput;
130368
130914
  };
@@ -130372,6 +130918,18 @@ export declare type MercuryFundsMutationApiDeleteInvestmentCategoryArgs = {
130372
130918
  export declare type MercuryFundsMutationApiUpdateActiveCurrencyArgs = {
130373
130919
  input: MercuryUpdateActiveCurrencyInput;
130374
130920
  };
130921
+ export declare type MercuryFundsMutationApiUpdateCostItemClassificationArgs = {
130922
+ input: MercuryUpdateCostItemClassificationInput;
130923
+ };
130924
+ export declare type MercuryFundsMutationApiUpdateCostItemExpenditureTypeArgs = {
130925
+ input: MercuryUpdateCostItemExpenditureTypeInput;
130926
+ };
130927
+ export declare type MercuryFundsMutationApiUpdateCostItemInvestmentCategoryArgs = {
130928
+ input: MercuryUpdateCostItemInvestmentCategoryInput;
130929
+ };
130930
+ export declare type MercuryFundsMutationApiUpdateCostPeriodValueAmountArgs = {
130931
+ input: MercuryUpdateCostPeriodValueAmountInput;
130932
+ };
130375
130933
  export declare type MercuryFundsMutationApiUpdateCostSubtypeNameArgs = {
130376
130934
  input: MercuryUpdateCostSubtypeNameInput;
130377
130935
  };
@@ -130678,6 +131236,7 @@ export declare type MercuryJiraProviderQueryApi = {
130678
131236
  __typename?: 'MercuryJiraProviderQueryApi';
130679
131237
  mercuryStatusMappingsByAri?: Maybe<Array<Maybe<MercuryJiraWorkStatusMapping>>>;
130680
131238
  mercuryStatusMappingsByStatusAri?: Maybe<Array<Maybe<MercuryJiraWorkStatusMapping>>>;
131239
+ userAccessibleConnectedJiraSites?: Maybe<MercuryJiraSiteConnection>;
130681
131240
  };
130682
131241
  export declare type MercuryJiraProviderQueryApiMercuryStatusMappingsByAriArgs = {
130683
131242
  ids: Array<Scalars['ID']['input']>;
@@ -130685,6 +131244,26 @@ export declare type MercuryJiraProviderQueryApiMercuryStatusMappingsByAriArgs =
130685
131244
  export declare type MercuryJiraProviderQueryApiMercuryStatusMappingsByStatusAriArgs = {
130686
131245
  ids: Array<Scalars['ID']['input']>;
130687
131246
  };
131247
+ export declare type MercuryJiraProviderQueryApiUserAccessibleConnectedJiraSitesArgs = {
131248
+ cloudId: Scalars['ID']['input'];
131249
+ };
131250
+ export declare type MercuryJiraSite = {
131251
+ __typename?: 'MercuryJiraSite';
131252
+ id: Scalars['ID']['output'];
131253
+ name: Scalars['String']['output'];
131254
+ url: Scalars['String']['output'];
131255
+ };
131256
+ export declare type MercuryJiraSiteConnection = {
131257
+ __typename?: 'MercuryJiraSiteConnection';
131258
+ edges?: Maybe<Array<Maybe<MercuryJiraSiteEdge>>>;
131259
+ pageInfo: PageInfo;
131260
+ totalCount?: Maybe<Scalars['Int']['output']>;
131261
+ };
131262
+ export declare type MercuryJiraSiteEdge = {
131263
+ __typename?: 'MercuryJiraSiteEdge';
131264
+ cursor: Scalars['String']['output'];
131265
+ node?: Maybe<MercuryJiraSite>;
131266
+ };
130688
131267
  export declare type MercuryJiraStatus = {
130689
131268
  __typename?: 'MercuryJiraStatus';
130690
131269
  name?: Maybe<Scalars['String']['output']>;
@@ -131624,6 +132203,7 @@ export declare type MercuryQueryApi = {
131624
132203
  commentsByAris?: Maybe<Array<Maybe<MercuryComment>>>;
131625
132204
  focusArea?: Maybe<MercuryFocusArea>;
131626
132205
  focusAreaActivityHistory?: Maybe<MercuryFocusAreaActivityConnection>;
132206
+ focusAreaAsks?: Maybe<GraphStoreCypherQueryV2Connection>;
131627
132207
  focusAreaCustomFieldDefinitionsSearch?: Maybe<MercuryCustomFieldDefinitionConnection>;
131628
132208
  focusAreaHierarchies?: Maybe<Array<MercuryFocusAreaHierarchy>>;
131629
132209
  focusAreaHierarchiesSearch?: Maybe<MercuryFocusAreaHierarchyConnection>;
@@ -131684,6 +132264,11 @@ export declare type MercuryQueryApiFocusAreaActivityHistoryArgs = {
131684
132264
  focusAreaId: Scalars['ID']['input'];
131685
132265
  sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaActivitySort>>>;
131686
132266
  };
132267
+ export declare type MercuryQueryApiFocusAreaAsksArgs = {
132268
+ after?: InputMaybe<Scalars['String']['input']>;
132269
+ first?: InputMaybe<Scalars['Int']['input']>;
132270
+ focusAreaId: Scalars['ID']['input'];
132271
+ };
131687
132272
  export declare type MercuryQueryApiFocusAreaCustomFieldDefinitionsSearchArgs = {
131688
132273
  after?: InputMaybe<Scalars['String']['input']>;
131689
132274
  cloudId?: InputMaybe<Scalars['ID']['input']>;
@@ -131920,6 +132505,7 @@ export declare type MercuryRisk = Node & {
131920
132505
  name: Scalars['String']['output'];
131921
132506
  owner?: Maybe<Scalars['ID']['output']>;
131922
132507
  status?: Maybe<MercuryRiskStatus>;
132508
+ updatedDate: Scalars['String']['output'];
131923
132509
  };
131924
132510
  export declare type MercuryRiskStatus = {
131925
132511
  __typename?: 'MercuryRiskStatus';
@@ -132731,6 +133317,46 @@ export declare type MercuryUpdateCommentPayload = Payload & {
132731
133317
  success: Scalars['Boolean']['output'];
132732
133318
  updatedComment?: Maybe<MercuryComment>;
132733
133319
  };
133320
+ export declare type MercuryUpdateCostItemClassificationInput = {
133321
+ classification?: InputMaybe<MercuryCostItemClassificationInput>;
133322
+ id: Scalars['ID']['input'];
133323
+ };
133324
+ export declare type MercuryUpdateCostItemClassificationPayload = Payload & {
133325
+ __typename?: 'MercuryUpdateCostItemClassificationPayload';
133326
+ errors?: Maybe<Array<MutationError>>;
133327
+ success: Scalars['Boolean']['output'];
133328
+ updatedCostItem?: Maybe<MercuryCostItem>;
133329
+ };
133330
+ export declare type MercuryUpdateCostItemExpenditureTypeInput = {
133331
+ expenditureTypeId?: InputMaybe<Scalars['ID']['input']>;
133332
+ id: Scalars['ID']['input'];
133333
+ };
133334
+ export declare type MercuryUpdateCostItemExpenditureTypePayload = Payload & {
133335
+ __typename?: 'MercuryUpdateCostItemExpenditureTypePayload';
133336
+ errors?: Maybe<Array<MutationError>>;
133337
+ success: Scalars['Boolean']['output'];
133338
+ updatedCostItem?: Maybe<MercuryCostItem>;
133339
+ };
133340
+ export declare type MercuryUpdateCostItemInvestmentCategoryInput = {
133341
+ id: Scalars['ID']['input'];
133342
+ investmentCategoryId?: InputMaybe<Scalars['ID']['input']>;
133343
+ };
133344
+ export declare type MercuryUpdateCostItemInvestmentCategoryPayload = Payload & {
133345
+ __typename?: 'MercuryUpdateCostItemInvestmentCategoryPayload';
133346
+ errors?: Maybe<Array<MutationError>>;
133347
+ success: Scalars['Boolean']['output'];
133348
+ updatedCostItem?: Maybe<MercuryCostItem>;
133349
+ };
133350
+ export declare type MercuryUpdateCostPeriodValueAmountInput = {
133351
+ amount: Scalars['String']['input'];
133352
+ id: Scalars['ID']['input'];
133353
+ };
133354
+ export declare type MercuryUpdateCostPeriodValueAmountPayload = Payload & {
133355
+ __typename?: 'MercuryUpdateCostPeriodValueAmountPayload';
133356
+ errors?: Maybe<Array<MutationError>>;
133357
+ success: Scalars['Boolean']['output'];
133358
+ updatedCostPeriodValue?: Maybe<MercuryCostPeriodValue>;
133359
+ };
132734
133360
  export declare type MercuryUpdateCostSubtypeNameInput = {
132735
133361
  id: Scalars['ID']['input'];
132736
133362
  name: Scalars['String']['input'];
@@ -132983,17 +133609,9 @@ export declare enum MercuryViewType {
132983
133609
  }
132984
133610
  export declare type MercuryWorkNormalizationQueryApi = {
132985
133611
  __typename?: 'MercuryWorkNormalizationQueryApi';
132986
- focusAreasWithCount?: Maybe<MercuryWorkNormalizationSearchConnection>;
132987
133612
  linkedWorkByFocusArea?: Maybe<MercuryWorkNormalizationSearchConnection>;
132988
- searchHierarchyByFocusArea?: Maybe<MercuryWorkNormalizationSearchConnection>;
132989
- searchWorkByFocusArea?: Maybe<MercuryWorkNormalizationSearchConnection>;
132990
133613
  workNormalizationByFocusAreaId?: Maybe<MercuryWorkNormalizationSearchConnection>;
132991
133614
  };
132992
- export declare type MercuryWorkNormalizationQueryApiFocusAreasWithCountArgs = {
132993
- filter?: InputMaybe<MercuryNormalizedWorkSearchFiltersInput>;
132994
- parentFocusAreaId: Scalars['ID']['input'];
132995
- textQuery?: InputMaybe<Scalars['String']['input']>;
132996
- };
132997
133615
  export declare type MercuryWorkNormalizationQueryApiLinkedWorkByFocusAreaArgs = {
132998
133616
  after?: InputMaybe<Scalars['String']['input']>;
132999
133617
  filter?: InputMaybe<MercuryNormalizedWorkSearchFiltersInput>;
@@ -133002,22 +133620,6 @@ export declare type MercuryWorkNormalizationQueryApiLinkedWorkByFocusAreaArgs =
133002
133620
  sortOptions?: InputMaybe<Array<InputMaybe<MercuryNormalizedWorkSortInput>>>;
133003
133621
  textQuery?: InputMaybe<Scalars['String']['input']>;
133004
133622
  };
133005
- export declare type MercuryWorkNormalizationQueryApiSearchHierarchyByFocusAreaArgs = {
133006
- after?: InputMaybe<Scalars['String']['input']>;
133007
- filter?: InputMaybe<MercuryNormalizedWorkSearchFiltersInput>;
133008
- first?: InputMaybe<Scalars['Int']['input']>;
133009
- parentFocusAreaId: Scalars['ID']['input'];
133010
- sortOptions?: InputMaybe<Array<InputMaybe<MercuryNormalizedWorkSortInput>>>;
133011
- textQuery?: InputMaybe<Scalars['String']['input']>;
133012
- };
133013
- export declare type MercuryWorkNormalizationQueryApiSearchWorkByFocusAreaArgs = {
133014
- after?: InputMaybe<Scalars['String']['input']>;
133015
- filter?: InputMaybe<MercuryNormalizedWorkSearchFiltersInput>;
133016
- first?: InputMaybe<Scalars['Int']['input']>;
133017
- parentFocusAreaId: Scalars['ID']['input'];
133018
- sortOptions?: InputMaybe<Array<InputMaybe<MercuryNormalizedWorkSortInput>>>;
133019
- textQuery?: InputMaybe<Scalars['String']['input']>;
133020
- };
133021
133623
  export declare type MercuryWorkNormalizationQueryApiWorkNormalizationByFocusAreaIdArgs = {
133022
133624
  focusAreaId: Scalars['ID']['input'];
133023
133625
  };
@@ -133459,6 +134061,7 @@ export declare type Mutation = {
133459
134061
  avp_updateVariable?: Maybe<AvpUpdateVariablePayload>;
133460
134062
  avpanalytics_createModel?: Maybe<AvpAnalyticsCreateModelPayload>;
133461
134063
  blockService_batchCreateBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
134064
+ blockService_batchUpdateBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
133462
134065
  blockService_createBlock?: Maybe<BlockServiceBlockPayload>;
133463
134066
  blockService_deleteBlock?: Maybe<BlockServiceDeleteBlockPayload>;
133464
134067
  blockService_updateBlock?: Maybe<BlockServiceBlockPayload>;
@@ -133485,6 +134088,8 @@ export declare type Mutation = {
133485
134088
  channelPlatform_endChatIfTicketIsNotPresent?: Maybe<ChannelPlatformChatClosureResponse>;
133486
134089
  channelPlatform_performPluginAction?: Maybe<ChannelPlatformPluginActionResponse>;
133487
134090
  channelPlatform_relayMessage?: Maybe<ChannelPlatformMutationStatus>;
134091
+ channelPlatform_updateTracMetrics?: Maybe<ChannelPlatformTracMetricsResponse>;
134092
+ channelPlatform_uploadAttachmentMetadata?: Maybe<ChannelPlatformAttachmentMetadataResponse>;
133488
134093
  clearRestrictionsForFree?: Maybe<ContentRestrictionsPageResponse>;
133489
134094
  commerceExp_approvalDesk?: Maybe<CommerceExpApprovalDeskMutation>;
133490
134095
  commerceExp_ccp?: Maybe<CommerceExpCcpMutation>;
@@ -133939,6 +134544,7 @@ export declare type Mutation = {
133939
134544
  jira_setBoardViewFilter?: Maybe<JiraSetBoardViewFilterPayload>;
133940
134545
  jira_setBoardViewGroupBy?: Maybe<JiraSetBoardViewGroupByPayload>;
133941
134546
  jira_setBoardViewStatusColumnMapping?: Maybe<JiraSetBoardViewStatusColumnMappingPayload>;
134547
+ jira_setBoardViewSwimlaneState?: Maybe<JiraSetBoardViewSwimlaneStatePayload>;
133942
134548
  jira_setBoardViewWorkflowSelected?: Maybe<JiraSetBoardViewWorkflowSelectedPayload>;
133943
134549
  jira_setCapacityMostRecentSubRoute?: Maybe<JiraSetCapacityMostRecentSubRoutePayload>;
133944
134550
  jira_setCustomFieldTranslation?: Maybe<JiraSetCustomFieldTranslationPayload>;
@@ -133981,6 +134587,7 @@ export declare type Mutation = {
133981
134587
  jira_updateProjectBackground?: Maybe<JiraProjectUpdateBackgroundMutationPayload>;
133982
134588
  jira_updateProjectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
133983
134589
  jira_updateSchemeFieldPerWorkTypeCustomizations?: Maybe<JiraFieldWorkTypeConfigurationPayload>;
134590
+ jpdViewsService_associateGlobalView?: Maybe<JpdViewsServiceAssociateGlobalViewPayload>;
133984
134591
  jpdViewsService_createGlobalView?: Maybe<JpdViewsServiceCreateGlobalViewPayload>;
133985
134592
  jpdViewsService_deleteGlobalView?: Maybe<JpdViewsServiceDeleteGlobalViewPayload>;
133986
134593
  jpdViewsService_echo?: Maybe<Scalars['String']['output']>;
@@ -133998,10 +134605,11 @@ export declare type Mutation = {
133998
134605
  jsw?: Maybe<JswMutation>;
133999
134606
  kitsune_createCustomer?: Maybe<KitsuneCustomer>;
134000
134607
  kitsune_createFeedback?: Maybe<KitsuneFeedback>;
134608
+ kitsune_createOrganization?: Maybe<KitsuneOrganization>;
134001
134609
  kitsune_createSection?: Maybe<KitsuneSection>;
134002
134610
  kitsune_createSpace?: Maybe<KitsuneSpace>;
134003
134611
  kitsune_createView?: Maybe<KitsuneView>;
134004
- kitsune_generateFeedbackSummary?: Maybe<Scalars['Boolean']['output']>;
134612
+ kitsune_generateFeedbackSummary?: Maybe<KitsuneFeedback>;
134005
134613
  kitsune_moveSection?: Maybe<KitsuneSpace>;
134006
134614
  kitsune_moveView?: Maybe<KitsuneSpace>;
134007
134615
  kitsune_removeFeedback?: Maybe<KitsuneDeletedRecord>;
@@ -134532,6 +135140,7 @@ export declare type MutationAgentStudio_RemoveGroupsFromCreatePermissionArgs = {
134532
135140
  export declare type MutationAgentStudio_RunBatchEvaluationJobArgs = {
134533
135141
  batchEvaluationJobId: Scalars['ID']['input'];
134534
135142
  cloudId: Scalars['String']['input'];
135143
+ judgeMode?: InputMaybe<AgentStudioJudgeMode>;
134535
135144
  productType: AgentStudioProductType;
134536
135145
  projectContainerAri: Scalars['ID']['input'];
134537
135146
  };
@@ -135060,6 +135669,9 @@ export declare type MutationAvpanalytics_CreateModelArgs = {
135060
135669
  export declare type MutationBlockService_BatchCreateBlocksArgs = {
135061
135670
  input: BlockServiceBatchCreateBlocksInput;
135062
135671
  };
135672
+ export declare type MutationBlockService_BatchUpdateBlocksArgs = {
135673
+ input: BlockServiceBatchUpdateBlocksInput;
135674
+ };
135063
135675
  export declare type MutationBlockService_CreateBlockArgs = {
135064
135676
  input: BlockServiceCreateBlockInput;
135065
135677
  };
@@ -135145,6 +135757,13 @@ export declare type MutationChannelPlatform_PerformPluginActionArgs = {
135145
135757
  export declare type MutationChannelPlatform_RelayMessageArgs = {
135146
135758
  eventRelayRequest?: InputMaybe<ChannelPlatformEventRelayRequest>;
135147
135759
  };
135760
+ export declare type MutationChannelPlatform_UpdateTracMetricsArgs = {
135761
+ metrics: Scalars['JSON']['input'];
135762
+ };
135763
+ export declare type MutationChannelPlatform_UploadAttachmentMetadataArgs = {
135764
+ attachmentId: Scalars['String']['input'];
135765
+ metadata: Scalars['JSON']['input'];
135766
+ };
135148
135767
  export declare type MutationClearRestrictionsForFreeArgs = {
135149
135768
  contentId: Scalars['ID']['input'];
135150
135769
  };
@@ -136687,6 +137306,9 @@ export declare type MutationJira_SetBoardViewGroupByArgs = {
136687
137306
  export declare type MutationJira_SetBoardViewStatusColumnMappingArgs = {
136688
137307
  input: JiraSetBoardViewStatusColumnMappingInput;
136689
137308
  };
137309
+ export declare type MutationJira_SetBoardViewSwimlaneStateArgs = {
137310
+ input: JiraSetBoardViewSwimlaneStateInput;
137311
+ };
136690
137312
  export declare type MutationJira_SetBoardViewWorkflowSelectedArgs = {
136691
137313
  input: JiraSetBoardViewWorkflowSelectedInput;
136692
137314
  };
@@ -136825,8 +137447,11 @@ export declare type MutationJira_UpdateSchemeFieldPerWorkTypeCustomizationsArgs
136825
137447
  cloudId: Scalars['ID']['input'];
136826
137448
  input?: InputMaybe<JiraFieldWorkTypeCustomizationsInput>;
136827
137449
  };
137450
+ export declare type MutationJpdViewsService_AssociateGlobalViewArgs = {
137451
+ input: JpdViewsServiceAssociateGlobalViewInput;
137452
+ };
136828
137453
  export declare type MutationJpdViewsService_CreateGlobalViewArgs = {
136829
- cloudId: Scalars['String']['input'];
137454
+ cloudId: Scalars['ID']['input'];
136830
137455
  input: JpdViewsServiceCreateGlobalViewInput;
136831
137456
  };
136832
137457
  export declare type MutationJpdViewsService_DeleteGlobalViewArgs = {
@@ -136881,9 +137506,15 @@ export declare type MutationKitsune_CreateCustomerArgs = {
136881
137506
  export declare type MutationKitsune_CreateFeedbackArgs = {
136882
137507
  content: Scalars['KitsuneADF']['input'];
136883
137508
  source?: InputMaybe<KitsuneSourceInput>;
137509
+ sourceNew?: InputMaybe<KitsuneSourceInputNew>;
136884
137510
  spaceAri: Scalars['ID']['input'];
136885
137511
  title?: InputMaybe<Scalars['String']['input']>;
136886
137512
  };
137513
+ export declare type MutationKitsune_CreateOrganizationArgs = {
137514
+ domainName?: InputMaybe<Scalars['String']['input']>;
137515
+ name: Scalars['String']['input'];
137516
+ workspaceAri: Scalars['ID']['input'];
137517
+ };
136887
137518
  export declare type MutationKitsune_CreateSectionArgs = {
136888
137519
  description?: InputMaybe<Scalars['String']['input']>;
136889
137520
  name: Scalars['String']['input'];
@@ -140332,7 +140963,6 @@ export declare type PolarisView = {
140332
140963
  fieldRollups?: Maybe<Array<PolarisViewFieldRollup>>;
140333
140964
  fields: Array<PolarisIdeaField>;
140334
140965
  filter?: Maybe<Array<PolarisViewFilter>>;
140335
- filterGroups?: Maybe<Array<PolarisViewFilterGroup>>;
140336
140966
  groupBy?: Maybe<PolarisIdeaField>;
140337
140967
  groupValues?: Maybe<Array<PolarisGroupValue>>;
140338
140968
  groupsFilter?: Maybe<Array<PolarisViewFilter>>;
@@ -140397,17 +141027,6 @@ export declare type PolarisViewFilter = {
140397
141027
  kind: PolarisViewFilterKind;
140398
141028
  values: Array<PolarisViewFilterValue>;
140399
141029
  };
140400
- export declare type PolarisViewFilterGroup = {
140401
- __typename?: 'PolarisViewFilterGroup';
140402
- filterEnums?: Maybe<Array<PolarisFilterEnumType>>;
140403
- filters: Array<PolarisViewFilter>;
140404
- groupFilter: PolarisViewFilter;
140405
- };
140406
- export declare type PolarisViewFilterGroupInput = {
140407
- filterEnums?: InputMaybe<Array<PolarisFilterEnumType>>;
140408
- filters: Array<PolarisViewFilterInput>;
140409
- groupFilter: PolarisViewFilterInput;
140410
- };
140411
141030
  export declare type PolarisViewFilterInput = {
140412
141031
  field?: InputMaybe<Scalars['ID']['input']>;
140413
141032
  kind: PolarisViewFilterKind;
@@ -140960,6 +141579,7 @@ export declare type Query = {
140960
141579
  admin_licenseUsage?: Maybe<AdminLicenseDataConnection>;
140961
141580
  admin_org?: Maybe<AdminOrganization>;
140962
141581
  admin_orgDetails?: Maybe<AdminOrgDetails>;
141582
+ admin_orgPolicies?: Maybe<AdminOrgPolicyConnection>;
140963
141583
  admin_permissions?: Maybe<Array<AdminPermission>>;
140964
141584
  admin_tokens?: Maybe<AdminTokenConnection>;
140965
141585
  admin_unitCreateStatus?: Maybe<AdminUnitCreateStatus>;
@@ -141043,6 +141663,7 @@ export declare type Query = {
141043
141663
  aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
141044
141664
  aiCoreApi_vsaQuestionsByProjectAndType?: Maybe<AiCoreApiVsaQuestionsWithTypeResult>;
141045
141665
  aiCoreApi_vsaReportingByProject?: Maybe<AiCoreApiVsaReportingResult>;
141666
+ aiops_echo?: Maybe<Scalars['String']['output']>;
141046
141667
  allIndividualSpaces?: Maybe<SpaceInfoConnection>;
141047
141668
  allTemplates?: Maybe<PaginatedTemplateInfoList>;
141048
141669
  allUpdatesFeed?: Maybe<PaginatedAllUpdatesFeed>;
@@ -141199,8 +141820,10 @@ export declare type Query = {
141199
141820
  channelPlatform_chatRequestDetails?: Maybe<ChannelPlatformGetChannelTokenResponse>;
141200
141821
  channelPlatform_createContact?: Maybe<ChannelPlatformCreateContactResponse>;
141201
141822
  channelPlatform_evaluateChannelAvailability?: Maybe<ChannelPlatformChannelAvailabilityResponse>;
141823
+ channelPlatform_generateMediaToken?: Maybe<ChannelPlatformMediaTokenResponse>;
141202
141824
  channelPlatform_getAgentIdForAaid?: Maybe<Scalars['String']['output']>;
141203
141825
  channelPlatform_getAgentStatus?: Maybe<ChannelPlatformAgentStatusResponse>;
141826
+ channelPlatform_getAttachmentPreviewUrl?: Maybe<ChannelPlatformAttachmentPreviewUrlResponse>;
141204
141827
  channelPlatform_getChannelToken?: Maybe<ChannelPlatformGetChannelTokenResponse>;
141205
141828
  channelPlatform_getConnectDetails?: Maybe<ChannelPlatformConnectDetails>;
141206
141829
  channelPlatform_getContactDetails?: Maybe<Array<Maybe<ChannelPlatformContact>>>;
@@ -141617,6 +142240,7 @@ export declare type Query = {
141617
142240
  isSainSearchEnabled?: Maybe<Scalars['Boolean']['output']>;
141618
142241
  isSiteAdmin?: Maybe<Scalars['Boolean']['output']>;
141619
142242
  jira?: Maybe<JiraQuery>;
142243
+ jiraAlignAgg_projectTypesByAris?: Maybe<Array<Maybe<JiraAlignAggCustomProjectType>>>;
141620
142244
  jiraAlignAgg_projectsByAris?: Maybe<Array<Maybe<JiraAlignAggProject>>>;
141621
142245
  jiraAlignAgg_searchProjects?: Maybe<JiraAlignAggProjectConnection>;
141622
142246
  jiraAlignAgg_sitesByOrgId?: Maybe<Array<Maybe<JiraAlignAggSite>>>;
@@ -141647,6 +142271,8 @@ export declare type Query = {
141647
142271
  jira_isTenantConvertedToNfa?: Maybe<Scalars['Boolean']['output']>;
141648
142272
  jira_issueSearchTopLevelIssueFieldsAggregation?: Maybe<Array<Maybe<JiraIssue>>>;
141649
142273
  jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
142274
+ jira_issueStatusesByIds?: Maybe<Array<Maybe<JiraStatus>>>;
142275
+ jira_issueTypesByIds?: Maybe<Array<Maybe<JiraIssueType>>>;
141650
142276
  jira_issuesByIds?: Maybe<Array<Maybe<JiraIssue>>>;
141651
142277
  jira_jiraServiceManagementDefaultCommentBehavior?: Maybe<JiraServiceManagementDefaultCommentBehavior>;
141652
142278
  jira_jswBoardViewSettings?: Maybe<JiraJswBoardViewSettings>;
@@ -141655,6 +142281,7 @@ export declare type Query = {
141655
142281
  jira_onboardingConfigById?: Maybe<JiraOnboardingConfig>;
141656
142282
  jira_onboardingConfigByTarget?: Maybe<JiraOnboardingConfig>;
141657
142283
  jira_onboardingConfigs?: Maybe<JiraOnboardingConfigConnection>;
142284
+ jira_prioritiesByIds?: Maybe<Array<Maybe<JiraPriority>>>;
141658
142285
  jira_projectByIdOrKey?: Maybe<JiraProject>;
141659
142286
  jira_projectLevelSidebarMenuCustomization?: Maybe<JiraProjectLevelSidebarMenuCustomizationResult>;
141660
142287
  jira_projectTypesByIds?: Maybe<Array<Maybe<JiraProjectTypeDetails>>>;
@@ -141669,7 +142296,6 @@ export declare type Query = {
141669
142296
  jpdViewsService_globalViewsById?: Maybe<Array<Maybe<JpdViewsServiceGlobalView>>>;
141670
142297
  jpdViewsService_hydrateGlobalViews?: Maybe<JpdViewsServiceGlobalViewsHydrationExample>;
141671
142298
  jpdViewsService_hydrateUser?: Maybe<JpdViewsServiceUserHydrationExample>;
141672
- jpdViewsService_test?: Maybe<Scalars['String']['output']>;
141673
142299
  jsmAgentWorkspace_locations?: Maybe<JsmAgentWorkspaceLocations>;
141674
142300
  jsmChannels_conversationsByContainerAri?: Maybe<JsmChannelsConversationsByContainerAriResult>;
141675
142301
  jsmChannels_conversationsByIds?: Maybe<Array<Maybe<JsmChannelsOrchestratorConversation>>>;
@@ -142119,7 +142745,7 @@ export declare type QueryAdmin_AuditLogEventsArgs = {
142119
142745
  before?: InputMaybe<Scalars['String']['input']>;
142120
142746
  container: AdminAuditLogContainer;
142121
142747
  first?: InputMaybe<Scalars['Int']['input']>;
142122
- input?: InputMaybe<AdminFetchAdminAuditLogEventsInput>;
142748
+ input: AdminFetchAdminAuditLogEventsInput;
142123
142749
  last?: InputMaybe<Scalars['Int']['input']>;
142124
142750
  };
142125
142751
  export declare type QueryAdmin_CheckLicensesCapacityArgs = {
@@ -142194,6 +142820,18 @@ export declare type QueryAdmin_OrgArgs = {
142194
142820
  export declare type QueryAdmin_OrgDetailsArgs = {
142195
142821
  orgId: Scalars['ID']['input'];
142196
142822
  };
142823
+ export declare type QueryAdmin_OrgPoliciesArgs = {
142824
+ after?: InputMaybe<Scalars['String']['input']>;
142825
+ before?: InputMaybe<Scalars['String']['input']>;
142826
+ cursor?: InputMaybe<Scalars['String']['input']>;
142827
+ first?: InputMaybe<Scalars['Int']['input']>;
142828
+ last?: InputMaybe<Scalars['Int']['input']>;
142829
+ name?: InputMaybe<Scalars['String']['input']>;
142830
+ orgId: Scalars['ID']['input'];
142831
+ resourceId?: InputMaybe<Scalars['String']['input']>;
142832
+ status?: InputMaybe<Scalars['String']['input']>;
142833
+ type?: InputMaybe<Scalars['String']['input']>;
142834
+ };
142197
142835
  export declare type QueryAdmin_PermissionsArgs = {
142198
142836
  principalId: Scalars['ID']['input'];
142199
142837
  resourceId: Scalars['ID']['input'];
@@ -142643,6 +143281,9 @@ export declare type QueryAiCoreApi_VsaQuestionsByProjectAndTypeArgs = {
142643
143281
  export declare type QueryAiCoreApi_VsaReportingByProjectArgs = {
142644
143282
  projectAri: Scalars['ID']['input'];
142645
143283
  };
143284
+ export declare type QueryAiops_EchoArgs = {
143285
+ input?: InputMaybe<Scalars['String']['input']>;
143286
+ };
142646
143287
  export declare type QueryAllIndividualSpacesArgs = {
142647
143288
  after?: InputMaybe<Scalars['String']['input']>;
142648
143289
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -143376,10 +144017,17 @@ export declare type QueryChannelPlatform_CreateContactArgs = {
143376
144017
  export declare type QueryChannelPlatform_EvaluateChannelAvailabilityArgs = {
143377
144018
  request?: InputMaybe<ChannelPlatformChannelAvailabilityRequestInput>;
143378
144019
  };
144020
+ export declare type QueryChannelPlatform_GenerateMediaTokenArgs = {
144021
+ issueId: Scalars['String']['input'];
144022
+ };
143379
144023
  export declare type QueryChannelPlatform_GetAgentIdForAaidArgs = {
143380
144024
  aaId?: InputMaybe<Scalars['String']['input']>;
143381
144025
  instanceId?: InputMaybe<Scalars['String']['input']>;
143382
144026
  };
144027
+ export declare type QueryChannelPlatform_GetAttachmentPreviewUrlArgs = {
144028
+ attachmentId: Scalars['String']['input'];
144029
+ issueId: Scalars['String']['input'];
144030
+ };
143383
144031
  export declare type QueryChannelPlatform_GetChannelTokenArgs = {
143384
144032
  request?: InputMaybe<ChannelPlatformGetChannelTokenRequest>;
143385
144033
  };
@@ -144105,6 +144753,7 @@ export declare type QueryContentArgs = {
144105
144753
  version?: InputMaybe<Scalars['Int']['input']>;
144106
144754
  };
144107
144755
  export declare type QueryContentAnalyticsLastViewedAtByPageArgs = {
144756
+ accountIds?: InputMaybe<Array<Scalars['ID']['input']>>;
144108
144757
  contentIds: Array<Scalars['ID']['input']>;
144109
144758
  endTime?: InputMaybe<Scalars['String']['input']>;
144110
144759
  startTime: Scalars['String']['input'];
@@ -145199,6 +145848,9 @@ export declare type QueryIsMoveContentStatesSupportedArgs = {
145199
145848
  export declare type QueryIsSainSearchEnabledArgs = {
145200
145849
  cloudId: Scalars['String']['input'];
145201
145850
  };
145851
+ export declare type QueryJiraAlignAgg_ProjectTypesByArisArgs = {
145852
+ ids: Array<Scalars['ID']['input']>;
145853
+ };
145202
145854
  export declare type QueryJiraAlignAgg_ProjectsByArisArgs = {
145203
145855
  ids: Array<Scalars['ID']['input']>;
145204
145856
  };
@@ -145305,6 +145957,12 @@ export declare type QueryJira_IssueSearchTopLevelIssueFieldsAggregationArgs = {
145305
145957
  export declare type QueryJira_IssueSearchViewsByIdsArgs = {
145306
145958
  ids: Array<Scalars['ID']['input']>;
145307
145959
  };
145960
+ export declare type QueryJira_IssueStatusesByIdsArgs = {
145961
+ ids: Array<Scalars['ID']['input']>;
145962
+ };
145963
+ export declare type QueryJira_IssueTypesByIdsArgs = {
145964
+ ids: Array<InputMaybe<Scalars['ID']['input']>>;
145965
+ };
145308
145966
  export declare type QueryJira_IssuesByIdsArgs = {
145309
145967
  ids: Array<Scalars['ID']['input']>;
145310
145968
  };
@@ -145332,6 +145990,9 @@ export declare type QueryJira_OnboardingConfigByTargetArgs = {
145332
145990
  export declare type QueryJira_OnboardingConfigsArgs = {
145333
145991
  cloudId: Scalars['ID']['input'];
145334
145992
  };
145993
+ export declare type QueryJira_PrioritiesByIdsArgs = {
145994
+ ids: Array<Scalars['ID']['input']>;
145995
+ };
145335
145996
  export declare type QueryJira_ProjectByIdOrKeyArgs = {
145336
145997
  cloudId: Scalars['ID']['input'];
145337
145998
  idOrKey: Scalars['String']['input'];
@@ -145395,9 +146056,6 @@ export declare type QueryJpdViewsService_HydrateGlobalViewsArgs = {
145395
146056
  export declare type QueryJpdViewsService_HydrateUserArgs = {
145396
146057
  cloudId: Scalars['ID']['input'];
145397
146058
  };
145398
- export declare type QueryJpdViewsService_TestArgs = {
145399
- cloudId: Scalars['ID']['input'];
145400
- };
145401
146059
  export declare type QueryJsmAgentWorkspace_LocationsArgs = {
145402
146060
  after?: InputMaybe<Scalars['String']['input']>;
145403
146061
  cloudId: Scalars['ID']['input'];
@@ -148992,6 +149650,9 @@ export declare enum Scope {
148992
149650
  DeleteServicedeskCustomer = "DELETE_SERVICEDESK_CUSTOMER",
148993
149651
  DeleteServicedeskOrganization = "DELETE_SERVICEDESK_ORGANIZATION",
148994
149652
  DeleteServicedeskProperty = "DELETE_SERVICEDESK_PROPERTY",
149653
+ DeleteStakeholderCommsPage = "DELETE_STAKEHOLDER_COMMS_PAGE",
149654
+ DeleteStakeholderCommsStakeholder = "DELETE_STAKEHOLDER_COMMS_STAKEHOLDER",
149655
+ DeleteStakeholderCommsSubscriber = "DELETE_STAKEHOLDER_COMMS_SUBSCRIBER",
148995
149656
  DeployAppEnvironment = "DEPLOY_APP_ENVIRONMENT",
148996
149657
  DevelopAppEnvironment = "DEVELOP_APP_ENVIRONMENT",
148997
149658
  FieldConfigurationDelete = "FIELD_CONFIGURATION_DELETE",
@@ -149209,6 +149870,12 @@ export declare enum Scope {
149209
149870
  ReadServicedeskOrganization = "READ_SERVICEDESK_ORGANIZATION",
149210
149871
  ReadServicedeskProperty = "READ_SERVICEDESK_PROPERTY",
149211
149872
  ReadServicedeskRequest = "READ_SERVICEDESK_REQUEST",
149873
+ ReadStakeholderCommsAssignment = "READ_STAKEHOLDER_COMMS_ASSIGNMENT",
149874
+ ReadStakeholderCommsComponent = "READ_STAKEHOLDER_COMMS_COMPONENT",
149875
+ ReadStakeholderCommsIncident = "READ_STAKEHOLDER_COMMS_INCIDENT",
149876
+ ReadStakeholderCommsPage = "READ_STAKEHOLDER_COMMS_PAGE",
149877
+ ReadStakeholderCommsStakeholder = "READ_STAKEHOLDER_COMMS_STAKEHOLDER",
149878
+ ReadStakeholderCommsSubscriber = "READ_STAKEHOLDER_COMMS_SUBSCRIBER",
149212
149879
  ReadTeam = "READ_TEAM",
149213
149880
  ReadTeamMembers = "READ_TEAM_MEMBERS",
149214
149881
  ReadTeamMembersTemp = "READ_TEAM_MEMBERS_TEMP",
@@ -149319,6 +149986,11 @@ export declare enum Scope {
149319
149986
  WriteServicedeskOrganization = "WRITE_SERVICEDESK_ORGANIZATION",
149320
149987
  WriteServicedeskProperty = "WRITE_SERVICEDESK_PROPERTY",
149321
149988
  WriteServicedeskRequest = "WRITE_SERVICEDESK_REQUEST",
149989
+ WriteStakeholderCommsComponent = "WRITE_STAKEHOLDER_COMMS_COMPONENT",
149990
+ WriteStakeholderCommsIncident = "WRITE_STAKEHOLDER_COMMS_INCIDENT",
149991
+ WriteStakeholderCommsPage = "WRITE_STAKEHOLDER_COMMS_PAGE",
149992
+ WriteStakeholderCommsStakeholder = "WRITE_STAKEHOLDER_COMMS_STAKEHOLDER",
149993
+ WriteStakeholderCommsSubscriber = "WRITE_STAKEHOLDER_COMMS_SUBSCRIBER",
149322
149994
  WriteTeam = "WRITE_TEAM",
149323
149995
  WriteTeamMembersTemp = "WRITE_TEAM_MEMBERS_TEMP",
149324
149996
  WriteTeamTemp = "WRITE_TEAM_TEMP",
@@ -169801,6 +170473,7 @@ export declare type SmartsModelRequestParams = {
169801
170473
  export declare type SmartsQueryApi = {
169802
170474
  __typename?: 'SmartsQueryApi';
169803
170475
  recommendedContainer?: Maybe<Array<Maybe<SmartsRecommendedContainer>>>;
170476
+ recommendedContainerV2?: Maybe<Array<Maybe<SmartsRecommendedContainerV2>>>;
169804
170477
  recommendedField?: Maybe<Array<Maybe<SmartsRecommendedFieldObject>>>;
169805
170478
  recommendedObject?: Maybe<Array<Maybe<SmartsRecommendedObject>>>;
169806
170479
  recommendedUser?: Maybe<Array<Maybe<SmartsRecommendedUser>>>;
@@ -169808,6 +170481,9 @@ export declare type SmartsQueryApi = {
169808
170481
  export declare type SmartsQueryApiRecommendedContainerArgs = {
169809
170482
  recommendationsQuery: SmartsRecommendationsQuery;
169810
170483
  };
170484
+ export declare type SmartsQueryApiRecommendedContainerV2Args = {
170485
+ recommendationsQuery: SmartsRecommendationsQuery;
170486
+ };
169811
170487
  export declare type SmartsQueryApiRecommendedFieldArgs = {
169812
170488
  recommendationsQuery: SmartsRecommendationsFieldQuery;
169813
170489
  };
@@ -169837,6 +170513,13 @@ export declare type SmartsRecommendedContainer = {
169837
170513
  id: Scalars['ID']['output'];
169838
170514
  score?: Maybe<Scalars['Float']['output']>;
169839
170515
  };
170516
+ export declare type SmartsRecommendedContainerData = ConfluenceSpace | JiraProject;
170517
+ export declare type SmartsRecommendedContainerV2 = {
170518
+ __typename?: 'SmartsRecommendedContainerV2';
170519
+ container?: Maybe<SmartsRecommendedContainerData>;
170520
+ id: Scalars['ID']['output'];
170521
+ score?: Maybe<Scalars['Float']['output']>;
170522
+ };
169840
170523
  export declare type SmartsRecommendedFieldObject = {
169841
170524
  __typename?: 'SmartsRecommendedFieldObject';
169842
170525
  id: Scalars['ID']['output'];
@@ -173222,6 +173905,7 @@ export declare type SubscriptionJpdViewsService_EchoArgs = {
173222
173905
  };
173223
173906
  export declare type SubscriptionJsmChannels_GetResolutionPlanGraphUpdateArgs = {
173224
173907
  jiraProjectAri: Scalars['ID']['input'];
173908
+ planEditTransactionId?: InputMaybe<Scalars['ID']['input']>;
173225
173909
  planID: Scalars['ID']['input'];
173226
173910
  };
173227
173911
  export declare type SubscriptionJsmChannels_OnServiceAgentResolutionStateByTicketIdUpdateArgs = {
@@ -174988,7 +175672,7 @@ export declare enum TownsquareAccessControlCapability {
174988
175672
  Create = "CREATE"
174989
175673
  }
174990
175674
  export declare type TownsquareAccessPrincipal = AppUser | AtlassianAccountUser | CustomerUser;
174991
- export declare type TownsquareActivityChange = TownsquareGoalArchivedChange | TownsquareGoalCreatedChange | TownsquareGoalOwnerUpdatedChange | TownsquareGoalRenamedChange;
175675
+ export declare type TownsquareActivityChange = TownsquareEditorsAddedChange | TownsquareEditorsRemovedChange | TownsquareFollowersAddedChange | TownsquareFollowersRemovedChange | TownsquareGoalArchivedChange | TownsquareGoalCreatedChange | TownsquareGoalOwnerUpdatedChange | TownsquareGoalRenamedChange | TownsquareGoalRestoredChange | TownsquareStartDateAddedChange | TownsquareStartDateEditedChange | TownsquareTargetDateAddedChange | TownsquareUpdateDeletedChange;
174992
175676
  export declare type TownsquareActivityItem = {
174993
175677
  __typename?: 'TownsquareActivityItem';
174994
175678
  actor?: Maybe<User>;
@@ -175044,6 +175728,11 @@ export declare type TownsquareArchiveGoalPayload = {
175044
175728
  __typename?: 'TownsquareArchiveGoalPayload';
175045
175729
  goal?: Maybe<TownsquareGoal>;
175046
175730
  };
175731
+ export declare enum TownsquareBundledUpdateNodeMissingReason {
175732
+ Deleted = "DELETED",
175733
+ NotFound = "NOT_FOUND",
175734
+ NotPermitted = "NOT_PERMITTED"
175735
+ }
175047
175736
  export declare enum TownsquareCanCreateFusionResult {
175048
175737
  CanCreate = "CAN_CREATE",
175049
175738
  IntegrationNotInstalled = "INTEGRATION_NOT_INSTALLED",
@@ -175392,10 +176081,26 @@ export declare type TownsquareEditGoalTypePayload = {
175392
176081
  __typename?: 'TownsquareEditGoalTypePayload';
175393
176082
  goalType?: Maybe<TownsquareGoalType>;
175394
176083
  };
176084
+ export declare type TownsquareEditorsAddedChange = {
176085
+ __typename?: 'TownsquareEditorsAddedChange';
176086
+ addedEditors?: Maybe<Array<User>>;
176087
+ };
176088
+ export declare type TownsquareEditorsRemovedChange = {
176089
+ __typename?: 'TownsquareEditorsRemovedChange';
176090
+ removedEditors?: Maybe<Array<User>>;
176091
+ };
175395
176092
  export declare type TownsquareFocusAppCapabilities = {
175396
176093
  __typename?: 'TownsquareFocusAppCapabilities';
175397
176094
  canViewFocusAreas?: Maybe<Scalars['Boolean']['output']>;
175398
176095
  };
176096
+ export declare type TownsquareFollowersAddedChange = {
176097
+ __typename?: 'TownsquareFollowersAddedChange';
176098
+ addedFollowers?: Maybe<Array<User>>;
176099
+ };
176100
+ export declare type TownsquareFollowersRemovedChange = {
176101
+ __typename?: 'TownsquareFollowersRemovedChange';
176102
+ removedFollowers?: Maybe<Array<User>>;
176103
+ };
175399
176104
  export declare type TownsquareFromGoalUpdate = {
175400
176105
  __typename?: 'TownsquareFromGoalUpdate';
175401
176106
  goalUpdate?: Maybe<TownsquareGoalUpdate>;
@@ -175417,6 +176122,7 @@ export declare type TownsquareFusionDetails = {
175417
176122
  export declare type TownsquareGoal = Node & {
175418
176123
  __typename?: 'TownsquareGoal';
175419
176124
  access?: Maybe<TownsquareGoalAccessConnection>;
176125
+ accessLevel?: Maybe<TownsquareGoalAccessLevel>;
175420
176126
  activityItems?: Maybe<TownsquareActivityItemConnection>;
175421
176127
  archived: Scalars['Boolean']['output'];
175422
176128
  canEditMembers?: Maybe<Scalars['Boolean']['output']>;
@@ -175588,6 +176294,10 @@ export declare type TownsquareGoalAccessEdge = {
175588
176294
  principalAri?: Maybe<Scalars['String']['output']>;
175589
176295
  role?: Maybe<TownsquareGoalAccessRole>;
175590
176296
  };
176297
+ export declare enum TownsquareGoalAccessLevel {
176298
+ OpenEdit = "OPEN_EDIT",
176299
+ OpenView = "OPEN_VIEW"
176300
+ }
175591
176301
  export declare enum TownsquareGoalAccessRole {
175592
176302
  Editor = "EDITOR",
175593
176303
  Viewer = "VIEWER"
@@ -175604,6 +176314,18 @@ export declare type TownsquareGoalArchivedChange = {
175604
176314
  __typename?: 'TownsquareGoalArchivedChange';
175605
176315
  goalType?: Maybe<TownsquareGoalType>;
175606
176316
  };
176317
+ export declare type TownsquareGoalBundledUpdateConnection = {
176318
+ __typename?: 'TownsquareGoalBundledUpdateConnection';
176319
+ edges?: Maybe<Array<Maybe<TownsquareGoalBundledUpdateEdge>>>;
176320
+ pageInfo: PageInfo;
176321
+ };
176322
+ export declare type TownsquareGoalBundledUpdateEdge = {
176323
+ __typename?: 'TownsquareGoalBundledUpdateEdge';
176324
+ cursor: Scalars['String']['output'];
176325
+ node?: Maybe<TownsquareGoalUpdate>;
176326
+ nodeMissingReason?: Maybe<TownsquareBundledUpdateNodeMissingReason>;
176327
+ successMeasure?: Maybe<TownsquareGoal>;
176328
+ };
175607
176329
  export declare type TownsquareGoalCapabilities = {
175608
176330
  __typename?: 'TownsquareGoalCapabilities';
175609
176331
  apps?: Maybe<TownsquareGoalAppCapabilities>;
@@ -175869,6 +176591,7 @@ export declare enum TownsquareGoalTypeState {
175869
176591
  export declare type TownsquareGoalUpdate = Node & {
175870
176592
  __typename?: 'TownsquareGoalUpdate';
175871
176593
  ari: Scalars['String']['output'];
176594
+ bundledUpdates?: Maybe<TownsquareGoalBundledUpdateConnection>;
175872
176595
  comments?: Maybe<TownsquareCommentConnection>;
175873
176596
  creationDate?: Maybe<Scalars['DateTime']['output']>;
175874
176597
  creator?: Maybe<User>;
@@ -175896,6 +176619,10 @@ export declare type TownsquareGoalUpdate = Node & {
175896
176619
  uuid?: Maybe<Scalars['UUID']['output']>;
175897
176620
  viewers?: Maybe<GraphStoreSimplifiedUserViewedGoalUpdateInverseConnection>;
175898
176621
  };
176622
+ export declare type TownsquareGoalUpdateBundledUpdatesArgs = {
176623
+ after?: InputMaybe<Scalars['String']['input']>;
176624
+ first?: InputMaybe<Scalars['Int']['input']>;
176625
+ };
175899
176626
  export declare type TownsquareGoalUpdateCommentsArgs = {
175900
176627
  after?: InputMaybe<Scalars['String']['input']>;
175901
176628
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -177906,6 +178633,15 @@ export declare type TownsquareSlackConnectionMetadata = {
177906
178633
  __typename?: 'TownsquareSlackConnectionMetadata';
177907
178634
  fieldTypes?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
177908
178635
  };
178636
+ export declare type TownsquareStartDateAddedChange = {
178637
+ __typename?: 'TownsquareStartDateAddedChange';
178638
+ newStartDate?: Maybe<Scalars['Date']['output']>;
178639
+ };
178640
+ export declare type TownsquareStartDateEditedChange = {
178641
+ __typename?: 'TownsquareStartDateEditedChange';
178642
+ newStartDate?: Maybe<Scalars['Date']['output']>;
178643
+ oldStartDate?: Maybe<Scalars['Date']['output']>;
178644
+ };
177909
178645
  export declare type TownsquareStatus = {
177910
178646
  __typename?: 'TownsquareStatus';
177911
178647
  atCompletionState?: Maybe<TownsquareCompletionGoalState>;
@@ -177964,6 +178700,10 @@ export declare type TownsquareTargetDate = {
177964
178700
  dateRange?: Maybe<TownsquareTargetDateRange>;
177965
178701
  label?: Maybe<Scalars['String']['output']>;
177966
178702
  };
178703
+ export declare type TownsquareTargetDateAddedChange = {
178704
+ __typename?: 'TownsquareTargetDateAddedChange';
178705
+ newTargetDate?: Maybe<TownsquareTargetDate>;
178706
+ };
177967
178707
  export declare type TownsquareTargetDateInput = {
177968
178708
  confidence?: InputMaybe<TownsquareTargetDateType>;
177969
178709
  date?: InputMaybe<Scalars['Date']['input']>;
@@ -178102,6 +178842,10 @@ export declare type TownsquareUnshardedWorkspaceSummaryEdge = {
178102
178842
  cursor: Scalars['String']['output'];
178103
178843
  node?: Maybe<TownsquareUnshardedWorkspaceSummary>;
178104
178844
  };
178845
+ export declare type TownsquareUpdateDeletedChange = {
178846
+ __typename?: 'TownsquareUpdateDeletedChange';
178847
+ placeholder?: Maybe<Scalars['Boolean']['output']>;
178848
+ };
178105
178849
  export declare type TownsquareUpdateHighlightInput = {
178106
178850
  description: Scalars['String']['input'];
178107
178851
  summary: Scalars['String']['input'];
@@ -178765,6 +179509,9 @@ export declare type TrelloBaseCardPlannerEventsArgs = {
178765
179509
  filter?: InputMaybe<TrelloPlannerEventTimeFilter>;
178766
179510
  first?: InputMaybe<Scalars['Int']['input']>;
178767
179511
  };
179512
+ export declare type TrelloBaseCardDeleted = {
179513
+ id: Scalars['ID']['output'];
179514
+ };
178768
179515
  export declare type TrelloBaseCardUpdated = {
178769
179516
  actions?: Maybe<TrelloCardActionConnectionUpdated>;
178770
179517
  attachments?: Maybe<TrelloAttachmentConnectionUpdated>;
@@ -179463,7 +180210,7 @@ export declare type TrelloCardCustomFieldItemEdgeUpdated = {
179463
180210
  __typename?: 'TrelloCardCustomFieldItemEdgeUpdated';
179464
180211
  node: TrelloCustomFieldItemUpdated;
179465
180212
  };
179466
- export declare type TrelloCardDeleted = {
180213
+ export declare type TrelloCardDeleted = TrelloBaseCardDeleted & {
179467
180214
  __typename?: 'TrelloCardDeleted';
179468
180215
  id: Scalars['ID']['output'];
179469
180216
  };
@@ -180315,6 +181062,10 @@ export declare type TrelloInboxCardPlannerEventsArgs = {
180315
181062
  filter?: InputMaybe<TrelloPlannerEventTimeFilter>;
180316
181063
  first?: InputMaybe<Scalars['Int']['input']>;
180317
181064
  };
181065
+ export declare type TrelloInboxCardDeleted = TrelloBaseCardDeleted & {
181066
+ __typename?: 'TrelloInboxCardDeleted';
181067
+ id: Scalars['ID']['output'];
181068
+ };
180318
181069
  export declare type TrelloInboxCardUpdated = TrelloBaseCardUpdated & {
180319
181070
  __typename?: 'TrelloInboxCardUpdated';
180320
181071
  actions?: Maybe<TrelloCardActionConnectionUpdated>;
@@ -180531,7 +181282,7 @@ export declare type TrelloListUpdated = {
180531
181282
  id: Scalars['ID']['output'];
180532
181283
  name?: Maybe<Scalars['String']['output']>;
180533
181284
  objectId?: Maybe<Scalars['ID']['output']>;
180534
- onCardDeleted?: Maybe<Array<TrelloCardDeleted>>;
181285
+ onCardDeleted?: Maybe<Array<TrelloBaseCardDeleted>>;
180535
181286
  position?: Maybe<Scalars['Float']['output']>;
180536
181287
  softLimit?: Maybe<Scalars['Int']['output']>;
180537
181288
  };
@@ -184998,7 +185749,6 @@ export declare type UpdatePolarisViewInput = {
184998
185749
  fieldRollups?: InputMaybe<Array<PolarisViewFieldRollupInput>>;
184999
185750
  fields?: InputMaybe<Array<Scalars['ID']['input']>>;
185000
185751
  filter?: InputMaybe<Array<PolarisViewFilterInput>>;
185001
- filterGroups?: InputMaybe<Array<PolarisViewFilterGroupInput>>;
185002
185752
  groupBy?: InputMaybe<Scalars['ID']['input']>;
185003
185753
  groupValues?: InputMaybe<Array<PolarisGroupValueInput>>;
185004
185754
  groupsFilter?: InputMaybe<Array<PolarisViewFilterInput>>;
@@ -186492,27 +187242,10 @@ export declare type WorkSuggestionsCompassAnnouncementTask = WorkSuggestionsComp
186492
187242
  export declare type WorkSuggestionsCompassResponse = {
186493
187243
  __typename?: 'WorkSuggestionsCompassResponse';
186494
187244
  announcements?: Maybe<Array<WorkSuggestionsCompassAnnouncementTask>>;
186495
- scorecardCriteria?: Maybe<Array<WorkSuggestionsCompassScorecardCriterionTask>>;
186496
187245
  };
186497
187246
  export declare type WorkSuggestionsCompassResponseAnnouncementsArgs = {
186498
187247
  input?: InputMaybe<WorkSuggestionsInput>;
186499
187248
  };
186500
- export declare type WorkSuggestionsCompassResponseScorecardCriteriaArgs = {
186501
- input?: InputMaybe<WorkSuggestionsInput>;
186502
- };
186503
- export declare type WorkSuggestionsCompassScorecardCriterionTask = WorkSuggestionsCompassTask & {
186504
- __typename?: 'WorkSuggestionsCompassScorecardCriterionTask';
186505
- componentAri?: Maybe<Scalars['ID']['output']>;
186506
- componentName?: Maybe<Scalars['String']['output']>;
186507
- componentType?: Maybe<Scalars['String']['output']>;
186508
- criterionId?: Maybe<Scalars['ID']['output']>;
186509
- id: Scalars['String']['output'];
186510
- orderScore?: Maybe<WorkSuggestionsOrderScore>;
186511
- scorecard?: Maybe<CompassScorecard>;
186512
- scorecardAri?: Maybe<Scalars['ID']['output']>;
186513
- title: Scalars['String']['output'];
186514
- url: Scalars['String']['output'];
186515
- };
186516
187249
  export declare type WorkSuggestionsCompassTask = {
186517
187250
  componentAri?: Maybe<Scalars['ID']['output']>;
186518
187251
  componentName?: Maybe<Scalars['String']['output']>;